Hai Shalom | 878cf7b | 2019-07-15 14:55:18 -0700 | [diff] [blame^] | 1 | all: eap-aka-peer |
| 2 | include ../rules.include |
| 3 | |
| 4 | CFLAGS += -DIEEE8021X_EAPOL |
| 5 | CFLAGS += -DCONFIG_USIM_SIMULATOR |
| 6 | |
| 7 | OBJS += $(SRC)/eap_peer/eap_aka.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-aka-peer: eap-aka-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-aka-peer *~ *.o *.d ../*~ ../*.o ../*.d |
| 20 | |
| 21 | -include $(OBJS:%.o=%.d) |