]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/utils/Makefile
tests: HE AP parameters
[thirdparty/hostap.git] / src / utils / Makefile
CommitLineData
6a230ba2 1all: libutils.a
6fc6879b
JM
2
3clean:
7feff065 4 rm -f *~ *.o *.d *.gcno *.gcda *.gcov libutils.a
d94d4baf
DM
5
6install:
7 @echo Nothing to be made.
6a230ba2
JM
8
9
631afd99 10include ../lib.rules
6a230ba2 11
930f704a 12#CFLAGS += -DWPA_TRACE
1b9eb51b 13CFLAGS += -DCONFIG_IPV6
d33fef57 14CFLAGS += -DCONFIG_DEBUG_FILE
930f704a 15
6a230ba2
JM
16LIB_OBJS= \
17 base64.o \
bdb112d3 18 bitfield.o \
6a230ba2 19 common.o \
e2991ee5 20 crc32.o \
6a230ba2 21 ip_addr.o \
79fa1b45 22 json.o \
6a230ba2 23 radiotap.o \
930f704a 24 trace.o \
6a230ba2
JM
25 uuid.o \
26 wpa_debug.o \
27 wpabuf.o
28
29# Pick correct OS wrapper implementation
30LIB_OBJS += os_unix.o
31
32# Pick correct event loop implementation
33LIB_OBJS += eloop.o
34
ef49bb80
JM
35# Pick correct edit implementation
36LIB_OBJS += edit.o
37
6a230ba2
JM
38#LIB_OBJS += pcsc_funcs.o
39
40libutils.a: $(LIB_OBJS)
4bb1228e 41 $(AR) crT $@ $?
6a230ba2
JM
42
43-include $(OBJS:%.o=%.d)