summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-03-05 14:24:23 +0000
committerLars Wirzenius <liw@liw.fi>2011-03-05 14:24:23 +0000
commit0617291d3404651c5aab98ce235d9afa1aeb05e4 (patch)
tree2c2d269875e2da0f9d27f765ffc6754045ab85d8 /Makefile
parent04837675bebe233e654df42bd4d74cdc07daa486 (diff)
downloaddynstr-0617291d3404651c5aab98ce235d9afa1aeb05e4.tar.gz
Remove moved files.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index ecfdb87..0000000
--- a/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-CFLAGS = --std=c99 -Wall -Werror --coverage -g
-LDFLAGS = --coverage -g
-
-all: unittests
-
-dynstr.o unittests.o: dynstr.h
-
-unittests: unittests.o dynstr.o
-
-check: all
- valgrind --leak-check=full --quiet ./unittests
-
-clean:
- rm -f *.o *.a *.so *.gcov *.gcda *.gcno core unittests unittest.tmp.??????
-