aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2015-01-20 16:10:28 +0100
committerJohannes Löthberg <johannes@kyriasis.com>2015-01-20 16:10:28 +0100
commit3e840a66ade625c6f2576edd65f59ae1b7e595d3 (patch)
treee69bf7597febb4098cd06ae1cf5f698f3d33b5a5 /Makefile
parent1017ce0a91b8c66d36c9b65b0a1a0011342fa958 (diff)
parentf413a5d72c077d3bfa571c6757261ea191d1c694 (diff)
downloadsds-3e840a66ade625c6f2576edd65f59ae1b7e595d3.tar.xz
Merge branch 'rename-yasl'
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index ebaf366..01e9925 100644
--- a/Makefile
+++ b/Makefile
@@ -2,15 +2,15 @@ CFLAGS += -O2 -std=c99 -ggdb -fPIE -pie -fstack-protector-all -Wl,-z,relro -Wl,-
CFLAGS += -Weverything -Wno-disabled-macro-expansion -Wno-vla -Wno-cast-align
CC = clang
-SOURCES = test/twbctf.c src/sds.c
-HEADERS = test/twbctf.h src/sds.h
+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