]> git.ipfire.org Git - thirdparty/hostap.git/blob - tests/fuzzing/eap-sim-peer/Makefile
tests: New style fuzzing tool for EAP-SIM peer processing
[thirdparty/hostap.git] / tests / fuzzing / eap-sim-peer / Makefile
1 all: eap-sim-peer
2 include ../rules.include
3
4 CFLAGS += -DIEEE8021X_EAPOL
5 CFLAGS += -DCONFIG_SIM_SIMULATOR
6
7 OBJS += $(SRC)/eap_peer/eap_sim.o
8 OBJS += $(SRC)/eap_common/eap_sim_common.o
9 OBJS += $(SRC)/eap_common/eap_common.o
10 LIBS += $(SRC)/crypto/libcrypto.a
11 LIBS += $(SRC)/utils/libutils.a
12
13 eap-sim-peer: eap-sim-peer.o $(OBJS) $(LIBS)
14 $(Q)$(LDO) $(LDFLAGS) -o $@ $^ $(LIBS) $(ELIBS)
15 @$(E) " LD " $@
16
17 clean:
18 $(MAKE) -C $(SRC) clean
19 rm -f eap-sim-peer *~ *.o *.d ../*~ ../*.o ../*.d
20
21 -include $(OBJS:%.o=%.d)