mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-09 13:05:01 +00:00
0470d704a7
Creating a "mocked" version mainly for testing purposes.
13 lines
271 B
Makefile
13 lines
271 B
Makefile
# makefile for dummy DeviceAtlas library
|
|
#
|
|
# To enable the DeviceAtlas module support, the following are needed
|
|
# make TARGET=<target> DEVICEATLAS_SRC=./contrib/deviceatlas USE_PCRE=1 USE_DEVICEATLAS=1
|
|
|
|
build: libda.a
|
|
|
|
libda.a: dac.o
|
|
ar rv $@ $<
|
|
|
|
clean:
|
|
rm -rf *.a *.o
|