]> git.ipfire.org Git - thirdparty/hostap.git/blob - src/common/Makefile
FT: Store XXKey/MPMK in PMKSA cache instead of MSK (authenticator)
[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_IEEE80211W
13 CFLAGS += -DCONFIG_HS20
14 CFLAGS += -DCONFIG_SAE
15 CFLAGS += -DCONFIG_SUITE
16 CFLAGS += -DCONFIG_SUITEB
17
18 LIB_OBJS= \
19 gas.o \
20 hw_features_common.o \
21 ieee802_11_common.o \
22 sae.o \
23 wpa_common.o
24
25 libcommon.a: $(LIB_OBJS)
26 $(AR) crT $@ $?
27
28 -include $(OBJS:%.o=%.d)