blob: e0eeb08e16613e035a91681863a6d3d29b3de492 (
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
25
26
27
|
# $NetBSD: Makefile,v 1.3 2003/07/17 21:35:40 grant Exp $
#
DISTNAME= p11-2.10a
CATEGORIES= emulators
MASTER_SITES= ftp://ftp.fokus.gmd.de/pub/cats/usr/harti/p11/
MAINTAINER= tech-pkg@NetBSD.org
#HOMEPAGE=
COMMENT= PDP11 emulator
DEPENDS+= libbegemot-[0-9]*:../../devel/libbegemot
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-begemot=${PREFIX}
USE_LIBTOOL= yes
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
USE_GMAKE= yes
# override MAKEFLAGS in the build and install stages
do-build:
cd ${WRKSRC} && ${GMAKE} ${ALL_TARGET} MAKEFLAGS=
do-install:
cd ${WRKSRC} && ${GMAKE} ${INSTALL_TARGET} MAKEFLAGS=
.include "../../mk/bsd.pkg.mk"
|