blob: 0a16cb8dc4e458756832fb7348abbf16ea371d40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: Makefile,v 1.8 2005/05/22 20:07:58 jlam Exp $
#
DISTNAME= p11-2.10a
CATEGORIES= emulators
MASTER_SITES= ftp://ftp.fokus.gmd.de/pub/cats/usr/harti/p11/
MAINTAINER= tech-pkg@NetBSD.org
COMMENT= PDP11 emulator
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-begemot=${PREFIX}
USE_LIBTOOL= yes
USE_TOOLS+= gmake
# override MAKEFLAGS in the build and install stages
do-build:
cd ${WRKSRC} && ${GMAKE} ${BUILD_TARGET} MAKEFLAGS=
do-install:
cd ${WRKSRC} && ${GMAKE} ${INSTALL_TARGET} MAKEFLAGS=
.include "../../devel/libbegemot/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|