mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-14 15:34:35 +00:00
57610c694e
Both the source file and the dummy library are now at the same place. Maybe the build howto could be moved there as well to make things even cleaner. The Makefile, MAINTAINERS, doc, and vtest matrix were updated.
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
|