1all: libeap_peer.a
2
3clean:
4	rm -f *~ *.o *.so *.d *.gcno *.gcda *.gcov libeap_peer.a
5
6install:
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
12include ../lib.rules
13
14CFLAGS += -DIEEE8021X_EAPOL
15
16LIB_OBJS= \
17	eap.o \
18	eap_methods.o
19
20libeap_peer.a: $(LIB_OBJS)
21	$(AR) crT $@ $?
22
23-include $(OBJS:%.o=%.d)
24