summaryrefslogtreecommitdiff
path: root/editors/pico/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'editors/pico/Makefile')
-rw-r--r--editors/pico/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/editors/pico/Makefile b/editors/pico/Makefile
index 6b0271906d4..e3cca0b90d2 100644
--- a/editors/pico/Makefile
+++ b/editors/pico/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.17 1999/11/22 00:59:42 jwise Exp $
+# $NetBSD: Makefile,v 1.18 1999/12/02 17:01:05 bouyer Exp $
#
DISTNAME= pine4.21
@@ -12,7 +12,8 @@ HOMEPAGE= http://www.washington.edu/pine/
USE_LIBTOOL= yes
do-build:
- cd ${WRKSRC} && ./build neb CC="${LIBTOOL} ${CC}" PREFIX=${PREFIX}
+ cd ${WRKSRC} && ./build ${BUILDNAME} CC="${LIBTOOL} ${CC}" \
+ PREFIX=${PREFIX}
do-install:
${LIBTOOL} --mode=install ${INSTALL_DATA} \
@@ -28,3 +29,8 @@ do-install:
${PREFIX}/include/pico/
.include "../../mk/bsd.pkg.mk"
+.if ${OPSYS} == "SunOS"
+BUILDNAME= so5
+.else
+BUILDNAME= neb
+.endif