From c4e93e505bac457e1cbeac61c5106f7e412776ff Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 27 May 2019 22:35:40 -0400 Subject: Makefile: Make the all target really build all --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ed7be9e..73ca0a1 100644 --- a/Makefile +++ b/Makefile @@ -64,7 +64,9 @@ ALL_CFLAGS = $(ALL_CPPFLAGS) $(LOCAL_CFLAGS) $(CFLAGS) $(DEPFLAGS) ALL_LDFLAGS = $(ALL_CFLAGS) $(LOCAL_LDFLAGS) $(LDFLAGS) ALL_LDLIBS = $(LOCAL_LDLIBS) $(LDLIBS) -all: bfs +default: bfs + +all: bfs tests/mksock bfs: \ bftw.o \ @@ -95,7 +97,7 @@ tests/mksock: tests/mksock.o %.o: %.c $(CC) $(ALL_CFLAGS) -c $< -o $@ -check: all tests/mksock +check: all ./tests.sh distcheck: -- cgit v1.2.3