blob: bcec56ca4e225ab5598901d19126c8173a3dd3a6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
VPATH = .src/
all: sds-test
sds-test: sds.c sds.h testhelp.h
$(CC) -o sds-test $< -Wall -std=c99 -pedantic -O2 -DSDS_TEST_MAIN
@echo ">>> Type ./sds-test to run the sds.c unit tests."
clean:
rm -f sds-test
|