--- trunk/libf/nag_tools.mk 2008/03/31 12:24:17 7 +++ trunk/Compilation/nag_rules.mk 2014/04/01 17:27:47 94 @@ -3,21 +3,25 @@ # Compiled modules created by NAG are needed. -.PHONY: objects +.PHONY: all_nag objects + +all_nag: objects CG_ce0l CG_gcm CR_ce0l CR_gcm objects: ${objects} -# (useful for NAG module builder) -# Call graph: -CG_etat0_lim: ${sources_etat0_lim} - @nag_fcalls95 ${nag_fcalls_options} -listing $@ $^ +# Call graphs: +CG_ce0l: ${common_sources} ${src_ce0l_only} + nag_fcalls95 ${nag_fcalls_options} -listing $@ $^ -CG_gcm: ${sources_gcm} - @nag_fcalls95 ${nag_fcalls_options} -listing $@ $^ +CG_gcm: ${common_sources} ${src_gcm_only} + nag_fcalls95 ${nag_fcalls_options} -listing $@ $^ # Cross references: -CR_etat0_lim: ${sources_etat0_lim} - @nag_xref95 ${nag_cross_options} -listing $@ $^ +CR_ce0l: ${common_sources} ${src_ce0l_only} + nag_xref95 ${nag_cross_options} -listing $@ $^ + +CR_gcm: ${common_sources} ${src_gcm_only} + nag_xref95 ${nag_cross_options} -listing $@ $^ .PHONY: clean_nag clean_nag: - rm -f CG_etat0_lim CG_gcm CR_etat0_lim + rm -f CG_ce0l CG_gcm CR_ce0l CR_gcm