diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-22 14:00:46 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-07-22 15:01:40 +0200 |
commit | f412ab6995052037f383ace7145f930d4c8609d2 (patch) | |
tree | 1a5d546b5dcad382a90512b1e5c22659237609b5 /lib | |
parent | f4b7b159dd3e532e6351721a588a31da6e642ece (diff) | |
download | automake-f412ab6995052037f383ace7145f930d4c8609d2.tar.gz |
[ng] rename: am__skiplex -> am.lex.maybe-skip
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/am/lex.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/am/lex.am b/lib/am/lex.am index 038c125bb..cc443ca34 100644 --- a/lib/am/lex.am +++ b/lib/am/lex.am @@ -14,16 +14,16 @@ ## You should have received a copy of the GNU General Public License ## along with this program. If not, see <http://www.gnu.org/licenses/>. -## See the comment about am__skipyacc in yacc.am. +## See the comment about am.yacc.maybe-skip in yacc.am. if %?MAINTAINER-MODE% if %?FIRST% -@MAINTAINER_MODE_FALSE@am__skiplex = test -f $@ || +@MAINTAINER_MODE_FALSE@am.lex.maybe-skip = test -f $@ || endif %?FIRST% endif %?MAINTAINER-MODE% ?GENERIC?%%DERIVED-EXT%: %%EXT% ?!GENERIC?%OBJ%: %SOURCE% %SILENT%test -d $(dir $@) || $(MKDIR_P) $(dir $@) -?GENERIC? %VERBOSE%$(am__skiplex) \ -?!GENERIC??DIST_SOURCE? %VERBOSE%$(am__skiplex) \ +?GENERIC? %VERBOSE%$(am.lex.maybe-skip) \ +?!GENERIC??DIST_SOURCE? %VERBOSE%$(am.lex.maybe-skip) \ $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c %OBJ% -- %COMPILE% |