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

# make sure that IOFlexIO was configured with IEEEIO and PUGH

ifeq ($(findstring external/IEEEIO,$(THORNS)),)
.pseudo: MissingIEEEIOinFlexIO
MissingIEEEIOinFlexIO:
	@echo "IOFlexIO: requires IEEEIO"
	@echo "IOFlexIO: Please compile with thorn external/IEEEIO dir or remove IOFlexIO from Thornlist !"
	exit 2
endif

ifeq ($(findstring CactusPUGH/PUGH,$(THORNS)),)
.pseudo: MissingPUGHinIOFlexIO
MissingPUGHinIOFlexIO:
	@echo "IOFlexIO: requires PUGH"
	@echo "IOFlexIO: Please compile with thorn CactusPUGH/PUGH or remove IOFlexIO from Thornlist !"
	exit 2
endif