diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2010-02-19 10:31:19 -0800 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2010-02-19 10:31:19 -0800 |
commit | 407a168dab07681ae4ac283126c8242c180b5514 (patch) | |
tree | b42fbdfee00fcba549160f601b074b85f8efa8ac /xts5 | |
parent | debb53b916a68006b4d442c4ce34124a443f8fe2 (diff) |
xts5: Fix mc silent rules like AM_V_GEN
I still can't find the issue, but AM_V_mc_ was causing make to stop on a
recursive variable. Now it's basically AM_V_GEN with s/GEN/MC/.
Diffstat (limited to 'xts5')
-rw-r--r-- | xts5/common.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xts5/common.mk b/xts5/common.mk index 6bd82550..97052ea1 100644 --- a/xts5/common.mk +++ b/xts5/common.mk @@ -7,13 +7,13 @@ # The code generator for turning .m files to .c files. SUFFIXES = .m _m.c .c MC = $(top_builddir)/xts5/src/bin/mc/mc -AM_V_mc = $(AM_V_mc_$(V)) -AM_V_mc_ = $(AM_V_mc_$(AM_DEFAULT_VERBOSITY)) -AM_V_mc_0 = @echo " MC " $@; +AM_V_MC = $(am__v_MC_$(V)) +am__v_MC_ = $(am__v_MC_$(AM_DEFAULT_VERBOSITY)) +am__v_MC_0 = @echo " MC " $@; .m.c: - $(AM_V_mc)TET_ROOT='$(abs_top_srcdir)' $(MC) -o $@ $< + $(AM_V_MC)TET_ROOT='$(abs_top_srcdir)' $(MC) -o $@ $< .m_m.c: - $(AM_V_mc)TET_ROOT='$(abs_top_srcdir)' $(MC) -m -o $@ $< + $(AM_V_MC)TET_ROOT='$(abs_top_srcdir)' $(MC) -m -o $@ $< #################### # Xtest variables |