aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2014-12-06 19:59:34 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2014-12-06 19:59:34 +0100
commit52e9f0ae7bd719976381598623d1e6cf6dd337b3 (patch)
tree51f8bfce5d7a95a5d7022e3123572dd5e751c51d /Makefile
parent9406c019b27fe9a22509b70bc988694565921c6d (diff)
downloadsds-52e9f0ae7bd719976381598623d1e6cf6dd337b3.tar.xz
Makefile: Add test.c as sds-test prerequisite
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ce72ff9..b1b7bb1 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ HEADERS = src/twbctf.h src/sds.c
all: sds-test
-sds-test: $(SOURCES) $(HEADERS)
+sds-test: $(SOURCES) $(HEADERS) src/test.c
$(CC) $(CFLAGS) -o $@ $(SOURCES)
@echo ">>> Type ./sds-test to run the sds.c unit tests."