]> git.ipfire.org Git - thirdparty/hostap.git/blame - src/common/Makefile
Share common SAE and EAP-pwd functionality: own scalar generation
[thirdparty/hostap.git] / src / common / Makefile
CommitLineData
a65d7495 1all: libcommon.a
6fc6879b
JM
2
3clean:
a65d7495 4 rm -f *~ *.o *.d *.gcno *.gcda *.gcov libcommon.a
d94d4baf
DM
5
6install:
7 @echo Nothing to be made.
a65d7495
JM
8
9include ../lib.rules
10
11CFLAGS += -DCONFIG_IEEE80211R
12CFLAGS += -DCONFIG_IEEE80211W
13CFLAGS += -DCONFIG_HS20
14CFLAGS += -DCONFIG_SAE
15CFLAGS += -DCONFIG_SUITE
16CFLAGS += -DCONFIG_SUITEB
17
18LIB_OBJS= \
19 gas.o \
20 hw_features_common.o \
21 ieee802_11_common.o \
22 sae.o \
23 wpa_common.o
24
25libcommon.a: $(LIB_OBJS)
26 $(AR) crT $@ $?
27
28-include $(OBJS:%.o=%.d)