summaryrefslogtreecommitdiff
path: root/emulators/pcemu/scripts/configure
blob: 552da9e471b73e87c0afc87c326f5e44a4f1d236 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

# Author:		Jörg Wunsch <joerg@FreeBSD.org>
# Date of creation:	Mar 27, 1995
#

cd ${WRKSRC}
mkdir ${WRKSRC}/bootstrap
sh < ${FILESDIR}/bootstrap.shar

# create a Makefile.inc to pass the local prefix down to
# the build stage:

cat > ${WRKSRC}/Makefile.inc <<*EOF*
#
# Makefile.inc
#
# This file has been created by the "configure" script; DO NOT EDIT.
#
# Edit the port's Makefile \${PREFIX} variable should you wish to
# override this, and reconfigure.
#

LOCALPREFIX = ${PREFIX}
*EOF*