pkgsrc/cross/i386-msdosdjgpp/Makefile

61 lines
1.8 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.19 2004/07/09 20:48:16 kristerw Exp $
#
DISTVERSION= 2.02.0
PKGREVISION= 1
DISTFILES= ${DJGPP_FILES}
EXTRACT_ONLY= # none of the djgpp files
MASTER_SITES= ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2/old/ \
1998-08-26 21:35:37 +02:00
ftp://ftp.simtel.net/pub/simtelnet/gnu/djgpp/v2misc/
2003-07-17 23:21:03 +02:00
MAINTAINER= tech-pkg@NetBSD.org
1998-08-26 16:20:26 +02:00
HOMEPAGE= http://www.delorie.com/djgpp/
COMMENT= Cross-compile environment for MS-DOS on 386 and higher
BUILD_DEPENDS= unzip-[0-9]*:../../archivers/unzip
WRKSRC= ${WRKDIR}/djgpp
USE_CROSS_BINUTILS= yes
BINUTILS_GNUTARGET= coff-go32
BINUTILS_LDEMULATION= i386go32
USE_CROSS_EGCS= yes
# Scripts in the build need to have a $CPP defined that works with the built
# compiler
NO_EXPORT_CPP= yes
DJGPP_FILES= djcrx202.zip wmemu2b.zip
TARGET_ARCH= i386-msdosdjgpp
CROSS_SYS_INCLUDE= ${WRKSRC}/include
SYS_LIB= ${WRKSRC}/lib
post-extract:
@${MKDIR} ${WRKSRC}
@cd ${WRKSRC}; \
for file in ${DJGPP_FILES}; do \
unzip -Loq ${_DISTDIR}/$$file; \
done; \
for file in `${FIND} include -type f -print`; do \
${CAT} $$file | col >$$file.new; \
${MV} -f $$file.new $$file; \
done
@${LN} -f ${SYS_LIB}/crt0.o ${EGCS_WRKSRC}/gcc/
@${RM} -f ${SYS_LIB}/djgpp.djl ${SYS_LIB}/specs
post-patch:
@${RM} -f ${CROSS_SYS_INCLUDE}/sys/*.orig
do-build:
cd ${WRKSRC}/src/stub && ${LINK.c} -o stubedit stubedit.c
cd ${WRKSRC}/src/stub && ${LINK.c} -o stubify stubify.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/stub/stubedit ${TARGET_DIR}/bin/
${LN} -f ${TARGET_DIR}/bin/stubedit ${PREFIX}/bin/${TARGET_ARCH}-stubedit
${INSTALL_PROGRAM} ${WRKSRC}/src/stub/stubify ${TARGET_DIR}/bin/
${LN} -f ${TARGET_DIR}/bin/stubedit ${PREFIX}/bin/${TARGET_ARCH}-stubify
${INSTALL_DATA} ${WRKSRC}/bin/wmemu387.dxe ${TARGET_DIR}/lib/
.include "../COMMON/cross.mk"