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

Annotation of src/usr.bin/asn1_compile/Makefile, Revision 1.1

1.1     ! hin         1: # $OpenBSD: Makefile,v 1.4 2002/05/30 20:06:23 hin Exp $
        !             2:
        !             3: PROG=  asn1_compile
        !             4: NOMAN=
        !             5: SRCS=  parse.c lex.l main.c hash.c symbol.c gen.c \
        !             6:         gen_encode.c gen_decode.c gen_free.c gen_length.c gen_copy.c \
        !             7:         gen_glue.c getarg.c
        !             8:
        !             9: CFLAGS+=-I. -DFALSE=0 -DTRUE=1
        !            10:
        !            11: CLEANFILES=    parse.[ch] lex.c
        !            12:
        !            13: parse.h parse.c:       parse.y
        !            14:        ${YACC} -d -o parse.c ${.ALLSRC}
        !            15:
        !            16: .include <bsd.prog.mk>