d0da869a2b
(This conflicts with bcc and dev86. I use this to build lilo.) This is a simple assember, linker, and related tools for 80x86 machine code. This is based on the as86 and ld86 distribution written by Bruce Evans and was maintained by Robert de Bath.
26 lines
663 B
Makefile
26 lines
663 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2008/03/08 00:39:23 reed Exp $
|
|
|
|
DISTNAME= bin86-0.16.17
|
|
PKGREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://homepage.ntlworld.com/robert.debath/dev86/ \
|
|
http://www.debath.co.uk/dev86/bin86-0.16.17.tar.gz
|
|
|
|
MAINTAINER= reed@reedmedia.net
|
|
HOMEPAGE= http://www.debath.co.uk/
|
|
COMMENT= Simple assembler and linker for x86 machine code
|
|
|
|
CONFLICTS= bcc-[0-9]*
|
|
CONFLICTS+= dev86-[0-9]*
|
|
|
|
USE_TOOLS+= gmake
|
|
|
|
INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${GMAKE} PREFIX=${PREFIX:Q}
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${GMAKE} PREFIX=${PREFIX:Q} PKGMANDIR=${PKGMANDIR:Q} install
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|