aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/Makefile')
-rw-r--r--src/pkg/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile
index 4171c2fd65..dd0dd9cd6c 100644
--- a/src/pkg/Makefile
+++ b/src/pkg/Makefile
@@ -230,16 +230,19 @@ bench.dirs: $(addsuffix .bench, $(BENCH))
+$(MAKE) -C $* clean
%.install:
- +$(MAKE) -C $* install
+ +@echo install $*
+ +@$(MAKE) -C $* install >$*/build.out 2>&1 || (echo INSTALL FAIL $*; cat $*/build.out)
%.nuke:
+$(MAKE) -C $* nuke
%.test:
- +$(MAKE) -C $* test
+ +@echo test $*
+ +@$(MAKE) -C $* test >$*/test.out 2>&1 || (echo TEST FAIL $*; cat $*/test.out; exit 1)
%.testshort:
- +$(MAKE) -C $* testshort
+ +@echo test $*
+ +@$(MAKE) -C $* testshort >$*/test.out 2>&1 || (echo TEST FAIL $*; cat $*/test.out; exit 1)
%.bench:
+$(MAKE) -C $* bench