Home | History | Annotate | Download | only in eap_peer
      1 all: libeap_peer.a
      2 
      3 clean:
      4 	rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov libeap_peer.a
      5 
      6 install:
      7 	if ls *.so >/dev/null 2>&1; then \
      8 		install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \
      9 		cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \
     10 	; fi
     11 
     12 include ../lib.rules
     13 
     14 CFLAGS += -DIEEE8021X_EAPOL
     15 
     16 LIB_OBJS= \
     17 	eap.o \
     18 	eap_methods.o
     19 
     20 libeap_peer.a: $(LIB_OBJS)
     21 	$(AR) crT $@ $?
     22 
     23 -include $(OBJS:%.o=%.d)
     24