aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: ebaf366479541e7943479a33eef8ae22c64d32e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
CFLAGS += -O2 -std=c99 -ggdb -fPIE -pie -fstack-protector-all -Wl,-z,relro -Wl,-z,now
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
MANPAGES = docs/sds.3 docs/sdsnew.3 docs/sdsfree.3

all: sds-test $(MANPAGES)


sds-test: $(SOURCES) $(HEADERS) test/test.c
	@echo "==> Building sds-test"
	$(CC) $(CFLAGS) -Isrc -o $@ $(SOURCES)

docs/%.3: docs/%.rst
	@echo "==> Building manpages"
	sphinx-build -b man -E docs/ docs/


test: sds-test
	@echo "==> Running test suite"
	./sds-test


clean:
	rm -f sds-test
	rm docs/*.3


.PHONY: all test