aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-02-02 17:53:21 +0100
committerantirez <antirez@gmail.com>2014-02-02 17:53:32 +0100
commit69eabee996856d5cf0c83b07b93d02bc98ac84f1 (patch)
treebc2f83406e68ca5b81e99ab5d739abc10621626a /Makefile
parent1cf01f7f6b40c536b45ecd0f5741357fbed2a8d3 (diff)
downloadsds-69eabee996856d5cf0c83b07b93d02bc98ac84f1.tar.xz
.gitignore file added.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..045fa88
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,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