]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/wpa/src/radius/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / wpa / 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)