aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5387d1f..b4f457c 100644
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,14 @@
SRCS = $(wildcard test/*.c)
TESTS = $(SRCS:.c=)
+.PHONY: all
+
all: tests
tests: $(TESTS)
%: %.c
- $(CC) -I. $< -o $@
+ $(CC) -I. $< -o $@ -ggdb
clean:
rm -rf $(TESTS)