diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2012-12-21 08:50:28 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2012-12-21 08:50:28 +0000 |
commit | 3383500a588173e0d4315551d05a352e39861694 (patch) | |
tree | ed70c12c0fe75d66f0c03ae7ca2eb576637f270c /lib/libkeynote | |
parent | a35e820400998b878e37bfd59b64a8525b00e462 (diff) |
remove makefile hacks that are no longer needed with t1 t2: working properly
okay krw@
Diffstat (limited to 'lib/libkeynote')
-rw-r--r-- | lib/libkeynote/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/libkeynote/Makefile b/lib/libkeynote/Makefile index f9b467b07d9..1f1291028e2 100644 --- a/lib/libkeynote/Makefile +++ b/lib/libkeynote/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2012/08/02 13:38:38 okan Exp $ +# $OpenBSD: Makefile,v 1.19 2012/12/21 08:50:27 espie Exp $ LIB= keynote MAN= keynote.3 keynote.4 keynote.5 @@ -24,14 +24,11 @@ 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 stamp_k +CLEANFILES+= k.tab.c lex.kn.c k.tab.h -stamp_k: keynote.y keynote.h signature.h - touch $@ +k.tab.c k.tab.h: keynote.y keynote.h signature.h $(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 |