Makefile 396 B

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