mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-12 06:24:56 +00:00
5c196f0d8d
- Reflecing the changes done in addons/deviceatlas/Makefile.inc. Enabling the cache feature and its disabling option as well. - Now the `dadwsch` application is part of the API's package for more general purposes, we remove it. - Minor and transparent to user changes into da.c's workflow, also making more noticeable some notices with appropriate logging levels. - Adding support for the new `deviceatlas-cache-size` config keyword, a no-op when the cache support is disabled. - Adding missing compilation units and relevant api updates to the dummy library version.
13 lines
263 B
Makefile
13 lines
263 B
Makefile
# makefile for dummy DeviceAtlas library
|
|
#
|
|
# To enable the DeviceAtlas module support, the following are needed
|
|
# make TARGET=<target> DEVICEATLAS_SRC=addons/deviceatlas/dummy USE_DEVICEATLAS=1
|
|
|
|
build: libda.a
|
|
|
|
libda.a: dac.o
|
|
ar rv $@ $<
|
|
|
|
clean:
|
|
rm -rf *.a *.o
|