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

SOURCES = src/test.c src/sds.c
HEADERS = src/test.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