mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-11 14:05:12 +00:00
14 lines
252 B
Makefile
14 lines
252 B
Makefile
|
# makefile for dummy wurfl library
|
||
|
# builds shared library
|
||
|
# installs it in /usr/lib/ with header file wurfl.h in /usr/include/wurfl
|
||
|
#
|
||
|
# install needs to be run as root
|
||
|
|
||
|
build: libwurfl.a
|
||
|
|
||
|
libwurfl.a: dummy-wurfl.o
|
||
|
ar rv $@ $<
|
||
|
|
||
|
clean:
|
||
|
rm -rf *.a *.o
|