aboutsummaryrefslogtreecommitdiff
path: root/src/make.configuration.defn
blob: 448649e0736b02f9e3f7a1c91688433020a37d64 (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 in with MPI and IEEEIO

ifeq ($(findstring external/IEEEIO,$(THORNS)),)
.pseudo: MissingIEEEIOinIOPanda
MissingIEEEIOinIOPanda:
	@echo "IOPanda: requires IEEEIO"
	@echo "IOPanda: Please add external/IEEEIO 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