aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 7e5f5b6327217a67a157a822e3fb9aab72bdd484 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS = -Weverything -std=c11 -g
CC = clang

SOURCES = src/twbctf.c src/sds.c
HEADERS = src/twbctf.h src/sds.c
all: sds-test

sds-test: $(SOURCES) $(HEADERS)
	$(CC) $(CFLAGS) -o $@ $(SOURCES)
	@echo ">>> Type ./sds-test to run the sds.c unit tests."

clean:
	rm -f sds-test