aboutsummaryrefslogtreecommitdiff
path: root/Carpet/CarpetLib/src/make.configuration.defn
blob: 50a8bf329c9938d03e0c4330e28f5174446441d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Main make.configuration.defn file for thorn CarpetLib   -*-Makefile-*-
# $Header: /home/eschnett/C/carpet/Carpet/Carpet/CarpetLib/src/make.configuration.defn,v 1.2 2002/09/01 18:36:48 schnetter Exp $

# Ensure that MPI is available
ifeq ($(origin MPI_LIBS),undefined)
$(NAME): MissingMPI
.PHONY: MissingMPI
MissingMPI:
	@echo "Configuration error:"
	@echo "Thorn CarpetLib requires MPI"
	@echo "Please configure with MPI, or remove CarpetLib from ThornList"
	exit 2
endif