freebsd-dev/usr.bin/compile_et/Makefile

18 lines
278 B
Makefile
Raw Normal View History

# $Id$
PROG= compile_et
SRCS= compile_et.c error_table.y
CFLAGS+= -I. -I${.CURDIR}/../libcom_err
CLEANFILES+= et_lex.lex.c
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>