Clean up deleted files.

This commit is contained in:
mycroft 1994-12-01 17:34:30 +00:00
parent 548708dd80
commit 5e26e46bb4
11 changed files with 0 additions and 228 deletions

View File

@ -1,7 +0,0 @@
# $NetBSD: Makefile,v 1.2 1994/10/26 02:05:27 cgd Exp $
.ifnmake install
SUBDIR= gzip init mkdir mount mount_ados newfs pax sh
.endif
.include <bsd.subdir.mk>

View File

@ -1,4 +0,0 @@
# $NetBSD: Makefile.inc,v 1.2 1994/10/26 02:05:29 cgd Exp $
LDSTATIC= -static
LDFLAGS+= -N

View File

@ -1,31 +0,0 @@
# $NetBSD: Makefile,v 1.2 1994/10/26 02:05:32 cgd Exp $
SRCDIR= ${.CURDIR}/../../../../../gnu/usr.bin/gzip
PROG= gzip
SRCS= gzip.c zip.c deflate.c trees.c bits.c unzip.c inflate.c util.c \
crypt.c lzw.c unlzw.c unlzh.c unpack.c getopt.c
NOMAN=noman
CFLAGS+=-DSTDC_HEADERS=1 -DHAVE_UNISTD_H=1 -DDIRENT=1
.if (${MACHINE_ARCH} == "m68k" || ${MACHINE_ARCH} == "i386")
SRCS+= match.S
CFLAGS+=-DASMV
.endif
LDSTATIC= -static
LDADD+= -lgnumalloc
DPADD+= /usr/lib/libgnumalloc.a
.if (${MACHINE_ARCH} == "m68k" || ${MACHINE_ARCH} == "i386")
match.o: ${SRCDIR}/match.S
$(CPP) -D__NetBSD__ ${SRCDIR}/match.S >_match.s
$(CC) -c _match.s
mv _match.o match.o
rm -f _match.s
.endif
BINDIR= /usr/bin
.PATH: ${SRCDIR}
.include <bsd.prog.mk>

View File

@ -1,15 +0,0 @@
# $NetBSD: Makefile,v 1.3 1994/10/26 02:32:02 cgd Exp $
PROG= init
SRCS= init.c
NOMAN=
CFLAGS+=-DNOSYSCTL -DLETS_GET_SMALL
DPADD= ${LIBUTIL} ${LIBCRYPT}
LDADD= -lutil -lcrypt
BINMODE=500
BINDIR= /sbin
.PATH: ${.CURDIR}/../../../../../sbin/init
.include <bsd.prog.mk>

View File

@ -1,12 +0,0 @@
# $NetBSD: Makefile,v 1.2 1994/10/26 02:05:37 cgd Exp $
# @(#)Makefile 5.2 (Berkeley) 5/11/90
PROG= mkdir
BINDIR=/sbin
NOMAN=noman
.PATH: ${.CURDIR}/../../../../../bin/mkdir
.include <bsd.prog.mk>

View File

@ -1,14 +0,0 @@
# $NetBSD: Makefile,v 1.2 1994/10/26 02:05:39 cgd Exp $
# @(#)Makefile 5.5 (Berkeley) 5/11/90
PROG= mount
SRCS= mount.c mount_ufs.c getmntopts.c
CFLAGS+= -DLETS_GET_SMALL
NOMAN=
BINDIR=/sbin
.PATH: ${.CURDIR}/../../../../../sbin/mount
.include <bsd.prog.mk>

View File

@ -1,14 +0,0 @@
# $NetBSD: Makefile,v 1.2 1994/10/26 02:05:41 cgd Exp $
# @(#)Makefile 5.5 (Berkeley) 5/11/90
PROG= mount_ados
SRCS= mount_ados.c
CFLAGS+= -DLETS_GET_SMALL
NOMAN=
BINDIR=/sbin
.PATH: ${.CURDIR}/../../../../../sbin/mount_ados
.include <bsd.prog.mk>

View File

@ -1,16 +0,0 @@
# $NetBSD: Makefile,v 1.2 1994/10/26 02:05:43 cgd Exp $
# @(#)Makefile 8.2 (Berkeley) 3/27/94
PROG= newfs
SRCS= dkcksum.c getmntopts.c newfs.c mkfs.c
MAN8= newfs.0
MOUNT= ${.CURDIR}/../../../../../sbin/mount
CFLAGS+=-DMFS -I${MOUNT}
.PATH: ${.CURDIR}/../../../../../sbin/newfs ${MOUNT} ${.CURDIR}/../../../../../sbin/disklabel
BINDIR=/sbin
NOMAN=noman
.include <bsd.prog.mk>

View File

@ -1,39 +0,0 @@
# $NetBSD: Makefile,v 1.2 1994/10/26 02:05:44 cgd Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
# To install on versions prior to BSD 4.4 the following may have to be
# defined with CFLAGS +=
#
# -DNET2_STAT Use NET2 or older stat structure. The version of the
# stat structure is easily determined by looking at the
# basic type of an off_t (often defined in the file:
# /usr/include/sys/types.h). If off_t is a long (and is
# NOT A quad) then you must define NET2_STAT.
# This define is important, as if you do have a quad_t
# off_t and define NET2_STAT, pax will compile but will
# NOT RUN PROPERLY.
#
# -DNET2_FTS Use the older NET2 fts. To identify the version,
# examine the file: /usr/include/fts.h. If FTS_COMFOLLOW
# is not defined then you must define NET2_FTS.
# Pax may not compile if this not (un)defined properly.
#
# -DNET2_REGEX Use the older regexp.h not regex.h. The regex version
# is determined by looking at the value returned by
# regexec() (man 3 regexec). If regexec return a 1 for
# success (and NOT a 0 for success) you have the older
# regex routines and must define NET2_REGEX.
# Pax may not compile if this not (un)defined properly.
SRCDIR= ${.CURDIR}/../../../../../bin/pax
PROG= pax
SRCS= ar_io.c ar_subs.c buf_subs.c cache.c cpio.c file_subs.c ftree.c\
gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c tables.c\
tar.c tty_subs.c
NOMAN=noman
BINDIR= /bin
.PATH: ${SRCDIR}
.include <bsd.prog.mk>

View File

@ -1,50 +0,0 @@
# $NetBSD: Makefile,v 1.2 1994/10/26 02:05:46 cgd Exp $
PROG= sh
NOMAN=
SRCS= alias.c builtins.c cd.c echo.c error.c eval.c exec.c expand.c \
input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
mystring.c nodes.c options.c parser.c redir.c show.c \
syntax.c trap.c output.c var.c #histedit.c
OBJS+= init.o arith.o arith_lex.o
LDADD+= -ll #-ledit -ltermcap
DPADD+= ${LIBL} #${LIBEDIT} ${LIBTERMCAP}
LFLAGS= -8 # 8-bit lex scanner for arithmetic
SRCDIR= ${.CURDIR}/../../../../../bin/sh
CFLAGS+=-DSHELL -I. -I${SRCDIR} -DNO_HISTORY
BINDIR=/bin
.PATH: ${SRCDIR} ${SRCDIR}/bltin
CLEANFILES+=\
builtins.c builtins.h init.c mkinit mknodes mksyntax \
nodes.c nodes.h syntax.c syntax.h token.def y.tab.h
.depend parser.o: token.def
token.def: mktokens
sh ${SRCDIR}/mktokens
builtins.h builtins.c: ${SRCDIR}/mkbuiltins ${SRCDIR}/builtins.def
cd ${SRCDIR}; sh mkbuiltins -h ${.OBJDIR}
init.c: mkinit ${SRCS}
./mkinit '${CC} -c ${CFLAGS} init.c' ${.ALLSRC}
touch ${.TARGET}
mkinit: ${LIBCRT0} ${SRCDIR}/mkinit.c ${LIBC} ${DPADD}
${CC} ${CFLAGS} ${LDFLAGS} ${LDSTATIC} ${SRCDIR}/mkinit.c -o $@ ${LDADD}
nodes.c nodes.h: mknodes ${SRCDIR}/nodetypes ${SRCDIR}/nodes.c.pat
./mknodes ${SRCDIR}/nodetypes ${SRCDIR}/nodes.c.pat
mknodes: ${LIBCRT0} ${SRCDIR}/mknodes.c ${LIBC} ${DPADD}
${CC} ${CFLAGS} ${LDFLAGS} ${LDSTATIC} ${SRCDIR}/mknodes.c -o $@ ${LDADD}
syntax.c syntax.h: mksyntax
./mksyntax
mksyntax: ${LIBCRT0} ${SRCDIR}/mksyntax.c ${SRCDIR}/parser.h ${LIBC} ${DPADD}
${CC} ${CFLAGS} ${LDFLAGS} ${LDSTATIC} ${SRCDIR}/mksyntax.c -o $@ ${LDADD}
.include <bsd.prog.mk>

View File

@ -1,26 +0,0 @@
# $NetBSD: Makefile,v 1.2 1994/10/26 02:05:50 cgd Exp $
SRCDIR= ${.CURDIR}/../../../../../gnu/usr.bin/tar
PROG= tar
SRCS= buffer.c create.c diffarch.c extract.c fnmatch.c getdate.y \
getoldopt.c getopt.c getopt1.c gnu.c list.c mangle.c names.c port.c \
regex.c rtapelib.c tar.c update.c version.c
CFLAGS+= -DRETSIGTYPE=void -DDIRENT=1 -DHAVE_SYS_MTIO_H=1 -DHAVE_UNISTD_H=1
CFLAGS+= -DHAVE_GETGRGID=1 -DHAVE_GETPWUID=1 -DHAVE_STRING_H=1
CFLAGS+= -DHAVE_LIMITS_H=1 -DHAVE_STRSTR=1 -DHAVE_VALLOC=1 -DHAVE_MKDIR=1
CFLAGS+= -DHAVE_MKNOD=1 -DHAVE_RENAME=1 -DHAVE_FTRUNCATE=1 -DHAVE_GETCWD=1
CFLAGS+= -DHAVE_VPRINTF=1 -DNEEDPAD -I${SRCDIR}
CFLAGS+= -DDEF_AR_FILE=\"/dev/rst0\" -DDEFBLOCKING=20
LDADD+= -lgnumalloc
DPADD+= /usr/lib/libgnumalloc.a
NOMAN=noman
CLEANFILES+=y.tab.h
BINDIR= /usr/bin
.PATH: ${SRCDIR}
.include <bsd.prog.mk>