xref: /third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/Makefile (revision e5b75505)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/
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

Indexes created Thu Nov 07 10:32:03 CST 2024