Updated through tag hostap_2_5 from git://w1.fi/hostap.git
[mech_eap.git] / libeap / src / p2p / Makefile
1 all: libp2p.a
2
3 clean:
4         rm -f *~ *.o *.d *.gcno *.gcda *.gcov libp2p.a
5
6 install:
7         @echo Nothing to be made.
8
9 include ../lib.rules
10
11 CFLAGS += -DCONFIG_WIFI_DISPLAY
12 CFLAGS += -DCONFIG_WPS_NFC
13
14 LIB_OBJS= \
15         p2p_build.o \
16         p2p.o \
17         p2p_dev_disc.o \
18         p2p_go_neg.o \
19         p2p_group.o \
20         p2p_invitation.o \
21         p2p_parse.o \
22         p2p_pd.o \
23         p2p_sd.o \
24         p2p_utils.o
25
26 libp2p.a: $(LIB_OBJS)
27         $(AR) crT $@ $?
28
29 -include $(OBJS:%.o=%.d)