-
Notifications
You must be signed in to change notification settings - Fork 1
/
def.mk.in
78 lines (67 loc) · 2.25 KB
/
def.mk.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
###########################################################################
# Copyright (C) 2009 Swedish Meteorological and Hydrological Institute, SMHI,
#
# This file is part of HLHDF.
#
# HLHDF is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# HLHDF is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with HLHDF. If not, see <http://www.gnu.org/licenses/>.
###########################################################################
############################################################
#
# $Id: def.mk.in,v 1.4 2008/03/25 12:30:34 adybbroe Exp $
#
# Description: MK file to be included by the Makefiles that
# are using the HLHDF distribution.
#
# Author(s): Anders Henja
#
# Copyright: Swedish Meteorological and Hydrological Institute, 2000
#
# History: 2000-03-22 Created by Anders Henja
############################################################
srcdir = @srcdir@
prefix = @prefix@
VPATH = @srcdir@
CC= @CC@
F77= @F77@
RANLIB= @RANLIB@
AR= @AR@
COMPILE_FOR_PYTHON= @COMPILE_FOR_PYTHON@
PYTHON_BINARY=@PYTHON_BINARY@
OPTS= @PYOPT@
LDFLAGS= @PYLDFLAGS@
LDSHARED= @PYLDSHARED@
CCSHARED= @PYCCSHARED@
DEFS= @PYDEFS@
INCLUDE_PYTHON= @PY_INCLUDES@
SITEPACK_PYTHON= @PY_SITEPACK@
PY_LIBDIR= @PY_LIBDIR@
NUMPY_INCLUDE_DIR=@NUMPY_INCLUDE_DIR@
LD_FORCE_SHARE=@LINKER_FORCED_SHARED@
LD_FORCE_STATIC=@LINKER_FORCED_STATIC@
FORTRAN_CLINK_LIBS=@FORTRAN_CLINK_LIBS@
FORTRAN_CLINK_LDFLAG=@FORTRAN_CLINK_LDFLAG@
GOT_SZ_COMPRESS= @GOT_SZ_COMPRESS@
SZLIB_INCDIR= @SZLIB_INCDIR@
SZLIB_LIBDIR= @SZLIB_LIBDIR@
ifeq ($(GOT_SZ_COMPRESS),yes)
OPTS:= -DGOT_SZ_COMPRESS
endif
ZLIB_INCDIR= @ZLIB_INCDIR@
ZLIB_LIBDIR= @ZLIB_LIBDIR@
HDF5_INCDIR= @HDF5_INCDIR@
HDF5_LIBDIR= @HDF5_LIBDIR@
HDF5_VERSION_CFLAG = @HDF5_VERSION_CFLAG@
HLHDF_VERSION= @HLHDF_VERSION@
HLHDF_PATCH_LEVEL=@HLHDF_PATCH_LEVEL@
HL_INSTALL= @HL_INSTALL@