1130b656e5
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
18 lines
298 B
Makefile
18 lines
298 B
Makefile
# $FreeBSD$
|
|
|
|
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>
|
|
|