#-----------------------------------------------------------------------------#

THIS_DIR = hard_coded/purity

#-----------------------------------------------------------------------------#

PURITY_PROGS= \
	impure_func_t1 \
	impure_func_t5_fixed2 \
	impure_func_t6 \
	impure_pred_t1_fixed3 \
	promise_pure_test \
	purity \
	purity_opt

# We currently don't do any testing in grade java on this directory.
ifneq "$(findstring java,$(GRADE))" ""
	PROGS=
else
	PROGS=$(PURITY_PROGS)
endif

TESTS = $(PROGS)
SUBDIRS=
TESTS_DIR=../..
include $(TESTS_DIR)/Mmake.common

# Module-specific options should go in Mercury.options so they
# can be found by `mmc --make'.
include Mercury.options

%.runtest: %.res ;

#-----------------------------------------------------------------------------#
