27 lines
604 B
Makefile
27 lines
604 B
Makefile
|
# $NetBSD: Makefile,v 1.1.1.1 2001/02/03 05:26:03 hubertf Exp $
|
||
|
#
|
||
|
|
||
|
.include "../libtool/Makefile.common"
|
||
|
|
||
|
PKGNAME= ${DISTNAME:C/-/-base-/}${PKGREV}
|
||
|
|
||
|
test: build
|
||
|
cd ${WRKSRC} && ${MAKE} check
|
||
|
|
||
|
.include "../../mk/bsd.prefs.mk"
|
||
|
|
||
|
.if ${MACHINE_PLATFORM:MNetBSD-1.4-sparc} != "" || \
|
||
|
${MACHINE_PLATFORM:MNetBSD-1.4.[12]-sparc} != ""
|
||
|
DEPENDS+= c++rt0>=1.0:../../sysutils/c++rt0
|
||
|
.endif
|
||
|
|
||
|
.if ${OPSYS} == "NetBSD"
|
||
|
.if !exists(/usr/libexec/ld.so) && !exists(/usr/libexec/ld.elf_so)
|
||
|
CONFIGURE_ARGS= --disable-shared
|
||
|
.endif
|
||
|
.else
|
||
|
CONFIGURE_ARGS= --enable-ltdl-install
|
||
|
.endif
|
||
|
|
||
|
.include "../../mk/bsd.pkg.mk"
|