diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-01-20 14:17:20 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-01-20 16:03:46 +0100 |
commit | f413a5d72c077d3bfa571c6757261ea191d1c694 (patch) | |
tree | e69bf7597febb4098cd06ae1cf5f698f3d33b5a5 /Makefile | |
parent | f62a96be23d7f24fd8d788aa857fc0206c36a6a5 (diff) | |
download | sds-f413a5d72c077d3bfa571c6757261ea191d1c694.tar.xz |
test: Bring testsuite up to date with yasl renamerename-yasl
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -6,11 +6,11 @@ SOURCES = test/twbctf.c src/yasl.c HEADERS = test/twbctf.h src/yasl.h MANPAGES = docs/sds.3 docs/sdsnew.3 docs/sdsfree.3 -all: sds-test $(MANPAGES) +all: yasl-test $(MANPAGES) -sds-test: $(SOURCES) $(HEADERS) test/test.c - @echo "==> Building sds-test" +yasl-test: $(SOURCES) $(HEADERS) test/test.c + @echo "==> Building yasl-test" $(CC) $(CFLAGS) -Isrc -o $@ $(SOURCES) docs/%.3: docs/%.rst @@ -18,13 +18,13 @@ docs/%.3: docs/%.rst sphinx-build -b man -E docs/ docs/ -test: sds-test +test: yasl-test @echo "==> Running test suite" - ./sds-test + ./yasl-test clean: - rm -f sds-test + rm -f yasl-test rm docs/*.3 |