summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index efc532a23..707f3cda3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,11 @@
.PHONY: default
-default:
+default: all
+%:
@if test -e builds; then \
echo cd builds; \
cd builds; \
- echo $(MAKE); \
- $(MAKE); \
+ echo $(MAKE) $@; \
+ $(MAKE) $@; \
else \
echo; \
echo 'Run configure first, or type "make" in a configured build directory.'; \
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback