David Carlier | 0470d70 | 2019-04-26 12:02:28 +0000 | [diff] [blame] | 1 | # makefile for dummy DeviceAtlas library |
2 | # | ||||
3 | # To enable the DeviceAtlas module support, the following are needed | ||||
Willy Tarreau | f8d9ec5 | 2021-04-02 16:19:39 +0200 | [diff] [blame] | 4 | # make TARGET=<target> DEVICEATLAS_SRC=addons/deviceatlas/dummy USE_PCRE=1 USE_DEVICEATLAS=1 |
David Carlier | 0470d70 | 2019-04-26 12:02:28 +0000 | [diff] [blame] | 5 | |
6 | build: libda.a | ||||
7 | |||||
8 | libda.a: dac.o | ||||
9 | ar rv $@ $< | ||||
10 | |||||
11 | clean: | ||||
12 | rm -rf *.a *.o |