[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / compile_et

Annotation of src/usr.bin/compile_et/Makefile, Revision 1.2

1.2     ! hin         1: #      $OpenBSD: Makefile,v 1.1 1996/11/11 05:06:33 downsj Exp $
1.1       downsj      2:
                      3: PROG=  compile_et
1.2     ! hin         4: SRCS=  compile_et.c error_table.c et_lex.lex.l
1.1       downsj      5: CFLAGS+=-I. -I${.CURDIR} -I${.CURDIR}/../../lib/libcom_err
                      6: DPADD= ${LIBL}
                      7: LDADD= -ll
1.2     ! hin         8: CLEANFILES=error_table.h error_table.c y.tab.h et_lex.lex.c
        !             9:
        !            10: error_table.h error_table.c:   error_table.y
        !            11:         ${YACC} -d -o error_table.c ${.CURDIR}/error_table.y
1.1       downsj     12:
                     13: beforedepend:  et_lex.lex.c
                     14: error_table.o: et_lex.lex.c
                     15:
                     16: .include <bsd.prog.mk>