#-----------------------------------------------------------------------------# # vim: ts=8 sw=8 noexpandtab ft=make #-----------------------------------------------------------------------------# TESTS_DIR = .. THIS_DIR = analysis_sharing MAYBE_J1 = # Delete options which are incompatible with --intermodule-analysis. # These are currently set for nightly tests. override EXTRA_MCFLAGS := $(patsubst --intermodule-opt%,,$(EXTRA_MCFLAGS)) override EXTRA_MCFLAGS := $(patsubst --transitive-%,,$(EXTRA_MCFLAGS)) #-----------------------------------------------------------------------------# ifdef WORKSPACE_HAS_SUBDIRS PROGS = sharing_m1 else PROGS = endif TESTS = $(sort $(PROGS:%=%-nodepend)) include ../Mmake.common sharing_m1.runtest: MC=$(MC) ./sharing_runtest.sh realclean_local: realclean_analysis_sharing realclean_analysis_sharing: $(RM) sharing_m1.m $(RM) -r Mercury #-----------------------------------------------------------------------------#