]> git.ipfire.org Git - thirdparty/hostap.git/blob - tests/fuzzing/eapol-key-supp/Makefile
tests: New style fuzzing tools for EAPOL-Key frame processing
[thirdparty/hostap.git] / tests / fuzzing / eapol-key-supp / Makefile
1 all: eapol-key-supp
2 include ../rules.include
3
4 CFLAGS += -DCONFIG_IEEE80211R_AP
5 CFLAGS += -DCONFIG_IEEE80211W
6 CFLAGS += -DCONFIG_IEEE80211R
7 CFLAGS += -DCONFIG_TDLS
8
9 LIBS += $(SRC)/common/libcommon.a
10 LIBS += $(SRC)/crypto/libcrypto.a
11 LIBS += $(SRC)/tls/libtls.a
12 LIBS += $(SRC)/rsn_supp/librsn_supp.a
13 LIBS += $(SRC)/eapol_supp/libeapol_supp.a
14 LIBS += $(SRC)/eap_peer/libeap_peer.a
15 LIBS += $(SRC)/eap_common/libeap_common.a
16 LIBS += $(SRC)/l2_packet/libl2_packet.a
17 LIBS += $(SRC)/utils/libutils.a
18
19 eapol-key-supp: eapol-key-supp.o $(OBJS) $(LIBS)
20 $(LDO) $(LDFLAGS) -o $@ $^ -Wl,--start-group $(LIBS) -Wl,--end-group
21
22 clean:
23 $(MAKE) -C $(SRC) clean
24 rm -f eapol-key-supp *~ *.o *.d ../*~ ../*.o ../*.d
25
26 -include $(OBJS:%.o=%.d)