|
|
1.1 root 1: # sccsid = "@(#)Makefile 1.3 (Berkeley) 2/20/81"
2: #
3: # dump.h header file
4: # dumpitime.c reads /etc/ddate
5: # dumpmain.c driver
6: # dumpoptr.c operator interface
7: # dumptape.c handles the mag tape and opening/closing
8: # dumptraverse.c traverses the file system
9: # unctime.c undo ctime
10: #
11: # DEBUG use local directory to find ddate and dumpdates
12: # TDEBUG trace out the process forking
13: #
14: PSRCS = \
15: dump.h dumpmain.c dumptraverse.c dumptape.c dumpoptr.c dumpitime.c
16:
17: SRCS = \
18: dump.h dumpitime.c \
19: dumpmain.c dumpoptr.c dumptape.c \
20: dumptraverse.c unctime.c
21:
22: OBJS = \
23: dumpitime.o \
24: dumpmain.o dumpoptr.o \
25: dumptape.o dumptraverse.o unctime.o
26:
27: DFLAGS =
28: CFLAGS = -O $(DFLAGS)
29:
30: dump: $(OBJS)
31: $(CC) $(CFLAGS) $(OBJS) -o dump
32: install: dump
33: strip dump
34: mv dump $(DESTDIR)/etc
35: clean:
36: rm -f *.o dump
37:
38: lint:
39: lint $(DFLAGS) $(SRCS)
40:
41: psrcs:
42: echo $(PSRCS)
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.