diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-06 19:59:34 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-06 19:59:34 +0100 |
commit | 52e9f0ae7bd719976381598623d1e6cf6dd337b3 (patch) | |
tree | 51f8bfce5d7a95a5d7022e3123572dd5e751c51d /Makefile | |
parent | 9406c019b27fe9a22509b70bc988694565921c6d (diff) | |
download | sds-52e9f0ae7bd719976381598623d1e6cf6dd337b3.tar.xz |
Makefile: Add test.c as sds-test prerequisite
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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." |