forked from GRAVITYLab/OSUFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_defs.in
49 lines (45 loc) · 1.01 KB
/
config_defs.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# the way to set user options when configure is used is to set defaults below
# and to let configure substitute for them during the configure phase
CXX = @MPICXX@
CC = @MPICC@
ARCH = @arch@
MPI = @with_mpi@
MPE = @enable_mpe@
BIL = @enable_bil@
PNETCDF = @with_pnetcdf@
HDF5 = @with_hdf5@
ZOLTAN = @with_zoltan@
GRAPHICS = @enable_graphics@
DEBUG = @enable_debug@
BYTE_SWAP = @enable_byteswap@
WARNINGS = @enable_warnings@
HDF_INC = @hdf5_inc@
ZOLTAN_INC = @zoltan_inc@
NETCDF_INC = @pnetcdf_inc@
HDF_LIB = @hdf5_lib@
ZOLTAN_LIB = @zoltan_lib@
NETCDF_LIB = @pnetcdf_lib@
SO = @enable_so@
# override the user defs to force serial mode
ifeq ($(MPI), NO)
MPE = NO
BIL = NO
PNETCDF = NO
HDF5 = NO
ZOLTAN = NO
endif
# build shared object
ifeq ($(SO), YES)
FPIC = YES
endif
package = @PACKAGE_NAME@
version = @PACKAGE_VERSION@
tarname = @PACKAGE_TARNAME@
distdir = $(tarname)-$(version)
prefix = @prefix@
exec_prefix = @exec_prefix@
tarname = $(package)
distdir = $(tarname)-$(version)
bindir = @bindir@
srcdir = @srcdir@
VPATH = @srcdir@