]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/utils/Makefile
Use thin archives to allow libraries to be merged
[thirdparty/hostap.git] / src / utils / Makefile
CommitLineData
6a230ba2 1all: libutils.a
6fc6879b
JM
2
3clean:
4 for d in $(SUBDIRS); do make -C $$d clean; done
6a230ba2 5 rm -f *~ *.o *.d libutils.a
d94d4baf
DM
6
7install:
8 @echo Nothing to be made.
6a230ba2
JM
9
10
631afd99 11include ../lib.rules
6a230ba2
JM
12
13LIB_OBJS= \
14 base64.o \
15 common.o \
16 ip_addr.o \
17 radiotap.o \
18 uuid.o \
19 wpa_debug.o \
20 wpabuf.o
21
22# Pick correct OS wrapper implementation
23LIB_OBJS += os_unix.o
24
25# Pick correct event loop implementation
26LIB_OBJS += eloop.o
27
28#LIB_OBJS += pcsc_funcs.o
29
30libutils.a: $(LIB_OBJS)
4bb1228e 31 $(AR) crT $@ $?
6a230ba2
JM
32
33-include $(OBJS:%.o=%.d)