summaryrefslogtreecommitdiff
path: root/devel/bmake/files
diff options
context:
space:
mode:
authorjoerg <joerg>2008-03-11 17:20:05 +0000
committerjoerg <joerg>2008-03-11 17:20:05 +0000
commitb77a0a8249ba5f725ef4271c889b907e938c00c9 (patch)
tree2f510a3fb5be4b94c7dad536d2999c6911cec62d /devel/bmake/files
parent678e21369a2cb9050e2f7a2f33cbd021c17b3974 (diff)
downloadpkgsrc-b77a0a8249ba5f725ef4271c889b907e938c00c9.tar.gz
Skip man page handling.
Diffstat (limited to 'devel/bmake/files')
-rw-r--r--devel/bmake/files/Makefile.in34
1 files changed, 4 insertions, 30 deletions
diff --git a/devel/bmake/files/Makefile.in b/devel/bmake/files/Makefile.in
index a15a4a3e2f6..93d2a04f2f9 100644
--- a/devel/bmake/files/Makefile.in
+++ b/devel/bmake/files/Makefile.in
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile.in,v 1.6 2008/03/09 19:54:29 joerg Exp $
+# $NetBSD: Makefile.in,v 1.7 2008/03/11 17:20:05 joerg Exp $
# @(#)Makefile 5.2 (Berkeley) 12/28/90
-# $Id: Makefile.in,v 1.6 2008/03/09 19:54:29 joerg Exp $
+# $Id: Makefile.in,v 1.7 2008/03/11 17:20:05 joerg Exp $
PROG= bmake
SRCS= arch.c buf.c compat.c cond.c dir.c for.c hash.c job.c main.c \
@@ -31,6 +31,8 @@ MACHINE=@machine@
MACHINE_ARCH=@machine_arch@
DEFAULT_SYS_PATH = @default_sys_path@
+NOMAN= yes
+
CFLAGS+= -D_PATH_DEFSYSPATH=\"${DEFAULT_SYS_PATH}\"
CFLAGS+= -I. -I${srcdir} @DEFS@ @CPPFLAGS@ ${XDEFS} -DMAKE_NATIVE
CFLAGS+= ${CFLAGS_${.TARGET:T}}
@@ -53,17 +55,12 @@ isBSD44= NetBSD FreeBSD OpenBSD DragonFly
# On FreeBSD WARNS=2 sets a bunch of -W flags that make does not handle.
WFORMAT= 1
WARNS=4
-.NOPATH: bmake.cat1
-.if make(install) && exists(${DESTDIR}/usr/share/doc)
-SUBDIR= PSD.doc
-.endif
.endif
.if empty(isBSD44:M${OS})
# XXX not sure if we still want this given that configure
# lets us force or not the definition of MACHINE.
CFLAGS_main.o+= "-DFORCE_MACHINE=\"${MACHINE}\""
-MANTARGET=cat
SRCS+= getenv.c
INSTALL?=${srcdir}/install-sh
.if (${MACHINE} == "sun386")
@@ -89,29 +86,6 @@ CFLAGS_main.o+= "-D@force_machine@MACHINE=\"${MACHINE}\"" "-DMACHINE_ARCH=\"${MA
EXTRACT_MAN=no
-MAN=${PROG}.1
-.if (${PROG} != "make")
-${MAN}: make.1
- @echo making ${PROG}.1
- @sed -e '/^.Nm/s/make/${PROG}/' -e '/^.Sh HISTORY/,$$d' ${srcdir}/make.1 > $@
- @(echo ".Sh HISTORY"; echo ".Nm"; echo "is derived from NetBSD's"; echo ".Xr make 1 ."; echo It uses autoconf to facilitate portability to other platforms.) >> $@
-
-.endif
-
-.if !empty(isBSD44:M${OS})
-.if "${OS}" != "NetBSD"
-MAN1=${MAN}
-.endif
-MANTARGET?=man
-.endif
-
-MANTARGET?= cat
-MANDEST?= ${MANDIR}/${MANTARGET}1
-
-.if ${MANTARGET} == "cat"
-_mfromdir=${srcdir}
-.endif
-
.if exists(${srcdir}/../Makefile.inc)
.include "${srcdir}/../Makefile.inc"
.endif