]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/utils/Makefile
TLS: Fix X.509 certificate name conversion into empty string
[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
JM
21 ip_addr.o \
22 radiotap.o \
930f704a 23 trace.o \
6a230ba2
JM
24 uuid.o \
25 wpa_debug.o \
26 wpabuf.o
27
28# Pick correct OS wrapper implementation
29LIB_OBJS += os_unix.o
30
31# Pick correct event loop implementation
32LIB_OBJS += eloop.o
33
ef49bb80
JM
34# Pick correct edit implementation
35LIB_OBJS += edit.o
36
6a230ba2
JM
37#LIB_OBJS += pcsc_funcs.o
38
39libutils.a: $(LIB_OBJS)
4bb1228e 40 $(AR) crT $@ $?
6a230ba2
JM
41
42-include $(OBJS:%.o=%.d)