blob: 1d73240d390ede8de046de24685a8655650b08ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $Id: makefile.in,v 1.4 2020/05/24 21:10:17 nia 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=$@
|