diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-05-27 22:35:40 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-05-27 22:35:40 -0400 |
commit | c4e93e505bac457e1cbeac61c5106f7e412776ff (patch) | |
tree | ffe5b1ee379b39727f639179b7f2bd1daa3fa4b1 /Makefile | |
parent | c6769208d4c7c774982fbb76afad0d95a6e4c9e8 (diff) | |
download | bfs-c4e93e505bac457e1cbeac61c5106f7e412776ff.tar.xz |
Makefile: Make the all target really build all
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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: |