diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-04-16 00:11:50 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-04-16 00:11:50 +0000 |
commit | a0ee707a4a06f04df4a430adb80c612e18ff83d3 (patch) | |
tree | fd02474e7f7e221ff68a2968eea65404c889a335 /devel/tpasm/Makefile | |
parent | 204aad3edcb58871c929ec5b5a2ffc7b5cbc8319 (diff) | |
download | pkgsrc-a0ee707a4a06f04df4a430adb80c612e18ff83d3.tar.gz |
update to tpasm-1.0r
Changes are (note our patch got included in < 1 day!):
Fixed ldx offset by y instruction in 6502 processor
(Thanks Andrew)
Makefile was updated so that .o files always end up in
their respective directories (Thanks Dan)
Makefile was updated to use patterns for locating processors and
output file formats. This allows processors and output file formats to
be added to the assembler simply by placing their source files into
their respective directories. Everything else is automatic.
Diffstat (limited to 'devel/tpasm/Makefile')
-rw-r--r-- | devel/tpasm/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/devel/tpasm/Makefile b/devel/tpasm/Makefile index 8cede09f5e9..aa54658ff31 100644 --- a/devel/tpasm/Makefile +++ b/devel/tpasm/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/04/15 13:02:35 dmcmahill Exp $ +# $NetBSD: Makefile,v 1.2 2001/04/16 00:11:50 dmcmahill Exp $ # -DISTNAME= tpasm1.0q -PKGNAME= tpasm-1.0q +DISTNAME= tpasm1.0r +PKGNAME= tpasm-1.0r CATEGORIES= devel MASTER_SITES= ftp://ftp.ct0.com/pub/ EXTRACT_SUFX= .tgz @@ -13,4 +13,11 @@ COMMENT= assembler for 6805, 68HC11, 6502, Surplus, 8051, Z80, PIC, and AVR WRKSRC= ${WRKDIR}/tpasm +USE_GMAKE= yes + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/tpasm ${PREFIX}/bin + ${INSTALL_DATA_DIR} ${PREFIX}/libdata/tpasm + ${INSTALL_DATA} ${WRKSRC}/include/* ${PREFIX}/libdata/tpasm/ + .include "../../mk/bsd.pkg.mk" |