blob: 03b980a8273ffdebd61610a8ad4ccaaaad29ed05 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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=$@
|