Comment out CONFIG_IPV6 for now in RADIUS library build
[libeap.git] / src / radius / Makefile
1 all: libradius.a
2
3 clean:
4         for d in $(SUBDIRS); do make -C $$d clean; done
5         rm -f *~ *.o *.d libradius.a
6
7 install:
8         @echo Nothing to be made.
9
10
11 include ../lib.rules
12
13 #CFLAGS += -DCONFIG_IPV6
14
15 LIB_OBJS= \
16         radius.o \
17         radius_client.o \
18         radius_server.o
19
20 libradius.a: $(LIB_OBJS)
21         $(AR) crT $@ $?
22
23 -include $(OBJS:%.o=%.d)