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