blob: 0e877387de28fd4f1a4e7881f8033d263ca1e0ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# 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
|