]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/utils/Makefile
edit: Add string completion support on tab
[thirdparty/hostap.git] / src / utils / Makefile
CommitLineData
6a230ba2 1all: libutils.a
6fc6879b
JM
2
3clean:
6a230ba2 4 rm -f *~ *.o *.d 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
930f704a 14
6a230ba2
JM
15LIB_OBJS= \
16 base64.o \
17 common.o \
18 ip_addr.o \
19 radiotap.o \
930f704a 20 trace.o \
6a230ba2
JM
21 uuid.o \
22 wpa_debug.o \
23 wpabuf.o
24
25# Pick correct OS wrapper implementation
26LIB_OBJS += os_unix.o
27
28# Pick correct event loop implementation
29LIB_OBJS += eloop.o
30
31#LIB_OBJS += pcsc_funcs.o
32
33libutils.a: $(LIB_OBJS)
4bb1228e 34 $(AR) crT $@ $?
6a230ba2
JM
35
36-include $(OBJS:%.o=%.d)