blob: d5e61fe72dc8f4fc96d1610757fc5c0a9f21bf0b [file] [log] [blame]
Jouni Malinen46c3bef2015-04-18 11:31:11 +03001all: librsn_supp.a
Jouni Malinen6fc68792008-02-27 17:34:43 -08002
3clean:
Jouni Malinen46c3bef2015-04-18 11:31:11 +03004 rm -f *~ *.o *.d *.gcno *.gcda *.gcov librsn_supp.a
Daniel Mierswad94d4ba2009-02-15 14:22:50 +02005
6install:
7 @echo Nothing to be made.
Jouni Malinen46c3bef2015-04-18 11:31:11 +03008
9include ../lib.rules
10
11CFLAGS += -DCONFIG_IEEE80211W
12CFLAGS += -DCONFIG_IEEE80211R
13CFLAGS += -DCONFIG_PEERKEY
14CFLAGS += -DCONFIG_TDLS
15CFLAGS += -DCONFIG_WNM
16CFLAGS += -DIEEE8021X_EAPOL
17
18LIB_OBJS= \
19 pmksa_cache.o \
20 wpa_ft.o \
21 peerkey.o \
22 tdls.o \
23 preauth.o \
24 wpa.o \
25 wpa_ie.o
26
27librsn_supp.a: $(LIB_OBJS)
28 $(AR) crT $@ $?
29
30-include $(OBJS:%.o=%.d)