b7a81af86c
Changes are - New manual and new SourceForge page. Other documentation deprecated. - Added project files for MS VC++, and fix warnings provoked by it. - Further split of windowing/non-windowing functionality to aid division of architecture-independent files. - Windows version made independent from Cygwin. - Windows support imported from eQRD version. Features brought inline with other versions, including icon change, and same format for choices file. - Entirety of build warnings fixed under GCC, including those that appeared from turning on harsh warning flags. - General tidying. - Makefile rearranged so that default Unix builds are more sensible. - Support for running RISC OS, by Alex Macfarlane Smith and Peter Naulls - Split of the windowing aspects of the code, to allow independent development. - Some small speed ups. - Source code tidying and warning fixes.
41 lines
1,005 B
Makefile
41 lines
1,005 B
Makefile
# $NetBSD: Makefile,v 1.8 2004/12/03 15:15:23 skrll Exp $
|
|
#
|
|
|
|
DISTNAME= arcem-1.00-src
|
|
PKGNAME= ${DISTNAME:S/-src//}
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=arcem/}
|
|
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
LINUX_FILES= \
|
|
linux.rom.gz \
|
|
HardImage1.gz
|
|
|
|
.for f in ${LINUX_FILES}
|
|
SITES_${f}+= \
|
|
ftp://ftp.arm.uk.linux.org/pub/linux/arcem/
|
|
.endfor
|
|
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${LINUX_FILES}
|
|
|
|
MAINTAINER= cjep@NetBSD.org
|
|
HOMEPAGE= http://arcem.sourceforge.net/
|
|
COMMENT= Dave Gilbert's Acorn Archimedes emulator
|
|
|
|
WRKSRC= ${WRKDIR}/arcem
|
|
USE_BUILDLINK3= # defined
|
|
USE_X11= # defined
|
|
USE_GNU_TOOLS+= make
|
|
|
|
MAKE_ENV+= SYSTEM=X
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/arcem
|
|
${INSTALL_DATA} ${WRKDIR}/linux.rom ${PREFIX}/share/arcem/ROM
|
|
${INSTALL_DATA} ${WRKDIR}/HardImage1 ${PREFIX}/share/arcem/HardImage1
|
|
${INSTALL_DATA} ${FILESDIR}/dot.arcemrc \
|
|
${PREFIX}/share/arcem/dot.arcemrc
|
|
${INSTALL_DATA} ${WRKSRC}/hexcmos ${PREFIX}/share/arcem/hexcmos
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|