summaryrefslogtreecommitdiff
path: root/lib/radius/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'lib/radius/tests/Makefile')
-rw-r--r--lib/radius/tests/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/radius/tests/Makefile b/lib/radius/tests/Makefile
deleted file mode 100644
index b9d74ad..0000000
--- a/lib/radius/tests/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-#
-# GNU Makefile
-#
-.PHONY: all clean
-all: radattr
-
-HEADERS := ../client.h ../radius.h
-CFLAGS := -g
-
-%.o : %.c
- $(CC) $(CFLAGS) -I.. -I. -c $<
-
-%.o: ${HEADERS}
-
-LIBS := -lcrypto -lssl
-LDFLAGS = -L.. -lnetworkradius-client
-
-../libnetworkradius-client.a:
- @${MAKE} -C .. libnetworkradius-client.a
-
-radattr: radattr.o ../libnetworkradius-client.a
- ${CC} ${LFDLAGS} ${LIBS} -o $@ $^
-
-clean:
- @rm -rf *.o *.a *~