mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-02 08:42:48 +00:00
70bd6b310d
Approved by: marcel (mentor)
15 lines
282 B
Makefile
15 lines
282 B
Makefile
# $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=$@
|
|
|
|
|