Initial revision

This commit is contained in:
ceriel
1986-11-24 20:58:35 +00:00
parent 374d4aac17
commit 0e38359528
11 changed files with 1356 additions and 0 deletions

41
mach/pdp/top/Makefile Normal file
View File

@@ -0,0 +1,41 @@
EM=../../..
PREFLAGS=-I.
PFLAGS=
CFLAGS=$(PREFLAGS) $(PFLAGS) -O
LDFLAGS=-i $(PFLAGS)
LINTOPTS=-hbxac
CDIR=$(EM)/mach/proto/top
CFILES=$(CDIR)/top.c $(CDIR)/queue.c gen.c
OFILES=top.o queue.o gen.o
all: gen.c
make top
top: $(OFILES)
$(CC) $(LDFLAGS) $(OFILES) $(LIBS) -o top
top.o: $(CDIR)/top.c
$(CC) -c $(CFLAGS) $(CDIR)/top.c
queue.o: $(CDIR)/queue.c
$(CC) -c $(CFLAGS) $(CDIR)/queue.c
install: all
$(EM)/mach/install top
cmp: all
-$(EM)/mach/compare top
gen.c: table
$(EM)/lib/topgen table
lint: $(CFILES)
lint $(LINTOPTS) $(PREFLAGS) $(CFILES)
clean:
rm -f *.o gen.c gen.h top
top.o: gen.h
top.o: $(CDIR)/top.h
top.o: $(CDIR)/queue.h
queue.o: $(CDIR)/queue.h