summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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.??????
-