1ALL=eap-sim-peer 2include ../rules.include 3 4CFLAGS += -DIEEE8021X_EAPOL 5CFLAGS += -DCONFIG_SIM_SIMULATOR 6 7OBJS += $(SRC)/eap_peer/eap_sim.o 8OBJS += $(SRC)/eap_common/eap_sim_common.o 9OBJS += $(SRC)/eap_common/eap_common.o 10LIBS += $(SRC)/crypto/libcrypto.a 11LIBS += $(SRC)/utils/libutils.a 12 13OBJS += eap-sim-peer.o 14 15_OBJS_VAR := OBJS 16include ../../../src/objs.mk 17 18_OBJS_VAR := LIBS 19include ../../../src/objs.mk 20 21eap-sim-peer: $(OBJS) $(LIBS) 22 $(Q)$(LDO) $(LDFLAGS) -o $@ $^ $(LIBS) $(ELIBS) 23 @$(E) " LD " $@ 24 25clean: common-clean 26 rm -f eap-sim-peer *~ *.o *.d ../*~ ../*.o ../*.d 27