]> git.ipfire.org Git - thirdparty/hostap.git/blob - tests/fuzzing/eapol-key-auth/Makefile
tests: New style fuzzing tools for EAPOL-Key frame processing
[thirdparty/hostap.git] / tests / fuzzing / eapol-key-auth / Makefile
1 all: eapol-key-auth
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)/eap_common/libeap_common.a
13 LIBS += $(SRC)/l2_packet/libl2_packet.a
14 LIBS += $(SRC)/utils/libutils.a
15 LIBS += $(SRC)/wps/libwps.a
16 LIBS += $(SRC)/eapol_auth/libeapol_auth.a
17 LIBS += $(SRC)/eap_server/libeap_server.a
18 LIBS += $(SRC)/ap/libap.a
19 LIBS += $(SRC)/radius/libradius.a
20
21 eapol-key-auth: eapol-key-auth.o $(OBJS) $(LIBS)
22 $(LDO) $(LDFLAGS) -o $@ $^ -Wl,--start-group $(LIBS) -Wl,--end-group
23
24 clean:
25 $(MAKE) -C $(SRC) clean
26 rm -f eapol-key-auth *~ *.o *.d ../*~ ../*.o ../*.d
27
28 -include $(OBJS:%.o=%.d)