diff options
author | 2012-07-11 21:30:07 +0000 | |
---|---|---|
committer | 2012-07-11 21:30:07 +0000 | |
commit | 39007669f90153eb39f6c58298886e5213d8fe3b (patch) | |
tree | 0eea3af1dd25f22246fd69eb11e87da6eba7dc90 | |
parent | sync (diff) | |
download | wireguard-openbsd-39007669f90153eb39f6c58298886e5213d8fe3b.tar.xz wireguard-openbsd-39007669f90153eb39f6c58298886e5213d8fe3b.zip |
make -j# fix, I had this forever actually.
okay millert@
-rw-r--r-- | lib/libkeynote/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/libkeynote/Makefile b/lib/libkeynote/Makefile index 08cb415fabe..84c5b19eae6 100644 --- a/lib/libkeynote/Makefile +++ b/lib/libkeynote/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.16 2005/11/24 20:49:18 deraadt Exp $ +# $OpenBSD: Makefile,v 1.17 2012/07/11 21:30:07 espie Exp $ LIB= keynote WANTLINT= @@ -25,11 +25,14 @@ HDRS= keynote.h SRCS= k.tab.c lex.kn.c environment.c parse_assertion.c signature.c auxil.c \ base64.c -CLEANFILES+= k.tab.c lex.kn.c k.tab.h +CLEANFILES+= k.tab.c lex.kn.c k.tab.h stamp_k -k.tab.c: keynote.y keynote.h signature.h +stamp_k: keynote.y keynote.h signature.h + touch $@ $(YACC.y) $(YACCFLAGS) ${.CURDIR}/keynote.y +k.tab.c k.tab.h: stamp_k + lex.kn.c: keynote.l keynote.y keynote.h assertion.h signature.h $(LEX.l) $(LEXFLAGS) ${.CURDIR}/keynote.l |