diff options
author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2013-04-01 14:07:52 +0000 |
---|---|---|
committer | <> | 2013-05-17 14:06:43 +0000 |
commit | 986bc2ac05bc4c08c6a0ed30c9e97674932ccfeb (patch) | |
tree | 8346daf16e98e93415195acbf99f09cb5326b73b /makefile.in | |
download | bmake-tarball-986bc2ac05bc4c08c6a0ed30c9e97674932ccfeb.tar.gz |
Diffstat (limited to 'makefile.in')
-rw-r--r-- | makefile.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/makefile.in b/makefile.in new file mode 100644 index 0000000..03b980a --- /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=$@ + + |