Initial revision

This commit is contained in:
ceriel
1988-07-22 19:01:13 +00:00
parent 05e7adc71d
commit b8880b3692
11 changed files with 1971 additions and 0 deletions

29
util/make/Makefile Normal file
View File

@@ -0,0 +1,29 @@
# Makefile for make!
EMHOME=../..
OBJS = check.o input.o macro.o main.o \
make.o reader.o rules.o
# unix not defined under Xenix ???
CFLAGS = -Dunix
all: make
install: make
cp make $(EMHOME)/bin/make
cmp: make
cmp make $(EMHOME)/bin/make
clean:
rm -f *.o make
pr:
@pr README Makefile h.h main.c check.c input.c macro.c make.c reader.c rules.c
opr:
make pr ^ opr
make: $(OBJS)
$(CC) -i -o make $(OBJS)
$(OBJS): h.h