source: palm/trunk/UTIL/inifor/Makefile.gnu @ 2718

Last change on this file since 2718 was 2718, checked in by maronga, 6 years ago

deleting of deprecated files; headers updated where needed

  • 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.gnu 2718 2018-01-02 08:49:38Z maronga $
27# Initial revision
28#
29#
30#
31# Authors:
32# --------
33# @author Eckhard Kadasch
34#
35# Description:
36# ------------
37# This file serves as a templete makefile for compiling INIFOR with gfortran.
38#------------------------------------------------------------------------------#
39PROJECT = inifor
40PROJECT_PATH = .
41BIN_PATH  = $(PROJECT_PATH)/bin
42SRC_PATH  = $(PROJECT_PATH)/src
43TEST_PATH = $(PROJECT_PATH)/tests
44
45MODULES = $(SRC_PATH)/defs.mod $(SRC_PATH)/control.mod $(SRC_PATH)/util.mod $(SRC_PATH)/types.mod $(SRC_PATH)/transform.mod $(SRC_PATH)/io.mod $(SRC_PATH)/grid.mod
46SOURCES = $(MODULES:%.mod=%.f90) $(SRC_PATH)/$(PROJECT).f90
47OBJECTS = $(SOURCES:%.f90=%.o)
48
49FC      = gfortran
50WRNGS   = -Wall -Wextra -Wsurprising -Waliasing -Wcharacter-truncation \
51                  -Wline-truncation -fbacktrace -fcheck=all -pedantic \
52                  -ffpe-trap=invalid,zero,underflow,overflow
53FFLAGS  = -fdefault-real-8 -Og -g $(WRNGS)
54INCLUDE = -I/home/ekadasch/local/include
55LIBRARY = -L/home/ekadasch/local/lib64 -lnetcdff
56
57.PHONY: all clean doc run tags test test-verbose $(PROJECT)
58
59$(PROJECT): $(OBJECTS) $(MODULES)
60        @echo ""
61        mkdir -p $(BIN_PATH)
62        $(FC) $(FFLAGS) $(OBJECTS) -o $(BIN_PATH)/$(PROJECT) -I$(SRC_PATH) $(LIBRARY)
63
64$(SRC_PATH)/%.o: $(SRC_PATH)/%.f90
65        @echo ""
66        $(FC) $(FFLAGS) -c $< -o $@ -J$(SRC_PATH) $(INCLUDE)
67
68$(SRC_PATH)/%.mod: $(SRC_PATH)/%.f90
69        @echo ""
70        $(FC) $(FFLAGS) -c $< -o $(@:%.mod=%.o) -J$(SRC_PATH) $(INCLUDE)
71
72all: clean $(PROJECT) test doc
73
74clean:
75        @echo ""
76        rm -rf $(OBJECTS) $(MODULES) $(BIN_PATH)/$(PROJECT)
77        rm -rf *.mod *.o
78        rm -rf ./doc/latex ./doc/html
79        rm -f $(SRC_PATH)/tags
80        rm -f *.files
81        rm -f palm-hsurf.nc
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.