diff options
author | antirez <antirez@gmail.com> | 2014-02-02 17:53:21 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-02-02 17:53:32 +0100 |
commit | 69eabee996856d5cf0c83b07b93d02bc98ac84f1 (patch) | |
tree | bc2f83406e68ca5b81e99ab5d739abc10621626a | |
parent | 1cf01f7f6b40c536b45ecd0f5741357fbed2a8d3 (diff) | |
download | sds-69eabee996856d5cf0c83b07b93d02bc98ac84f1.tar.xz |
.gitignore file added.
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a521197 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +sds-test 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 |