aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 01e99250e3eb123396a0b644f4f84c7d0a422b26 (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/yasl.c
HEADERS = test/twbctf.h src/yasl.h
MANPAGES = docs/sds.3 docs/sdsnew.3 docs/sdsfree.3

all: yasl-test $(MANPAGES)


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

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


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


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


.PHONY: all test