summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2009-12-03 19:43:54 +0000
committerMorgan Deters <mdeters@gmail.com>2009-12-03 19:43:54 +0000
commit6dc57783d39ccc967e1e784d4cd50a8fd820c60c (patch)
treef13d91976e18f07f3c89b250ac17bba73c90c52e /Makefile
parent7fb54afe126e5045fc6c5553c1aff3c3f73509aa (diff)
first attempt at new build system
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 000000000..efc532a23
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+.PHONY: default
+default:
+ @if test -e builds; then \
+ echo cd builds; \
+ cd builds; \
+ echo $(MAKE); \
+ $(MAKE); \
+ else \
+ echo; \
+ echo 'Run configure first, or type "make" in a configured build directory.'; \
+ echo; \
+ fi
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback