# make.configuration.defn for NaNChecker # make sure that isnan(3) is available on this architecture HAVE_ISNAN := $(shell grep HAVE_ISNAN $(CONFIG)/cctk_Config.h) ifneq (define, $(findstring define,$(HAVE_ISNAN))) $(NAME): MissingIsNaN .pseudo: MissingIsNaN MissingIsNaN: @echo "Thorn NaNChecker requires isnan(3) which is not available on this architecture." @echo "Please remove NaNChecker from your ThornList !" exit 2 endif