7e97b9e4f6
Changes in Version 0.4 ---------------------- 1. First draft of a user manual (doc/ia64user.txt) 2. Systems calls to vprintf and program exit 3. Enhancements to single step and display register commands 4. Trace level command 5. Reset hazards command 6 Various bug fixes Changes in Version 0.5 ---------------------- Supports ELF files created by the Intel IA64 Assembler. Not all relocation types are yet supported.
26 lines
708 B
Makefile
26 lines
708 B
Makefile
# $NetBSD: Makefile,v 1.17 2008/08/04 08:04:30 obache Exp $
|
|
|
|
DISTNAME= ia64sim
|
|
PKGNAME= ia64sim-0.5
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://www.boo.net/~jasonp/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.boo.net/~jasonp/
|
|
COMMENT= IA64 simulator (Intel(R) Architecture 64)
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= gmake
|
|
DIST_SUBDIR= ${PKGNAME_NOREV}
|
|
WRKSRC= ${WRKDIR}/home/chuck/ia64simcc
|
|
|
|
MAKE_FILE= makefile.unx
|
|
INSTALLATION_DIRS= bin share/doc/ia64sim
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ia64sim ${DESTDIR}${PREFIX}/bin/ia64sim
|
|
${INSTALL_DATA} ${WRKSRC}/doc/ia64user.txt ${DESTDIR}${PREFIX}/share/doc/ia64sim
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|