move man pages into share/man.
This commit is contained in:
parent
5667e094a1
commit
0553741950
19
lib/Makefile
19
lib/Makefile
|
@ -1,17 +1,13 @@
|
|||
# $NetBSD: Makefile,v 1.38 1997/06/12 07:07:32 veego Exp $
|
||||
# $NetBSD: Makefile,v 1.39 1997/06/23 05:24:16 mrg Exp $
|
||||
# from: @(#)Makefile 5.25.1.1 (Berkeley) 5/7/91
|
||||
|
||||
.include <bsd.own.mk> # for EXPORTABLE_SYSTEM definition
|
||||
|
||||
SUBDIR= csu libarch libc libcompat libcrypt libcurses libedit libl \
|
||||
libm libntp libpcap libposix libresolv librmt librpcsvc libskey \
|
||||
libterm libutil libwrap liby libz
|
||||
SUBDIR= csu libarch libc libcompat libcrypt libcurses libedit libkvm \
|
||||
libl libm libntp libpcap libposix libresolv librmt librpcsvc\
|
||||
libskey libterm libutil libwrap liby libz
|
||||
|
||||
.if make(clean) || make(cleandir)
|
||||
SUBDIR+= libkvm libkvm.old libtelnet
|
||||
.else
|
||||
|
||||
# XXX Temporary until these ports are able to use libkvm
|
||||
# XXX Temporary until this ports are able to use libkvm (leo/veego)
|
||||
.if (${MACHINE} == "arm32") || \
|
||||
(${MACHINE} == "i386") || \
|
||||
(${MACHINE} == "pica") || \
|
||||
|
@ -19,12 +15,11 @@ SUBDIR+= libkvm libkvm.old libtelnet
|
|||
(${MACHINE} == "x68k")
|
||||
SUBDIR+= libkvm.old
|
||||
.else
|
||||
SUBDIR+= libkvm
|
||||
.endif
|
||||
|
||||
# XXX Keep telnet(1) and libtelnet from getting out of sync during the build
|
||||
# XXX process.
|
||||
.if !exists(${.CURDIR}/../domestic/lib/libtelnet) || defined(EXPORTABLE_SYSTEM)
|
||||
.if !exists(${.CURDIR}/../domestic/lib/libtelnet) || \
|
||||
defined(EXPORTABLE_SYSTEM) || make(clean) || make(cleandir)
|
||||
SUBDIR+= libtelnet
|
||||
.endif
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.4 1996/05/13 02:30:20 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.5 1997/06/23 05:24:18 mrg Exp $
|
||||
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
|
||||
|
||||
.PATH: ${.CURDIR}/../libkvm
|
||||
|
@ -17,12 +17,6 @@ SRCS= kvm_${MACHINE_ARCH}.c
|
|||
.endif
|
||||
|
||||
SRCS+= kvm.c kvm_file.c kvm_getloadavg.c kvm_proc.c
|
||||
|
||||
MAN= kvm.3 kvm_geterr.3 kvm_getfiles.3 kvm_getloadavg.3 kvm_getprocs.3 \
|
||||
kvm_nlist.3 kvm_open.3 kvm_read.3
|
||||
|
||||
MLINKS+=kvm_getprocs.3 kvm_getargv.3 kvm_getprocs.3 kvm_getenvv.3
|
||||
MLINKS+=kvm_open.3 kvm_openfiles.3 kvm_open.3 kvm_close.3
|
||||
MLINKS+=kvm_read.3 kvm_write.3
|
||||
NOMAN= yes
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
|
|
|
@ -1,6 +1,11 @@
|
|||
# $NetBSD: Makefile,v 1.13 1997/03/21 18:48:58 gwr Exp $
|
||||
# $NetBSD: Makefile,v 1.14 1997/06/23 05:24:19 mrg Exp $
|
||||
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
|
||||
|
||||
.if (${MACHINE} != "arm32") && \
|
||||
(${MACHINE} != "i386") && \
|
||||
(${MACHINE} != "pica") && \
|
||||
(${MACHINE} != "pmax") && \
|
||||
(${MACHINE} != "x68k")
|
||||
LIB= kvm
|
||||
CFLAGS+=-DLIBC_SCCS
|
||||
|
||||
|
@ -17,6 +22,7 @@ SRCS+= kvm_${MACHINE_ARCH}.c
|
|||
.if (${MACHINE_ARCH} == "m68k")
|
||||
SRCS+= kvm_m68k_cmn.c kvm_sun3.c kvm_sun3x.c
|
||||
.endif
|
||||
.endif
|
||||
|
||||
MAN= kvm.3 kvm_dump.3 kvm_geterr.3 kvm_getfiles.3 kvm_getloadavg.3 \
|
||||
kvm_getprocs.3 kvm_nlist.3 kvm_open.3 kvm_read.3
|
||||
|
|
|
@ -1,29 +1,19 @@
|
|||
# $NetBSD: Makefile,v 1.25 1997/04/09 06:23:41 mikel Exp $
|
||||
# $NetBSD: Makefile,v 1.26 1997/06/23 05:15:44 mrg Exp $
|
||||
# from: @(#)Makefile 5.7 (Berkeley) 4/1/91
|
||||
|
||||
.include <bsd.own.mk> # for EXPORTABLE_SYSTEM
|
||||
# # and ECOFF_TOOLCHAIN
|
||||
|
||||
SUBDIR= atrun comsat fingerd ftpd getNAME getty identd lfs_cleanerd \
|
||||
SUBDIR= atrun comsat fingerd ftpd getNAME getty identd ld.elf_so lfs_cleanerd \
|
||||
mail.local makekey makewhatis rexecd rlogind rmail rshd rpc.rquotad \
|
||||
rpc.rstatd rpc.rusersd rpc.rwalld rpc.sprayd talkd \
|
||||
tftpd uucpd
|
||||
|
||||
.if make(clean) || make(cleandir)
|
||||
SUBDIR+=ld.elf_so telnetd
|
||||
.else
|
||||
|
||||
# XXX Keep telnetd(8) and libtelnet from getting out of sync during the build
|
||||
# XXX process.
|
||||
.if !exists(${.CURDIR}/../domestic/libexec/telnetd) || \
|
||||
defined(EXPORTABLE_SYSTEM)
|
||||
defined(EXPORTABLE_SYSTEM) || make(clean) || make(cleandir)
|
||||
SUBDIR+=telnetd
|
||||
.endif
|
||||
|
||||
.if (${MACHINE_ARCH} == "alpha" && !defined(ECOFF_TOOLCHAIN))
|
||||
SUBDIR+= ld.elf_so
|
||||
.endif
|
||||
|
||||
.endif # make(clean) || make(cleandir)
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.6 1997/05/31 21:21:54 cjs Exp $
|
||||
# $NetBSD: Makefile,v 1.7 1997/06/23 05:15:45 mrg Exp $
|
||||
|
||||
.if ${MACHINE} == "alpha"
|
||||
PROG= ld.elf_so
|
||||
|
||||
# Adds SRCS, CFLAGS, LDFLAGS, etc. Must go first so MD startup source
|
||||
|
@ -20,7 +21,6 @@ DPADD+= ${LIBC_PIC}
|
|||
# to be installed
|
||||
HDRS= link.h
|
||||
|
||||
NOMAN=
|
||||
STRIPFLAG=
|
||||
|
||||
.PATH: ${.CURDIR}/${MACHINE_ARCH}
|
||||
|
@ -36,5 +36,8 @@ includes:
|
|||
echo $$j; \
|
||||
eval "$$j"; \
|
||||
done
|
||||
.endif
|
||||
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.85 1997/06/20 20:19:23 pk Exp $
|
||||
# $NetBSD: Makefile,v 1.86 1997/06/23 04:56:34 mrg Exp $
|
||||
# from: @(#)Makefile 5.6.1.2 (Berkeley) 5/8/91
|
||||
|
||||
# not yet done: catman
|
||||
|
@ -14,25 +14,7 @@ SUBDIR= ac accton amd arp bootpd bootpgw bootpef bootptest chown \
|
|||
tcpdump timed traceroute trpt trsp update vipw vnconfig xntp ypbind \
|
||||
yppoll ypserv ypset zdump zic
|
||||
|
||||
.if make(clean) || make(cleandir)
|
||||
SUBDIR+=apm apmd bad144 dbsym eeprom grfconfig grfinfo hilinfo \
|
||||
iteconfig screenblank videomode
|
||||
.elif ${MACHINE} == "alpha"
|
||||
SUBDIR+=bad144
|
||||
.elif ${MACHINE} == "amiga"
|
||||
SUBDIR+=grfconfig iteconfig screenblank videomode
|
||||
.elif ${MACHINE} == "atari"
|
||||
SUBDIR+=iteconfig
|
||||
.elif ${MACHINE} == "hp300"
|
||||
SUBDIR+=grfinfo hilinfo
|
||||
.elif ${MACHINE} == "i386"
|
||||
SUBDIR+=apm apmd bad144
|
||||
.elif ${MACHINE} == "pmax"
|
||||
SUBDIR+=screenblank
|
||||
.elif ${MACHINE} == "sun3"
|
||||
SUBDIR+=dbsym eeprom screenblank
|
||||
.elif ${MACHINE} == "sparc"
|
||||
SUBDIR+=eeprom screenblank
|
||||
.endif
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
|
||||
# $NetBSD: Makefile,v 1.5 1997/03/06 06:12:18 mikel Exp $
|
||||
# $NetBSD: Makefile,v 1.6 1997/06/23 04:51:16 mrg Exp $
|
||||
|
||||
.if ${MACHINE} == "alpha" || ${MACHINE} == "i386"
|
||||
PROG= bad144
|
||||
.endif
|
||||
|
||||
MAN= bad144.8
|
||||
MANSUBDIR=/i386
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
# $Id: Makefile,v 1.4 1994/12/22 11:34:02 cgd Exp $
|
||||
# $Id: Makefile,v 1.5 1997/06/23 04:51:19 mrg Exp $
|
||||
|
||||
.if ${MACHINE} == "sun3"
|
||||
PROG=dbsym
|
||||
.endif
|
||||
|
||||
MAN=dbsym.8
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
|
||||
# $NetBSD: Makefile,v 1.1 1995/07/13 18:07:19 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.2 1997/06/23 04:51:21 mrg Exp $
|
||||
|
||||
.if ${MACHINE} == "sun3" || ${MACHINE} == "sparc"
|
||||
PROG= eeprom
|
||||
MAN= eeprom.8
|
||||
|
||||
BINGRP= kmem
|
||||
BINMODE=2555
|
||||
|
@ -16,5 +16,8 @@ LDADD= -lkvm
|
|||
.endif
|
||||
|
||||
CLEANFILES+=getdate.c y.tab.h
|
||||
.endif
|
||||
|
||||
MAN= eeprom.8
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
# $NetBSD: Makefile,v 1.1 1995/10/09 03:43:22 chopps Exp $
|
||||
# $NetBSD: Makefile,v 1.2 1997/06/23 04:51:24 mrg Exp $
|
||||
|
||||
.if ${MACHINE} == "amiga"
|
||||
PROG= grfconfig
|
||||
MAN= grfconfig.8
|
||||
CFLAGS+=-I${.CURDIR}/../../sys/arch -D${MACHINE}
|
||||
.endif
|
||||
|
||||
MAN= grfconfig.8
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
# $NetBSD: Makefile,v 1.3 1997/01/31 23:12:12 carrel Exp $
|
||||
# $NetBSD: Makefile,v 1.4 1997/06/23 04:51:26 mrg Exp $
|
||||
|
||||
.if ${MACHINE} == "hp300"
|
||||
PROG= grfinfo
|
||||
CFLAGS+= -I${.CURDIR}/../../sys/arch/hp300
|
||||
.endif
|
||||
|
||||
MAN= grfinfo.1
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
# $Id: Makefile,v 1.1 1994/04/04 21:52:21 cgd Exp $
|
||||
# $Id: Makefile,v 1.2 1997/06/23 04:51:28 mrg Exp $
|
||||
|
||||
.if ${MACHINE} == "hp300"
|
||||
PROG= hilinfo
|
||||
NOMAN=
|
||||
CFLAGS+= -I${.CURDIR}/../../sys/arch/hp300
|
||||
.endif
|
||||
|
||||
NOMAN=
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
# $NetBSD: Makefile,v 1.3 1995/05/12 21:04:26 leo Exp $
|
||||
# $NetBSD: Makefile,v 1.4 1997/06/23 04:51:30 mrg Exp $
|
||||
|
||||
.if ${MACHINE} == "atari" || ${MACHINE} == "amiga"
|
||||
PROG=iteconfig
|
||||
MAN= iteconfig_${MACHINE}.8
|
||||
MLINKS= iteconfig_${MACHINE}.8 iteconfig.8
|
||||
CFLAGS+=-I${.CURDIR}/../../sys/arch -D${MACHINE}
|
||||
.endif
|
||||
|
||||
MAN= iteconfig.8 iteconfig_atari.8 iteconfig_amiga.8
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
# $NetBSD: Makefile,v 1.1 1995/07/12 04:57:47 thorpej Exp $
|
||||
# $NetBSD: Makefile,v 1.2 1997/06/23 04:51:31 mrg Exp $
|
||||
# @(#)Makefile 8.1 (Berkeley) 5/31/93
|
||||
|
||||
.if ${MACHINE} == "pmax" || ${MACHINE} == "sun3" \
|
||||
|| ${MACHINE} == "sparc" || ${MACHINE} == "amiga"
|
||||
PROG= screenblank
|
||||
|
||||
DPADD= ${LIBM}
|
||||
LDADD= -lm
|
||||
.endif
|
||||
|
||||
MAN= screenblank.1
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
# $NetBSD: Makefile,v 1.1 1995/10/09 00:50:07 chopps Exp $
|
||||
# $NetBSD: Makefile,v 1.2 1997/06/23 04:51:33 mrg Exp $
|
||||
|
||||
.if ${MACHINE} == "amiga"
|
||||
PROG=videomode
|
||||
CFLAGS+=-I${.CURDIR}/../../sys/arch -D${MACHINE}
|
||||
.endif
|
||||
|
||||
NOMAN= noman
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
|
Loading…
Reference in New Issue