head     1.3;
access   ;
symbols  ;
locks    bin:1.3;
comment  @@;


1.3
date     91.03.14.15.44.38;  author bin;  state Exp;
branches ;
next	1.2;

1.2
date     91.02.21.20.22.23;  author bin;  state Exp;
branches ;
next	1.1;

1.1
date     91.02.08.15.39.02;  author bin;  state Exp;
branches ;
next	;


desc
@initial version provided by steve ness
@


1.3
log
@bob h added destdir
@
text
@DESTDIR=/f1/bin/
# /usr/src/make/Makefile 2/14/91
# make's Makefile for make, what else?

make:	make.o
	$(CC) $(LDFLAGS) -o $(DESTDIR)$@@ $?
	su root chown bin $(DESTDIR)make
	su root chgrp bin $(DESTDIR)make
	su root chmod 511 $(DESTDIR)make
make.o: make.c make.h

clean:
	rm make.o

# end of /usr/src/make/Makefile
@


1.2
log
@updated version provided by stevesf for v311
@
text
@d1 1
d6 4
a9 1
	$(CC) $(LDFLAGS) -o $@@ $?
@


1.1
log
@Initial revision
@
text
@d1 2
a2 4
OBJS	= make.o
CFLAGS	= -O
#For non-PDP11 systems: LDFLAGS = -n -i
LDFLAGS	= -i
d4 3
a6 2
make:	$(OBJS)
	$(CC) $(LDFLAGS) $(OBJS) -o make
d8 2
a9 1
make.o: make.h make.c
d11 1
a11 9
make.v.o:
	exec version `pwd` make make.c make.h > make.v.s
	exec as -o make.v.o make.v.s
	exec rm make.v.s

install:	make makemacros makeactions
	exec /bin/cp make /bin
	exec /bin/cp makemacros makeactions /usr/lib

@
