freebsd-dev/usr.bin/compile_et/Makefile
Jordan K. Hubbard 1130b656e5 Make the long-awaited change from $Id$ to $FreeBSD$
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.
1997-01-14 07:20:47 +00:00

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>