Home | History | Annotate | Download | only in eap_common
      1 all: libeap_common.a
      2 
      3 clean:
      4 	rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeap_common.a
      5 
      6 install:
      7 	@echo Nothing to be made.
      8 
      9 include ../lib.rules
     10 
     11 LIB_OBJS= \
     12 	chap.o \
     13 	eap_common.o \
     14 	eap_eke_common.o \
     15 	eap_eke_common.o \
     16 	eap_fast_common.o \
     17 	eap_gpsk_common.o \
     18 	eap_ikev2_common.o \
     19 	eap_pax_common.o \
     20 	eap_peap_common.o \
     21 	eap_psk_common.o \
     22 	eap_pwd_common.o \
     23 	eap_sake_common.o \
     24 	eap_sim_common.o \
     25 	eap_wsc_common.o \
     26 	ikev2_common.o
     27 
     28 libeap_common.a: $(LIB_OBJS)
     29 	$(AR) crT $@ $?
     30 
     31 -include $(OBJS:%.o=%.d)
     32