blob: 3dcb7b6d6ce41556a9c29e414880ebcd22f81eea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: Makefile,v 1.10 2001/02/16 15:10:54 wiz Exp $
#
.include "../nethack-lib/Makefile.common"
PKGNAME= nethack-lib-${NETHACK_VERSION}
COMMENT= data files for Nethack
HAS_CONFIGURE= yes
CONFIGURE_SCRIPT= ./sys/unix/setup.sh
ALL_TARGET= datastuff
INSTALL_TARGET= manpages install-dat
DEINSTALL_FILE= ${WRKDIR}/DEINSTALL
.if ${OPSYS} == "SunOS"
MAKE_FLAGS+= CC=gcc CPPFLAGS=
.endif
post-build:
${SED} -e 's|@PREFIX@|${PREFIX}|' ${PKGDIR}/DEINSTALL > ${DEINSTALL_FILE}
.include "../../mk/bsd.pkg.mk"
|