Updated through tag hostap_2_5 from git://w1.fi/hostap.git
[mech_eap.git] / libeap / src / eap_server / Makefile
1 all: libeap_server.a
2
3 clean:
4         rm -f *~ *.o *.d *.gcno *.gcda *.gcov libeap_server.a
5
6 install:
7         @echo Nothing to be made.
8
9 include ../lib.rules
10
11 CFLAGS += -DCONFIG_HS20
12
13 LIB_OBJS= \
14         eap_server.o \
15         eap_server_identity.o \
16         eap_server_methods.o
17
18 libeap_server.a: $(LIB_OBJS)
19         $(AR) crT $@ $?
20
21 -include $(OBJS:%.o=%.d)