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


1.4
date     91.03.14.20.40.54;  author bin;  state Exp;
branches ;
next	1.3;

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

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

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


desc
@initial version provided by steve ness
@


1.4
log
@bob h added chmod chown ...
@
text
@# lex/Makefile 2/6/91
# Does not include header file dependencies.
DESTDIR=/f1/bin/
SRC=/newbits/bin/lex

OBJ=\
	lex0.o\
	lex1.o\
	lex2.o\
	lex3.o

# Primary target.
lex:	$(OBJ)
	cc -o $(DESTDIR)$@@ $(OBJ)
	su root chown bin $(DESTDIR)$@@
	su root chgrp bin $(DESTDIR)$@@
	su root chmod 511 $(DESTDIR)$@@

# Secondary targets.
lex0.o:	$(SRC)/lex0.c
lex1.o:	$(SRC)/lex1.c
lex2.o:	$(SRC)/lex2.c
lex3.o:	$(SRC)/lex3.c

clean:
	rm $O

# end of lex/Makefile
@


1.3
log
@bob h added destdir
@
text
@d15 3
@


1.2
log
@updated version provided by stevesf for v311
@
text
@d3 2
a5 2
SRC=/usr.src/cmd/lex

d14 1
a14 1
	cc -o $@@ $(OBJ)
@


1.1
log
@Initial revision
@
text
@d1 1
a1 1
# lex/Makefile 12/13/90
d4 3
a6 1
O=\
d12 3
a14 2
lex:	$O
	cc -o $@@ $O
d16 6
d24 2
@
