]> git.ipfire.org Git - thirdparty/hostap.git/blob - src/common/Makefile
Add attribute for dwell time in QCA vendor scan
[thirdparty/hostap.git] / src / common / Makefile
1 all: libcommon.a
2
3 clean:
4 rm -f *~ *.o *.d *.gcno *.gcda *.gcov libcommon.a
5
6 install:
7 @echo Nothing to be made.
8
9 include ../lib.rules
10
11 CFLAGS += -DCONFIG_IEEE80211R
12 CFLAGS += -DCONFIG_HS20
13 CFLAGS += -DCONFIG_SAE
14 CFLAGS += -DCONFIG_SUITE
15 CFLAGS += -DCONFIG_SUITEB
16
17 LIB_OBJS= \
18 gas.o \
19 hw_features_common.o \
20 ieee802_11_common.o \
21 sae.o \
22 wpa_common.o
23
24 libcommon.a: $(LIB_OBJS)
25 $(AR) crT $@ $?
26
27 -include $(OBJS:%.o=%.d)