summaryrefslogtreecommitdiff
path: root/usr.bin/asn1_compile/Makefile
diff options
context:
space:
mode:
authorHans Insulander <hin@cvs.openbsd.org>2003-05-11 21:36:34 +0000
committerHans Insulander <hin@cvs.openbsd.org>2003-05-11 21:36:34 +0000
commitc78150a12d3479dccfded58f1a4fcafdbff68146 (patch)
treeb4b29b00ca76dd03e9fef5283b7a8979d66284d2 /usr.bin/asn1_compile/Makefile
parent516a12bfc498d29181db609ad1a42af093fef04f (diff)
asn1_compile, made independant from libroken and the rest of the
kerberosV stuff. Suggested by deraadt@
Diffstat (limited to 'usr.bin/asn1_compile/Makefile')
-rw-r--r--usr.bin/asn1_compile/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/usr.bin/asn1_compile/Makefile b/usr.bin/asn1_compile/Makefile
new file mode 100644
index 00000000000..ce1e2acb764
--- /dev/null
+++ b/usr.bin/asn1_compile/Makefile
@@ -0,0 +1,16 @@
+# $OpenBSD: Makefile,v 1.1 2003/05/11 21:36:33 hin Exp $
+
+PROG= asn1_compile
+NOMAN=
+SRCS= parse.c lex.l main.c hash.c symbol.c gen.c \
+ gen_encode.c gen_decode.c gen_free.c gen_length.c gen_copy.c \
+ gen_glue.c getarg.c
+
+CFLAGS+=-I. -DFALSE=0 -DTRUE=1
+
+CLEANFILES= parse.[ch] lex.c
+
+parse.h parse.c: parse.y
+ ${YACC} -d -o parse.c ${.ALLSRC}
+
+.include <bsd.prog.mk>