source: palm/trunk/UTIL/inifor/Makefile.gnu @ 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: 3.0 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.gnu 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 gfortran.
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      = gfortran
52WRNGS   = -Wall -Wextra -Wsurprising -Waliasing -Wcharacter-truncation \
53                  -Wline-truncation -fbacktrace -fcheck=all -pedantic \
54                  -ffpe-trap=invalid,zero,underflow,overflow
55FFLAGS  = -fdefault-real-8 -Og -g $(WRNGS) -cpp -D__netcdf4
56INCLUDE = -I/home/ekadasch/local/include
57LIBRARY = -L/home/ekadasch/local/lib64 -lnetcdff
58
59.PHONY: all clean doc run tags test test-verbose $(PROJECT)
60
61$(PROJECT): $(OBJECTS) $(MODULES) tags
62        @echo ""
63        mkdir -p $(BIN_PATH)
64        $(FC) $(FFLAGS) $(OBJECTS) -o $(BIN_PATH)/$(PROJECT) -I$(SRC_PATH) $(LIBRARY)
65
66$(SRC_PATH)/%.o: $(SRC_PATH)/%.f90
67        @echo ""
68        $(FC) $(FFLAGS) -c $< -o $@ -J$(SRC_PATH) $(INCLUDE)
69
70$(SRC_PATH)/%.mod: $(SRC_PATH)/%.f90
71        @echo ""
72        $(FC) $(FFLAGS) -c $< -o $(@:%.mod=%.o) -J$(SRC_PATH) $(INCLUDE)
73
74all: clean $(PROJECT) test doc
75
76clean:
77        @echo ""
78        rm -rf $(OBJECTS) $(MODULES) $(BIN_PATH)/$(PROJECT)
79        rm -rf *.mod *.o
80        rm -rf ./doc/latex ./doc/html
81        rm -f $(SRC_PATH)/tags
82        $(MAKE) -C $(TEST_PATH) clean
83        $(MAKE) -C $(SRC_PATH) clean
84
85doc:
86        @echo ""
87        doxygen ./doc/doxygen.config
88
89run: $(PROJECT)
90        @echo ""
91        $(BIN_PATH)/$(PROJECT)
92
93tags:
94        @echo ""
95        $(MAKE) -C $(SRC_PATH) tags
96
97test:
98        @echo "Running tests"
99        $(MAKE) -C $(TEST_PATH) test | grep Test
100        @echo "...done testing"
101
102test-verbose:
103        @echo "Running tests"
104        $(MAKE) -C $(TEST_PATH) test
105        @echo "...done testing"
Note: See TracBrowser for help on using the repository browser.