2015-04-18 10:31:11 +02:00
|
|
|
all: libeap_peer.a
|
2008-02-28 02:34:43 +01:00
|
|
|
|
|
|
|
clean:
|
2015-04-18 10:31:11 +02:00
|
|
|
rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov libeap_peer.a
|
2009-02-15 13:22:50 +01:00
|
|
|
|
|
|
|
install:
|
|
|
|
if ls *.so >/dev/null 2>&1; then \
|
|
|
|
install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \
|
|
|
|
cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \
|
|
|
|
; fi
|
2015-04-18 10:31:11 +02:00
|
|
|
|
|
|
|
include ../lib.rules
|
|
|
|
|
|
|
|
CFLAGS += -DIEEE8021X_EAPOL
|
|
|
|
|
|
|
|
LIB_OBJS= \
|
|
|
|
eap.o \
|
|
|
|
eap_methods.o
|
|
|
|
|
|
|
|
libeap_peer.a: $(LIB_OBJS)
|
|
|
|
$(AR) crT $@ $?
|
|
|
|
|
|
|
|
-include $(OBJS:%.o=%.d)
|