forked from gmcgarragh/seviri_util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.inc.example
31 lines (24 loc) · 1.01 KB
/
make.inc.example
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
# C compiler and C compiler flags
CC = gcc
CCFLAGS = -O2
# Fortran compiler and Fortan compiler flags (required for the Fortran
# interface)
F90 = gfortran
F90FLAGS = -O2
LINKS = -lm
# Uncomment to compile the Fortran interface and examples
# OBJECTS += seviri_util_f90.o
# OPTIONAL_TARGETS += example_f90
# Uncomment to compile the IDL DLM interface and examples
# CCFLAGS += -fPIC
# INCDIRS += -I${HOME}/opt/exelis/idl/external
# OPTIONAL_TARGETS += seviri_util_dlm.so
# Uncomment to compile the Python interface and examples
# CCFLAGS += -fPIC
# OPTIONAL_TARGETS += seviri_util.so
# Uncomment to compile optional utilities that may have external dependencies
# OPTIONAL_TARGETS += SEVIRI_util
# Include and lib directories for non standard locations required by SEVIRI_util
# INCDIRS += -I$(HOME)/opt/hdf5/include -I$(HOME)/opt/netcdf/include
# LIBDIRS += -L$(HOME)/opt/hdf5/lib -L$(HOME)/opt/netcdf/lib
# LINKS += -lhdf5 -lnetcdf -ltiff -lm