automake build system
[mech_eap.orig] / src / radius / Makefile
1 all: libradius.a
2
3 clean:
4         rm -f *~ *.o *.d libradius.a
5
6 install:
7         @echo Nothing to be made.
8
9
10 include ../lib.rules
11
12 CFLAGS += -DCONFIG_IPV6
13
14 LIB_OBJS= \
15         radius.o \
16         radius_client.o \
17         radius_server.o
18
19 libradius.a: $(LIB_OBJS)
20         $(AR) crT $@ $?
21
22 -include $(OBJS:%.o=%.d)