source: palm/trunk/UTIL/inifor/Makefile.ifort @ 3182

Last change on this file since 3182 was 3182, checked in by suehring, 6 years ago

New Inifor features: grid stretching, improved command-interface, support start dates in different formats in both YYYYMMDD and YYYYMMDDHH, Ability to manually control input file prefixes (--radiation-prefix, --soil-preifx, --flow-prefix, --soilmoisture-prefix) for compatiblity with DWD forcast naming scheme; GNU-style short and long option; Prepared output of large-scale forcing profiles (no computation yet); Added preprocessor flag netcdf4 to switch output format between netCDF 3 and 4; Updated netCDF variable names and attributes to comply with PIDS v1.9; Inifor bugfixes: Improved compatibility with older Intel Intel compilers by avoiding implicit array allocation; Added origin_lon/_lat values and correct reference time in dynamic driver global attributes; corresponding PALM changes: adjustments to revised Inifor; variables names in dynamic driver adjusted; enable geostrophic forcing also in offline nested mode; variable names in LES-LES and COSMO offline nesting changed; lateral boundary flags for nesting, in- and outflow conditions renamed

  • Property svn:keywords set to Id
File size: 2.9 KB
Line 
1#------------------------------------------------------------------------------#
2# This file is part of the PALM model system.
3#
4# PALM is free software: you can redistribute it and/or modify it under the
5# terms of the GNU General Public License as published by the Free Software
6# Foundation, either version 3 of the License, or (at your option) any later
7# version.
8#
9# PALM is distributed in the hope that it will be useful, but WITHOUT ANY
10# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License along with
14# PALM. If not, see <http://www.gnu.org/licenses/>.
15#
16# Copyright 2017-2018 Leibniz Universitaet Hannover
17# Copyright 2017-2018 Deutscher Wetterdienst Offenbach
18#------------------------------------------------------------------------------#
19#
20# Current revisions:
21# -----------------
22# Added __netcdf4 preprocessor flag
23# Corrected compilation order
24#
25#
26# Former revisions:
27# -----------------
28# $Id: Makefile.ifort 3182 2018-07-27 13:36:03Z suehring $
29# Initial revision
30#
31#
32#
33# Authors:
34# --------
35# @author Eckhard Kadasch
36#
37# Description:
38# ------------
39# This file serves as a templete makefile for compiling INIFOR with ifort.
40#------------------------------------------------------------------------------#
41PROJECT = inifor
42PROJECT_PATH = .
43BIN_PATH  = $(PROJECT_PATH)/bin
44SRC_PATH  = $(PROJECT_PATH)/src
45TEST_PATH = $(PROJECT_PATH)/tests
46
47MODULES = $(SRC_PATH)/defs.mod $(SRC_PATH)/util.mod $(SRC_PATH)/control.mod $(SRC_PATH)/types.mod $(SRC_PATH)/transform.mod $(SRC_PATH)/io.mod $(SRC_PATH)/grid.mod
48SOURCES = $(MODULES:%.mod=%.f90) $(SRC_PATH)/$(PROJECT).f90
49OBJECTS = $(SOURCES:%.f90=%.o)
50
51FC      = ifort
52FFLAGS  = -g -real-size 64 -no-wrap-margin -cpp -D__netcdf4
53INCLUDE = -I/usr/local/pkg/netcdf/4.3.2/include
54LIBRARY = -L/usr/local/pkg/netcdf/4.3.2/lib -lnetcdff
55
56.PHONY: all clean doc run tags test test-verbose $(PROJECT)
57
58$(PROJECT): $(OBJECTS) $(MODULES) tags
59        @echo ""
60        mkdir -p $(BIN_PATH)
61        $(FC) $(FFLAGS) $(OBJECTS) -o $(BIN_PATH)/$(PROJECT) -I$(SRC_PATH) $(LIBRARY)
62
63$(SRC_PATH)/%.o: $(SRC_PATH)/%.f90
64        @echo ""
65        $(FC) $(FFLAGS) -c $< -o $@ -module $(SRC_PATH) $(INCLUDE)
66
67$(SRC_PATH)/%.mod: $(SRC_PATH)/%.f90
68        @echo ""
69        $(FC) $(FFLAGS) -c $< -o $(@:%.mod=%.o) -module $(SRC_PATH) $(INCLUDE)
70
71all: clean $(PROJECT) test doc
72
73clean:
74        @echo ""
75        rm -rf $(OBJECTS) $(MODULES) $(BIN_PATH)/$(PROJECT)
76        rm -rf *.mod *.o
77        rm -rf ./doc/latex ./doc/html
78        rm -f $(SRC_PATH)/tags
79        $(MAKE) -C $(TEST_PATH) clean
80        $(MAKE) -C $(SRC_PATH) clean
81
82doc:
83        @echo ""
84        doxygen ./doc/doxygen.config
85
86run: $(PROJECT)
87        @echo ""
88        $(BIN_PATH)/$(PROJECT)
89
90tags:
91        @echo ""
92        $(MAKE) -C $(SRC_PATH) tags
93
94test:
95        @echo "Running tests"
96        $(MAKE) -C $(TEST_PATH) test | grep Test
97        @echo "...done testing"
98
99test-verbose:
100        @echo "Running tests"
101        $(MAKE) -C $(TEST_PATH) test
102        @echo "...done testing"
Note: See TracBrowser for help on using the repository browser.