From: Todd C. Miller Date: Wed, 5 Jan 2005 22:29:06 +0000 (+0000) Subject: Fix dummied out toke.c and gram.c dependencies. X-Git-Tag: SUDO_1_7_0~743 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2fd0f3d4cebcb95fd5e6a187ac9241f1269669bb;p=sudo Fix dummied out toke.c and gram.c dependencies. --- diff --git a/Makefile.in b/Makefile.in index 6d23f0b28..a6d5826ad 100644 --- a/Makefile.in +++ b/Makefile.in @@ -191,14 +191,14 @@ sudo_noexec.la: sudo_noexec.lo @DEV@GENERATED = gram.h gram.c toke.c def_data.c def_data.h # Uncomment the $(YACC) and mv lines if you intend to modify gram.y -gram.c gram.h: gram.y +$(devdir)/gram.c gram.h: gram.y @DEV@ $(YACC) -d $(srcdir)/gram.y @DEV@ mv -f y.tab.c gram.c @DEV@ mv -f y.tab.h gram.h -@true # Uncomment the $(LEX) and mv lines if you intend to modify toke.l -toke.c: toke.l +$(devdir)/toke.c: toke.l @DEV@ $(LEX) $(srcdir)/toke.l @DEV@ mv -f lex.yy.c toke.c -@true