diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |
