summaryrefslogtreecommitdiffstats
path: root/dhcpcd/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpcd/test/Makefile')
-rw-r--r--dhcpcd/test/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/dhcpcd/test/Makefile b/dhcpcd/test/Makefile
new file mode 100644
index 00000000..5f3881c8
--- /dev/null
+++ b/dhcpcd/test/Makefile
@@ -0,0 +1,33 @@
+include ../config.mk
+
+PROG= test
+SRCS= test.c
+SRCS+= test_hmac_md5.c hmac_md5.c ${MD5_SRC}
+
+CFLAGS?= -O2
+CSTD?= c99
+CFLAGS+= -std=${CSTD}
+
+CPPFLAGS+= -I../crypt
+
+.PATH: ../crypt
+
+VPATH= . ../crypt
+
+OBJS+= ${SRCS:.c=.o}
+
+.c.o:
+ ${CC} ${CFLAGS} ${CPPFLAGS} -c $< -o $@
+
+all: ${PROG}
+
+clean:
+ rm -f ${OBJS} ${PROG} ${PROG}.core ${CLEANFILES}
+
+.depend: ${SRCS} ${COMPAT_SRCS}
+ ${CC} ${CPPFLAGS} -MM ${SRCS} ${COMPAT_SRCS} > .depend
+
+depend: .depend
+
+${PROG}: ${DEPEND} ${OBJS}
+ ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LDADD}