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

Last change on this file since 3396 was 3395, checked in by eckhard, 5 years ago

inifor: Added computation of geostrophic winds from COSMO input

  • 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#
23#
24# Former revisions:
25# -----------------
26# $Id: Makefile.ifort 3395 2018-10-22 17:32:49Z eckhard $
27# Updated build order
28#
29# 3183 2018-07-27 14:25:55Z suehring
30# Added __netcdf4 preprocessor flag
31# Corrected compilation order
32#
33#
34# 3182 2018-07-27 13:36:03Z suehring
35# Initial revision
36#
37#
38#
39# Authors:
40# --------
41# @author Eckhard Kadasch
42#
43# Description:
44# ------------
45# This file serves as a templete makefile for compiling INIFOR with ifort.
46#------------------------------------------------------------------------------#
47PROJECT = inifor
48PROJECT_PATH = .
49BIN_PATH  = $(PROJECT_PATH)/../../SCRIPTS
50SRC_PATH  = $(PROJECT_PATH)/src
51TEST_PATH = $(PROJECT_PATH)/tests
52
53MODULES = $(SRC_PATH)/defs.mod $(SRC_PATH)/types.mod $(SRC_PATH)/util.mod $(SRC_PATH)/control.mod $(SRC_PATH)/transform.mod $(SRC_PATH)/io.mod $(SRC_PATH)/grid.mod
54SOURCES = $(MODULES:%.mod=%.f90) $(SRC_PATH)/$(PROJECT).f90
55OBJECTS = $(SOURCES:%.f90=%.o)
56
57FC      = ifort
58FFLAGS  = -g -real-size 64 -no-wrap-margin -cpp -D__netcdf4
59INCLUDE = -I/usr/local/pkg/netcdf/4.3.2/include
60LIBRARY = -L/usr/local/pkg/netcdf/4.3.2/lib -lnetcdff
61
62.PHONY: all clean doc run tags test test-verbose $(PROJECT)
63
64$(PROJECT): $(OBJECTS) $(MODULES) tags
65        @echo ""
66        mkdir -p $(BIN_PATH)
67        $(FC) $(FFLAGS) $(OBJECTS) -o $(BIN_PATH)/$(PROJECT) -I$(SRC_PATH) $(LIBRARY)
68
69$(SRC_PATH)/%.o: $(SRC_PATH)/%.f90
70        @echo ""
71        $(FC) $(FFLAGS) -c $< -o $@ -module $(SRC_PATH) $(INCLUDE)
72
73$(SRC_PATH)/%.mod: $(SRC_PATH)/%.f90
74        @echo ""
75        $(FC) $(FFLAGS) -c $< -o $(@:%.mod=%.o) -module $(SRC_PATH) $(INCLUDE)
76
77all: clean $(PROJECT) test doc
78
79clean:
80        @echo ""
81        rm -rf $(OBJECTS) $(MODULES) $(BIN_PATH)/$(PROJECT)
82        rm -rf *.mod *.o
83        rm -rf ./doc/latex ./doc/html
84        rm -f $(SRC_PATH)/tags
85        $(MAKE) -C $(TEST_PATH) clean
86        $(MAKE) -C $(SRC_PATH) clean
87
88doc:
89        @echo ""
90        doxygen ./doc/doxygen.config
91
92run: $(PROJECT)
93        @echo ""
94        $(BIN_PATH)/$(PROJECT)
95
96tags:
97        @echo ""
98        $(MAKE) -C $(SRC_PATH) tags
99
100test:
101        @echo "Running tests"
102        $(MAKE) -C $(TEST_PATH) test | grep Test
103        @echo "...done testing"
104
105test-verbose:
106        @echo "Running tests"
107        $(MAKE) -C $(TEST_PATH) test
108        @echo "...done testing"
Note: See TracBrowser for help on using the repository browser.