aboutsummaryrefslogtreecommitdiff
path: root/src/make.configuration.defn
blob: 5fe526e242a6521170464e629e6fa7077966ef0b (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 IOPanda

# make sure that IOPanda was configured with PUGH and MPI

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

ifeq ($(strip $(MPI_LIBS)), )
$(NAME): MissingMPIinIOPanda
.pseudo: MissingMPIinIOPanda
MissingMPIinIOPanda:
	@echo "IOPanda: requires MPI"
	@echo "IOPanda: Please configure with MPI or remove IOPanda from Thornlist !"
	exit 2
endif