diff options
author | 2003-05-11 21:40:50 +0000 | |
---|---|---|
committer | 2003-05-11 21:40:50 +0000 | |
commit | 800b9ad43569903b320c6bbaeb6e3944f184cbab (patch) | |
tree | 54368d0f307f0f6220a045da1bf9e7c69a94beb6 | |
parent | asn1_compile, made independant from libroken and the rest of the (diff) | |
download | wireguard-openbsd-800b9ad43569903b320c6bbaeb6e3944f184cbab.tar.xz wireguard-openbsd-800b9ad43569903b320c6bbaeb6e3944f184cbab.zip |
-I$(.CURDIR) to make it work with obj links
-rw-r--r-- | usr.bin/asn1_compile/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/asn1_compile/Makefile b/usr.bin/asn1_compile/Makefile index ce1e2acb764..bac8c42e759 100644 --- a/usr.bin/asn1_compile/Makefile +++ b/usr.bin/asn1_compile/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2003/05/11 21:36:33 hin Exp $ +# $OpenBSD: Makefile,v 1.2 2003/05/11 21:40:50 hin Exp $ PROG= asn1_compile NOMAN= @@ -6,7 +6,7 @@ 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 +CFLAGS+=-I. -I$(.CURDIR) -DFALSE=0 -DTRUE=1 CLEANFILES= parse.[ch] lex.c |