summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCurtis McEnroe2018-09-14 20:37:43 -0400
committerCurtis McEnroe2018-09-14 20:37:43 -0400
commit235dbc64e3df4f1ee45d526fb6f31d9aea9b166e (patch)
tree71582e8955d4e14093ab570d738214b5a703778f /Makefile
parente4f7568477c3621707b366ea1a658a6c84ea66bd (diff)
Fail target when any test binary fails
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 95216f6..de9a3f5 100644
--- a/Makefile
+++ b/Makefile
@@ -38,7 +38,7 @@ chatte: $(OBJS)
$(OBJS): chat.h
test: $(TESTS)
- $(TESTS:%=./%;)
+ $(TESTS:%=./% &&) true
.SUFFIXES: .t