xref: /freebsd/contrib/bmake/makefile.in (revision cfe30d02adda7c3b5c76156ac52d50d8cab325d9)
1*3cbdda60SSimon J. Gerraty# $Id: makefile.in,v 1.1 2012/12/28 21:28:19 sjg Exp $
2*3cbdda60SSimon J. Gerraty
3*3cbdda60SSimon J. Gerraty# a simple makefile for those who don't like anything beyond:
4*3cbdda60SSimon J. Gerraty# ./configure; make; make install
5*3cbdda60SSimon J. Gerraty
6*3cbdda60SSimon J. Gerratyprefix= @prefix@
7*3cbdda60SSimon J. Gerratysrcdir= @srcdir@
8*3cbdda60SSimon J. Gerraty
9*3cbdda60SSimon J. Gerratyall: build
10*3cbdda60SSimon J. Gerraty
11*3cbdda60SSimon J. Gerratybuild clean install test:
12*3cbdda60SSimon J. Gerraty	${srcdir}/boot-strap --prefix=${prefix} -o . op=$@
13*3cbdda60SSimon J. Gerraty
14*3cbdda60SSimon J. Gerraty
15