From f2c9a7dbca9da36aa0cca8c4d0759e4d0406df91 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 15 Sep 2015 17:40:36 -0400 Subject: Add a basic test suite. --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f7a70f7..4ac5e6e 100644 --- a/Makefile +++ b/Makefile @@ -22,18 +22,23 @@ ALL_CPPFLAGS = $(LOCAL_CPPFLAGS) $(CPPFLAGS) ALL_CFLAGS = $(ALL_CPPFLAGS) $(LOCAL_CFLAGS) $(CFLAGS) $(DEPFLAGS) ALL_LDFLAGS = $(ALL_CFLAGS) $(LDFLAGS) +all: bfs + bfs: bfs.o bftw.o color.o $(CC) $(ALL_LDFLAGS) $^ -o $@ %.o: %.c $(CC) $(ALL_CFLAGS) -c $< -o $@ +check: all + ./tests.sh + clean: $(RM) bfs *.o *.d release: CFLAGS := -O2 -flto -Wall -DNDEBUG release: bfs -.PHONY: clean release +.PHONY: all check clean release -include $(wildcard *.d) -- cgit v1.2.3