diff options
author | matthias <matthias@pkgsrc.org> | 1998-08-31 09:18:02 +0000 |
---|---|---|
committer | matthias <matthias@pkgsrc.org> | 1998-08-31 09:18:02 +0000 |
commit | 8adbc66d44ca4ffe2d49bd52e892db4eca767278 (patch) | |
tree | 4a3b07d7b2a15ebfb4dc965ba03c3b31553d815f /games/nethack-qt | |
parent | b09ffd4a79b68c36fa9918f20feae2c946e9e160 (diff) | |
download | pkgsrc-8adbc66d44ca4ffe2d49bd52e892db4eca767278.tar.gz |
Honor OBJMACHINE.
Diffstat (limited to 'games/nethack-qt')
-rw-r--r-- | games/nethack-qt/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/nethack-qt/Makefile b/games/nethack-qt/Makefile index 86f811b74c3..58e6463ed9c 100644 --- a/games/nethack-qt/Makefile +++ b/games/nethack-qt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 1998/08/27 13:38:47 garbled Exp $ +# $NetBSD: Makefile,v 1.2 1998/08/31 09:18:02 matthias Exp $ # DISTNAME= qnethack-3.2.2.1.0.1.src @@ -14,13 +14,13 @@ DEPENDS+= xpm-3.4k:../../graphics/xpm DEPENDS+= qt-1.40:../../x11/qt USE_GMAKE= yes -WRKSRC= ../nethack-lib/work/nethack-3.2.2 +WRKSRC= ../nethack-lib/${WRKDIR_BASENAME}/nethack-3.2.2 ALL_TARGET= nethack tiles.xpm INSTALL_TARGET= binfiles MAKE_ENV+= GTYPE=-qt QTDIR=${X11BASE} do-extract: - -@mkdir work + -@mkdir ${WRKDIR_BASENAME} (cd ../nethack-lib && make clean) (cd ../nethack-lib && make patch) (cd ${WRKSRC}/sys/unix && sh ./setup.sh) @@ -35,6 +35,6 @@ post-install: ${INSTALL} -c -o bin -g games -m 0644 ${WRKSRC}/dat/tiles.xpm ${LOCALBASE}/share/nethackdir do-clean: - -@rm -r work + -@rm -r ${WRKDIR_BASENAME} .include "../../mk/bsd.pkg.mk" |