diff options
author | FreeArtMan <=> | 2015-11-07 18:18:59 +0000 |
---|---|---|
committer | FreeArtMan <=> | 2015-11-07 18:18:59 +0000 |
commit | 3c89841f31cd7fc6cb35c129a9135c5e974a7649 (patch) | |
tree | 4f0eb8fd7a90c8f194b4f8580e8c4f512dfa13e2 /test/Makefile | |
parent | 9514d70e98fa7f8fa26f991586169b9da09e7ea6 (diff) | |
download | netbytes-3c89841f31cd7fc6cb35c129a9135c5e974a7649.tar.gz netbytes-3c89841f31cd7fc6cb35c129a9135c5e974a7649.zip |
example/test source
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 0000000..3fec11a --- /dev/null +++ b/test/Makefile @@ -0,0 +1,11 @@ +CC=gcc +CFLAGS=-I../ -lnetbytes -Wl,-rpath=../ -L../ +LDFLAGS= + +SOURCE=test_save test_multiple_write test_multiple_read test_add_elem +SOURCES=$(SOURCE:=.c) + +make: $(SOURCE) + +clean: + rm -f $(SOURCE)
\ No newline at end of file |