aboutsummaryrefslogtreecommitdiff
path: root/src/make.configuration.defn
blob: 135342a7a84e9baca7231f0bf25e6336cdaea5bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# make.configuration.defn for IOHDF5Util

# make sure that IOHDF5Util was configured with HDF5 and PUGH

ifeq ($(strip $(HDF5_LIBS)), )
$(NAME): MissingHDF5
.pseudo: MissingHDF5
MissingHDF5:
	@echo "IOHDF5Util: requires HDF5"
	@echo "IOHDF5Util: Please configure with HDF5 or remove IOHDF5Util from Thornlist !"
	exit 2
endif

ifeq ($(findstring CactusPUGH/PUGH,$(THORNS)),)
.pseudo: MissingPUGHinIOHDF5Util
MissingPUGHinIOHDF5Util:
	@echo "IOHDF5Util: requires PUGH"
	@echo "IOHDF5Util: Please add CactusPUGH/PUGH or remove IOHDF5Util from Thornlist !"
	exit 2
endif