summaryrefslogtreecommitdiff
path: root/makefile.in
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2013-01-31 16:44:23 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2013-01-31 16:44:23 +0000
commit70bd6b310d1f226fcbc7a14b3550c55d9223648d (patch)
treecd8c62d639d54c7d3d9c6803debc5613a5ad27bc /makefile.in
parent7ab046e1f1b382bc125699b0c0d589273adcd420 (diff)
Diffstat (limited to 'makefile.in')
-rw-r--r--makefile.in14
1 files changed, 14 insertions, 0 deletions
diff --git a/makefile.in b/makefile.in
new file mode 100644
index 000000000000..03b980a8273f
--- /dev/null
+++ b/makefile.in
@@ -0,0 +1,14 @@
+# $Id: makefile.in,v 1.1 2012/12/28 21:28:19 sjg Exp $
+
+# a simple makefile for those who don't like anything beyond:
+# ./configure; make; make install
+
+prefix= @prefix@
+srcdir= @srcdir@
+
+all: build
+
+build clean install test:
+ ${srcdir}/boot-strap --prefix=${prefix} -o . op=$@
+
+