Index: head/usr.bin/Makefile =================================================================== --- head/usr.bin/Makefile (revision 1865) +++ head/usr.bin/Makefile (revision 1866) @@ -1,44 +1,44 @@ # @(#)Makefile 8.3 (Berkeley) 1/7/94 # XXX MISSING: at bc dc deroff diction diff ex graph learn plot # ptx spell spline struct units xsend # XXX MISSING SOURCES: file grep sort # XXX MISSING Makefile: uucp # XXX Use GNU versions: ld man SUBDIR= apply apropos ar banner basename bdes biff cal calendar \ cap_mkdb checknr chflags chpass cksum col colcrt colrm column \ comm compress cpp ctags cut dirname du \ env error expand false find finger fmt fold fpr from \ fsplit fstat ftp gcore gprof head hexdump id indent \ join jot kdump ktrace lam last lastcomm leave locate \ lock logger login logname lorder m4 mail make mesg mkdep \ mkfifo mklocale mkstr more msgs mt netstat nfsstat nice nm nohup \ pagesize passwd paste patch pr printenv printf quota \ - ranlib rdist renice rev rlogin rs rsh ruptime rwho sccs \ + ranlib rdist renice rev rlogin rs rsh ruptime rwho \ script sed shar showmount size soelim split \ strings strip su talk tcopy tee telnet tftp time tip \ tn3270 touch tput tr true tset tsort tty ul uname unexpand \ unifdef uniq unvis users uudecode uuencode vacation \ vgrind vis w wall wc what whatis whereis who whois window write \ xargs xinstall xstr yacc yes # Cmp, look and tail all use mmap, so new-VM only. # F77 and pascal are VAX/Tahoe only. .if ${MACHINE} == "hp300" SUBDIR+=cmp ld look systat tail vmstat .elif ${MACHINE} == "i386" SUBDIR+=cmp look systat tail vmstat # XXX Use gnu/usr.bin/ld for now .elif ${MACHINE} == "luna68k" SUBDIR+=cmp ld look systat tail vmstat .elif ${MACHINE} == "mips" SUBDIR+=cmp look systat tail vmstat .elif ${MACHINE} == "sparc" SUBDIR+=cmp ld look tail vmstat.sparc .elif ${MACHINE} == "tahoe" SUBDIR+=f77 pascal systat vmstat .elif ${MACHINE} == "vax" SUBDIR+=f77 pascal systat vmstat .endif .include Index: head/usr.bin/ar/Makefile =================================================================== --- head/usr.bin/ar/Makefile (revision 1865) +++ head/usr.bin/ar/Makefile (revision 1866) @@ -1,17 +1,10 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= ar CFLAGS+=-I${.CURDIR} SRCS= append.c ar.c archive.c contents.c delete.c extract.c misc.c \ move.c print.c replace.c -MAN1= ar.0 -CLEANFILES=ar.5.0 - -ar.0: ar.5.0 - -# XXX BROKEN: afterinstall: -XXXafterinstall: - install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} ar.5.0 \ - ${DESTDIR}${MANDIR}5/ar.0 +MAN1= ar.1 +MAN5= ar.5 .include Index: head/usr.bin/ar/ar.5 =================================================================== --- head/usr.bin/ar/ar.5 (nonexistent) +++ head/usr.bin/ar/ar.5 (revision 1866) @@ -0,0 +1,145 @@ +.\" Copyright (c) 1990, 1991, 1993 +.\" The Regents of the University of California. All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" 3. All advertising materials mentioning features or use of this software +.\" must display the following acknowledgement: +.\" This product includes software developed by the University of +.\" California, Berkeley and its contributors. +.\" 4. Neither the name of the University nor the names of its contributors +.\" may be used to endorse or promote products derived from this software +.\" without specific prior written permission. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" @(#)ar.5.5 8.1 (Berkeley) 6/9/93 +.\" +.Dd June 9, 1993 +.Dt AR 5 +.Os +.Sh NAME +.Nm ar +.Nd archive (library) file format +.Sh SYNOPSIS +.Fd #include +.Sh DESCRIPTION +The archive command +.Nm ar +combines several files into one. +Archives are mainly used as libraries of object files intended to be +loaded using the link-editor +.Xr ld 1 . +.Pp +A file created with +.Nm ar +begins with the ``magic'' string "!\en". +The rest of the archive is made up of objects, each of which is composed +of a header for a file, a possible file name, and the file contents. +The header is portable between machine architectures, and, if the file +contents are printable, the archive is itself printable. +.Pp +The header is made up of six variable length +.Tn ASCII +fields, followed by a +two character trailer. +The fields are the object name (16 characters), the file last modification +time (12 characters), the user and group id's (each 6 characters), the file +mode (8 characters) and the file size (10 characters). +All numeric fields are in decimal, except for the file mode which is in +octal. +.Pp +The modification time is the file +.Fa st_mtime +field, i.e., +.Dv CUT +seconds since +the epoch. +The user and group id's are the file +.Fa st_uid +and +.Fa st_gid +fields. +The file mode is the file +.Fa st_mode +field. +The file size is the file +.Fa st_size +field. +The two-byte trailer is the string "\`\en". +.Pp +Only the name field has any provision for overflow. +If any file name is more than 16 characters in length or contains an +embedded space, the string "#1/" followed by the +.Tn ASCII +length of the +name is written in the name field. +The file size (stored in the archive header) is incremented by the length +of the name. +The name is then written immediately following the archive header. +.Pp +Any unused characters in any of these fields are written as space +characters. +If any fields are their particular maximum number of characters in +length, there will be no separation between the fields. +.Pp +Objects in the archive are always an even number of bytes long; files +which are an odd number of bytes long are padded with a newline (``\en'') +character, although the size in the header does not reflect this. +.Sh SEE ALSO +.Xr ar 1 , +.Xr stat 2 +.Sh HISTORY +There have been at least four +.Nm ar +formats. +The first was denoted by the leading ``magic'' number 0177555 (stored as +type int). +These archives were almost certainly created on a 16-bit machine, and +contain headers made up of five fields. +The fields are the object name (8 characters), the file last modification +time (type long), the user id (type char), the file mode (type char) and +the file size (type unsigned int). +Files were padded to an even number of bytes. +.Pp +The second was denoted by the leading ``magic'' number 0177545 (stored as +type int). +These archives may have been created on either 16 or 32-bit machines, and +contain headers made up of six fields. +The fields are the object name (14 characters), the file last modification +time (type long), the user and group id's (each type char), the file mode +(type int) and the file size (type long). +Files were padded to an even number of bytes. +For more information on converting from this format see +.Xr arcv 8 . +.Pp +The current archive format (without support for long character names and +names with embedded spaces) was introduced in +.Bx 4.0 . +The headers were the same as the current format, with the exception that +names longer than 16 characters were truncated, and names with embedded +spaces (and often trailing spaces) were not supported. +It has been extended for these reasons, +as described above. +This format first appeared in 4.4BSD. +.Sh COMPATIBILITY +No archive format is currently specified by any standard. +.At V +has historically distributed archives in a different format from +all of the above. Property changes on: head/usr.bin/ar/ar.5 ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/usr.bin/banner/Makefile =================================================================== --- head/usr.bin/banner/Makefile (revision 1865) +++ head/usr.bin/banner/Makefile (revision 1866) @@ -1,6 +1,6 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= banner -MAN6= banner.0 +MAN6= banner.6 .include Index: head/usr.bin/grep/egrep/Makefile =================================================================== --- head/usr.bin/grep/egrep/Makefile (revision 1865) +++ head/usr.bin/grep/egrep/Makefile (revision 1866) @@ -1,17 +1,17 @@ # @(#)Makefile 8.1 (Berkeley) 6/27/93 # -DSLOWSYS invoke xread() for system time quirk on PDP, others? # -DNOKANJI default is for Japanese Unix. undef only for raw # parity-marked search capability, not standard w/grep. # -DCHINESE for systems using EUC Chinese2 codes # -Dstrrchr=rindex, -Dstrchr=index as necessary PROG= egrep CFLAGS+=-Dstrrchr=rindex -Dstrchr=index -DNOKANJI LDADD= -lcompat # must search compat to get spencers early regexp package -MAN1= grep.0 +MAN1= grep.1 LINKS= ${BINDIR}/egrep ${BINDIR}/grep ${BINDIR}/egrep ${BINDIR}/fgrep MLINKS= grep.1 egrep.1 grep.1 fgrep.1 .include "../../Makefile.inc" .include Index: head/usr.bin/id/Makefile =================================================================== --- head/usr.bin/id/Makefile (revision 1865) +++ head/usr.bin/id/Makefile (revision 1866) @@ -1,15 +1,13 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= id -MAN1= id.0 groups.0 whoami.0 +MAN1= id.1 groups.1 whoami.1 # XXX BROKEN: afterinstall: afterinstall: install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/groups.sh ${DESTDIR}/usr/bin/groups install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/whoami.sh ${DESTDIR}/usr/bin/whoami -#XXX ${MINSTALL} groups.0 ${DESTDIR}${MANDIR}1/groups.0 -#XXX ${MINSTALL} whoami.0 ${DESTDIR}${MANDIR}1/whoami.0 .include Index: head/usr.bin/lorder/Makefile =================================================================== --- head/usr.bin/lorder/Makefile (revision 1865) +++ head/usr.bin/lorder/Makefile (revision 1866) @@ -1,9 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -MAN1= lorder.0 +MAN1= lorder.1 install: install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/lorder.sh ${DESTDIR}/${BINDIR}/lorder .include Index: head/usr.bin/mkdep/Makefile =================================================================== --- head/usr.bin/mkdep/Makefile (revision 1865) +++ head/usr.bin/mkdep/Makefile (revision 1866) @@ -1,16 +1,16 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -MAN1= mkdep.0 +MAN1= mkdep.1 .if (${MACHINE} == "hp300" || ${MACHINE} == "i386" || \ ${MACHINE} == "mips" || ${MACHINE} == "sparc") beforeinstall: install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/mkdep.gcc.sh ${DESTDIR}/usr/bin/mkdep .else beforeinstall: install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/mkdep.sh ${DESTDIR}/usr/bin/mkdep .endif .include Index: head/usr.bin/pagesize/Makefile =================================================================== --- head/usr.bin/pagesize/Makefile (revision 1865) +++ head/usr.bin/pagesize/Makefile (revision 1866) @@ -1,9 +1,9 @@ # @(#)Makefile 8.2 (Berkeley) 4/3/94 -MAN1= pagesize.0 +MAN1= pagesize.1 install: install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/pagesize.sh ${DESTDIR}/${BINDIR}/pagesize .include Index: head/usr.bin/ranlib/Makefile =================================================================== --- head/usr.bin/ranlib/Makefile (revision 1865) +++ head/usr.bin/ranlib/Makefile (revision 1866) @@ -1,18 +1,10 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= ranlib SRCS= archive.c build.c misc.c ranlib.c touch.c CFLAGS+=-I${.CURDIR} -I${.CURDIR}/../ar -MAN1= ranlib.0 +MAN1= ranlib.1 +MAN5= ranlib.5 VPATH= ${.CURDIR}/../ar - -# XXX BROKEN: manual pages -# XXX CLEANFILES=ranlib.5.0 - -# XXX ranlib.0: ranlib.5.0 - -# XXX afterinstall: -# XXX install -c -o ${MANOWN} -g ${MANGRP} -m ${MANMODE} ranlib.5.0 \ -# XXX ${DESTDIR}${MANDIR}5/ranlib.0 .include Index: head/usr.bin/ranlib/ranlib.5 =================================================================== --- head/usr.bin/ranlib/ranlib.5 (nonexistent) +++ head/usr.bin/ranlib/ranlib.5 (revision 1866) @@ -0,0 +1,70 @@ +.\" Copyright (c) 1990, 1991, 1993 +.\" The Regents of the University of California. All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" 3. All advertising materials mentioning features or use of this software +.\" must display the following acknowledgement: +.\" This product includes software developed by the University of +.\" California, Berkeley and its contributors. +.\" 4. Neither the name of the University nor the names of its contributors +.\" may be used to endorse or promote products derived from this software +.\" without specific prior written permission. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" @(#)ranlib.5.5 8.1 (Berkeley) 6/6/93 +.\" +.Dd June 6, 1993 +.Dt RANLIB 5 +.Os +.Sh NAME +.Nm ranlib +.Nd archive (library) table-of-contents format +.Sh SYNOPSIS +.Fd #include +.Sh DESCRIPTION +The archive table-of-contents command +.Nm ranlib +creates a table of contents for archives, containing object files, to +be used by the link-editor +.Xr ld 1 . +It operates on archives created with the utility +.Xr ar 1 . +.Pp +The +.Nm Ranlib +function +prepends a new file to the archive which has three separate parts. +The first part is a standard archive header, which has a special name +field, "__.SYMDEF". +.Pp +The second part is a ``long'' followed by a list of ranlib structures. +The long is the size, in bytes, of the list of ranlib structures. +Each of the ranlib structures consists of a zero based offset into the +next section (a string table of symbols) and an offset from the beginning +of the archive to the start of the archive file which defines the symbol. +The actual number of ranlib structures is this number divided by the size +of an individual ranlib structure. +.Pp +The third part is a ``long'' followed by a string table. +The long is the size, in bytes of the string table. +.Sh SEE ALSO +.Xr ar 1 , +.Xr ranlib 1 Property changes on: head/usr.bin/ranlib/ranlib.5 ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Index: head/usr.bin/shar/Makefile =================================================================== --- head/usr.bin/shar/Makefile (revision 1865) +++ head/usr.bin/shar/Makefile (revision 1866) @@ -1,9 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 -MAN1= shar.0 +MAN1= shar.1 beforeinstall: install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/shar.sh ${DESTDIR}/usr/bin/shar .include Index: head/usr.bin/tn3270/mset/Makefile =================================================================== --- head/usr.bin/tn3270/mset/Makefile (revision 1865) +++ head/usr.bin/tn3270/mset/Makefile (revision 1866) @@ -1,34 +1,34 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= mset CFLAGS+=-I${.CURDIR} -I. SRCS+= astosc.c map3270.c mset.c -MAN1= mset.0 -MAN5= map3270.0 +MAN1= mset.1 +MAN5= map3270.5 .PATH: ${.CURDIR}/../api ${.CURDIR}/../ascii CLEANFILES+= astosc.OUT astosc.out # This and the dependency hacks below to make 'depend' target # work right... DEPSRCS+= astosc.OUT map3270.c mset.c astosc.o: astosc.OUT astosc.OUT: ${.CURDIR}/../ctlr/hostctlr.h ${.CURDIR}/../ctlr/function.h astosc.OUT: ${.CURDIR}/../ctlr/${KBD} ${.CURDIR}/../tools/mkastosc/obj/mkastosc ${.CURDIR}/../tools/mkastosc/obj/mkastosc \ ${.CURDIR}/../ctlr/hostctlr.h ${.CURDIR}/../ctlr/function.h \ < ${.CURDIR}/../ctlr/${KBD} > ${.TARGET} rm -f astosc.out; ln -s astosc.OUT astosc.out # astosc.out ${.CURDIR}/../tools/mkastosc/obj/mkastosc: cd ${.CURDIR}/../tools/mkastosc; make depend: .depend .depend:${DEPSRCS} mkdep ${MKDEP} ${CFLAGS:M-[ID]*} ${.ALLSRC:M*.c} .include <../../Makefile.inc> .include Index: head/usr.bin/tn3270/tn3270/Makefile =================================================================== --- head/usr.bin/tn3270/tn3270/Makefile (revision 1865) +++ head/usr.bin/tn3270/tn3270/Makefile (revision 1866) @@ -1,80 +1,80 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= tn3270 CFLAGS+=-I${.CURDIR} -I. LDADD+= -lcurses -ltermcap -ltelnet DPADD+= ${LIBCURSES} /usr/lib/libtermcap.a /usr/lib/libtelnet.a CLEANFILES+= asc_disp.OUT asc_disp.out disp_asc.OUT disp_asc.out TMPfunc.out .PATH: ${.CURDIR}/../api ${.CURDIR}/../ascii ${.CURDIR}/../ctlr .PATH: ${.CURDIR}/../general ${.CURDIR}/../sys_curses ${.CURDIR}/../../telnet -MAN1= tn3270.0 +MAN1= tn3270.1 SRCS+= apilib.c api_bsd.c api_exch.c asc_ebc.c astosc.c dctype.c SRCS+= disp_asc.c ebc_disp.c SRCS+= map3270.c termin.c SRCS+= api.c function.c inbound.c oia.c options.c outbound.c SRCS+= genbsubs.c globals.c system.c termout.c SRCS+= commands.c main.c network.c ring.c sys_bsd.c telnet.c terminal.c SRCS+= tn3270.c utilities.c # This and the dependency hacks below to make 'depend' target # work right... DEPSRCS+= astosc.OUT asc_disp.OUT disp_asc.OUT kbd.OUT DEPSRCS+= apilib.c api_bsd.c api_exch.c asc_ebc.c dctype.c DEPSRCS+= ebc_disp.c DEPSRCS+= map3270.c termin.c DEPSRCS+= api.c function.c inbound.c oia.c options.c outbound.c DEPSRCS+= genbsubs.c globals.c system.c termout.c DEPSRCS+= commands.c main.c network.c ring.c sys_bsd.c telnet.c terminal.c DEPSRCS+= tn3270.c utilities.c astosc.o: astosc.OUT CLEANFILES+= astosc.OUT astosc.out astosc.OUT: ${.CURDIR}/../ctlr/hostctlr.h ${.CURDIR}/../ctlr/function.h astosc.OUT: ${.CURDIR}/../ctlr/${KBD} ${.CURDIR}/../tools/mkastosc/obj/mkastosc ${.CURDIR}/../tools/mkastosc/obj/mkastosc \ ${.CURDIR}/../ctlr/hostctlr.h \ ${.CURDIR}/../ctlr/function.h < ${.CURDIR}/../ctlr/${KBD} \ > ${.TARGET} rm -f astosc.out; ln -s astosc.OUT astosc.out disp_asc.o: asc_disp.OUT disp_asc.OUT asc_disp.OUT: ${.CURDIR}/../tools/mkastods/obj/mkastods ${.CURDIR}/../tools/mkastods/obj/mkastods > ${.TARGET} rm -f asc_disp.out; ln -s asc_disp.OUT asc_disp.out disp_asc.OUT: ${.CURDIR}/../tools/mkdstoas/obj/mkdstoas ${.CURDIR}/../tools/mkdstoas/obj/mkdstoas > ${.TARGET} rm -f disp_asc.out; ln -s disp_asc.OUT disp_asc.out inbound.o: kbd.OUT CLEANFILES += kbd.OUT kbd.out kbd.OUT: ${.CURDIR}/../ctlr/hostctlr.h ${.CURDIR}/../ctlr/${KBD} kbd.OUT: ${.CURDIR}/../tools/mkhits/obj/mkhits ${CC} ${CFLAGS} -E ${.CURDIR}/../ctlr/function.c > TMPfunc.out ${.CURDIR}/../tools/mkhits/obj/mkhits ${.CURDIR}/../ctlr/hostctlr.h \ TMPfunc.out < ${.CURDIR}/../ctlr/${KBD} > ${.TARGET} rm -f kbd.out; ln -s kbd.OUT kbd.out # astosc.out # asc_disp.out disp_asc.out # default.map # kbd.out ${.CURDIR}/../tools/mkastosc/obj/mkastosc: cd ${.CURDIR}/../tools/mkastosc; make ${.CURDIR}/../tools/mkastods/obj/mkastods: cd ${.CURDIR}/../tools/mkastods; make ${.CURDIR}/../tools/mkdstoas/obj/mkdstoas: cd ${.CURDIR}/../tools/mkdstoas; make ${.CURDIR}/../tools/mkhits/obj/mkhits: cd ${.CURDIR}/../tools/mkhits; make depend: .depend .depend: ${DEPSRCS} mkdep ${MKDEP} ${CFLAGS:M-[ID]*} ${.ALLSRC:M*.c} .include <../../Makefile.inc> .include Index: head/usr.bin/uucp/acucntrl/Makefile =================================================================== --- head/usr.bin/uucp/acucntrl/Makefile (revision 1865) +++ head/usr.bin/uucp/acucntrl/Makefile (revision 1866) @@ -1,10 +1,10 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= acucntrl CFLAGS+=-I${.CURDIR}/../includes BINDIR= ${LIBDIR} BINOWN= root BINMODE=6550 -MAN8= acucntrl.0 +MAN8= acucntrl.8 .include Index: head/usr.bin/uucp/uupoll/Makefile =================================================================== --- head/usr.bin/uucp/uupoll/Makefile (revision 1865) +++ head/usr.bin/uucp/uupoll/Makefile (revision 1866) @@ -1,10 +1,10 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= uupoll CFLAGS+=-I${.CURDIR}/../includes BINMODE=6555 DPADD= ${LIBCOMPAT} LDADD= ${LIBUU} -lcompat -MAN8= uupoll.0 +MAN8= uupoll.8 .include Index: head/usr.bin/uucp/uusnap/Makefile =================================================================== --- head/usr.bin/uucp/uusnap/Makefile (revision 1865) +++ head/usr.bin/uucp/uusnap/Makefile (revision 1866) @@ -1,8 +1,8 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= uusnap CFLAGS+=-I${.CURDIR}/../includes BINMODE=6555 -MAN8= uusnap.0 +MAN8= uusnap.8 .include Index: head/usr.bin/uuencode/Makefile =================================================================== --- head/usr.bin/uuencode/Makefile (revision 1865) +++ head/usr.bin/uuencode/Makefile (revision 1866) @@ -1,8 +1,9 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= uuencode -MAN1= uuencode.0 -MAN5= uuencode.format.0 -MLINKS= uuencode.1 uudecode.1 +MAN1= uuencode.1 +MAN5= uuencode.format.5 +MLINKS= uuencode.1 uudecode.1 \ + uuencode.format.5 uuencode.5 .include Index: head/usr.bin/vgrind/Makefile =================================================================== --- head/usr.bin/vgrind/Makefile (revision 1865) +++ head/usr.bin/vgrind/Makefile (revision 1866) @@ -1,21 +1,21 @@ # @(#)Makefile 8.1 (Berkeley) 6/9/93 PROG= vfontedpr SRCS= regexp.c vfontedpr.c -MAN1= vgrind.0 -MAN5= vgrindefs.0 +MAN1= vgrind.1 +MAN5= vgrindefs.5 BINDIR= /usr/libexec CLEANFILES+=vgrindefs.src.db beforeinstall: cap_mkdb -f vgrindefs.src ${.CURDIR}/vgrindefs.src install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${.CURDIR}/vgrind.sh ${DESTDIR}/usr/bin/vgrind install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/vgrindefs.src \ ${DESTDIR}/usr/share/misc/vgrindefs install -c -o ${BINOWN} -g ${BINGRP} -m 444 \ vgrindefs.src.db ${DESTDIR}/usr/share/misc/vgrindefs.db install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/tmac.vgrind \ ${DESTDIR}/usr/share/tmac .include Index: head/usr.bin/vmstat/Makefile =================================================================== --- head/usr.bin/vmstat/Makefile (revision 1865) +++ head/usr.bin/vmstat/Makefile (revision 1866) @@ -1,11 +1,11 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= vmstat CFLAGS+=-I/sys -MAN8= vmstat.0 +MAN8= vmstat.8 BINGRP= kmem BINMODE=2555 DPADD= names.c ${LIBKVM} LDADD= -lkvm .include Index: head/usr.bin/w/Makefile =================================================================== --- head/usr.bin/w/Makefile (revision 1865) +++ head/usr.bin/w/Makefile (revision 1866) @@ -1,14 +1,14 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= w SRCS= fmt.c pr_time.c proc_compare.c w.c -MAN1= w.0 uptime.0 +MAN1= w.1 uptime.1 DPADD= ${LIBKVM} LDADD= -lkvm BINGRP= kmem BINMODE=2555 LINKS= ${BINDIR}/w ${BINDIR}/uptime .PATH: ${.CURDIR}/../../bin/ps .include Index: head/usr.bin/window/Makefile =================================================================== --- head/usr.bin/window/Makefile (revision 1865) +++ head/usr.bin/window/Makefile (revision 1866) @@ -1,22 +1,22 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= window CFLAGS+=-R -DVMIN_BUG SRCS= char.c cmd.c cmd1.c cmd2.c cmd3.c cmd4.c cmd5.c cmd6.c cmd7.c \ context.c error.c lcmd.c lcmd1.c lcmd2.c main.c mloop.c parser1.c \ parser2.c parser3.c parser4.c parser5.c scanner.c startup.c string.c \ ttf100.c ttgeneric.c tth19.c tth29.c ttinit.c ttoutput.c tttermcap.c \ tttvi925.c ttwyse60.c ttwyse75.c ttzapple.c ttzentec.c var.c win.c \ wwadd.c wwalloc.c wwbox.c wwchild.c wwclose.c wwclreol.c wwclreos.c \ wwcursor.c wwdata.c wwdelchar.c wwdelete.c wwdelline.c wwdump.c \ wwend.c wwenviron.c wwerror.c wwflush.c wwframe.c wwgets.c wwinit.c \ wwinschar.c wwinsline.c wwiomux.c wwlabel.c wwmisc.c wwmove.c \ wwopen.c wwprintf.c wwpty.c wwputc.c wwputs.c wwredraw.c \ wwredrawwin.c wwrint.c wwscroll.c wwsize.c wwspawn.c wwsuspend.c \ wwterminfo.c wwtty.c wwunframe.c wwupdate.c wwwrite.c xx.c xxflush.c \ compress.c -MAN= window.0 +MAN= window.1 DPADD= ${LIBTERMCAP} LDADD= -ltermcap .include Index: head/usr.bin/xinstall/Makefile =================================================================== --- head/usr.bin/xinstall/Makefile (revision 1865) +++ head/usr.bin/xinstall/Makefile (revision 1866) @@ -1,12 +1,12 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= xinstall SRCS= stat_flags.c xinstall.c -MAN1= install.0 +MAN1= install.1 .PATH: ${.CURDIR}/../../bin/ls install: install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ ${PROG} ${DESTDIR}${BINDIR}/install .include