haproxy/addons/wurfl/dummy/Makefile
Willy Tarreau 57610c694e CONTRIB: move src/wurfl.c and contrib/wurfl to addons/wurfl
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.
2021-04-02 17:48:42 +02:00

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