summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2019-05-27 22:35:40 -0400
committerTavian Barnes <tavianator@tavianator.com>2019-05-27 22:35:40 -0400
commitc4e93e505bac457e1cbeac61c5106f7e412776ff (patch)
treeffe5b1ee379b39727f639179b7f2bd1daa3fa4b1
parentc6769208d4c7c774982fbb76afad0d95a6e4c9e8 (diff)
downloadbfs-c4e93e505bac457e1cbeac61c5106f7e412776ff.tar.xz
Makefile: Make the all target really build all
-rw-r--r--Makefile6
1 files 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: