1# From: @(#)Makefile 5.1 (Berkeley) 6/25/90 2# $Id: Makefile,v 1.2 1994/07/19 19:21:23 g89r4222 Exp $ 3 4PROG= compile_et 5CFLAGS+=-I. -I${.CURDIR} 6SRCS= compile_et.c error_message.c et_name.c init_et.c perror.c 7OBJS+= error_table.o 8DPADD= ${LIBL} 9LDADD= -ll 10CLEANFILES=et_lex.lex.c y.tab.c y.tab.h error_table.c 11NOMAN= noman 12 13error_table.c: et_lex.lex.c 14 15.include <bsd.prog.mk> 16