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