Makefile revision 6255
1#	$Id: Makefile,v 1.4 1995/01/14 22:30:32 wollman Exp $
2
3PROG=	compile_et
4SRCS=	compile_et.c error_table.y
5CFLAGS+=	-I. -I${.CURDIR}/../../lib/libcom_err
6CLEANFILES+=	et_lex.lex.c y.tab.h
7DPADD+=	${LIBL}
8LDADD+=	-ll
9
10beforedepend:	et_lex.lex.c
11error_table.o:	et_lex.lex.c
12
13.l.c:
14	${LEX} -l -t ${.IMPSRC} > ${.TARGET}
15
16.include <bsd.prog.mk>
17
18