From: Bill Joy Date: Tue, 14 Oct 1980 09:30:22 +0000 (-0800) Subject: date and time created 80/10/13 17:30:22 by root X-Git-Tag: BSD-4^3~319 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/5e19f2d7a07ebb860a250f789fba05fdcb349d93 date and time created 80/10/13 17:30:22 by root SCCS-vsn: old/dump.4.1/Makefile 1.1 SCCS-vsn: sbin/dump/Makefile 1.1 --- diff --git a/usr/src/old/dump.4.1/Makefile b/usr/src/old/dump.4.1/Makefile new file mode 100644 index 0000000000..c4ffd03748 --- /dev/null +++ b/usr/src/old/dump.4.1/Makefile @@ -0,0 +1,43 @@ +# sccsid = "@(#)Makefile 1.1 (Berkeley) %G%" +# +# dump.h header file +# dumpitime.c reads /etc/ddate +# dumpmain.c driver +# dumpoptr.c operator interface +# dumptape.c handles the mag tape and opening/closing +# dumptraverse.c traverses the file system +# unctime.c undo ctime +# +# DEBUG use local directory to find ddate and dumpdates +# TDEBUG trace out the process forking +# +PSRCS = \ + dump.h dumpmain.c dumptraverse.c dumptape.c dumpoptr.c dumpitime.c + +SRCS = \ + dump.h dumpitime.c \ + dumpmain.c dumpoptr.c dumptape.c \ + dumptraverse.c unctime.c + +OBJS = \ + dumpitime.o \ + dumpmain.o dumpoptr.o \ + dumptape.o dumptraverse.o unctime.o + +DFLAGS = -DERNIE +CFLAGS = -O $(DFLAGS) + +dump: $(OBJS) + $(CC) $(CFLAGS) $(OBJS) -o dump +install: + install -s dump $(DESTDIR)/bin +/etc/dump: + cp dump.csh $(DESTDIR)/etc/dump +clean: + rm -f *.o dump + +lint: + lint $(DFLAGS) $(SRCS) + +psrcs: + echo $(PSRCS) diff --git a/usr/src/sbin/dump/Makefile b/usr/src/sbin/dump/Makefile new file mode 100644 index 0000000000..c4ffd03748 --- /dev/null +++ b/usr/src/sbin/dump/Makefile @@ -0,0 +1,43 @@ +# sccsid = "@(#)Makefile 1.1 (Berkeley) %G%" +# +# dump.h header file +# dumpitime.c reads /etc/ddate +# dumpmain.c driver +# dumpoptr.c operator interface +# dumptape.c handles the mag tape and opening/closing +# dumptraverse.c traverses the file system +# unctime.c undo ctime +# +# DEBUG use local directory to find ddate and dumpdates +# TDEBUG trace out the process forking +# +PSRCS = \ + dump.h dumpmain.c dumptraverse.c dumptape.c dumpoptr.c dumpitime.c + +SRCS = \ + dump.h dumpitime.c \ + dumpmain.c dumpoptr.c dumptape.c \ + dumptraverse.c unctime.c + +OBJS = \ + dumpitime.o \ + dumpmain.o dumpoptr.o \ + dumptape.o dumptraverse.o unctime.o + +DFLAGS = -DERNIE +CFLAGS = -O $(DFLAGS) + +dump: $(OBJS) + $(CC) $(CFLAGS) $(OBJS) -o dump +install: + install -s dump $(DESTDIR)/bin +/etc/dump: + cp dump.csh $(DESTDIR)/etc/dump +clean: + rm -f *.o dump + +lint: + lint $(DFLAGS) $(SRCS) + +psrcs: + echo $(PSRCS)