source: palm/trunk/UTIL/inifor/tests/Makefile @ 3698

Last change on this file since 3698 was 3618, checked in by eckhard, 5 years ago

inifor: Prefixed all INIFOR modules with inifor_ and removed unused variables

  • Property svn:keywords set to Id
File size: 2.8 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 3618 2018-12-10 13:25:22Z suehring $
27# Prefixed INIFOR modules with inifor_
28#
29#
30# 2718 2018-01-02 08:49:38Z maronga
31# Initial revision
32#
33#
34#
35# Authors:
36# --------
37# @author Eckhard Kadasch
38#
39# Description:
40# ------------
41# This makefile is called from INIFOR's main makefile to compile and run tests.
42#------------------------------------------------------------------------------!
43PROJECT = inifor
44PROJECT_PATH = ..
45BIN_PATH = $(PROJECT_PATH)/bin
46SRC_PATH = $(PROJECT_PATH)/src
47TESTS    = $(patsubst %.f90,%,$(wildcard test-*.f90))
48
49MODULES = util.mod $(SRC_PATH)/inifor_defs.mod $(SRC_PATH)/inifor_control.mod $(SRC_PATH)/inifor_util.mod $(SRC_PATH)/inifor_types.mod $(SRC_PATH)/inifor_transform.mod $(SRC_PATH)/inifor_io.mod $(SRC_PATH)/inifor_grid.mod
50SOURCES = $(MODULES:%.mod=%.f90)
51OBJECTS = $(SOURCES:%.f90=%.o)
52
53FC      = gfortran
54FFLAGS  = -g -Wall -fdefault-real-8 \
55                  -ffpe-trap=invalid,zero,underflow,overflow
56INCLUDE = -I$(SRC_PATH)
57LIBRARY = -L/home/ekadasch/local/lib64 -lnetcdff -lutil
58                 
59.PHONY: clean test $(PROJECT)
60
61test: information $(PROJECT) $(TESTS)
62
63information:
64        @echo $(TESTS)
65
66$(PROJECT):
67        $(MAKE) -C $(PROJECT_PATH) $(PROJECT)
68
69test-grid: $(OBJECTS) $(MODULES) test-grid.o test-grid.mod util.mod util.o
70        mkdir -p $(BIN_PATH)
71        $(FC) $(FFLAGS) $(OBJECTS) $@.o -o $(BIN_PATH)/$@ $(INCLUDE) $(LIBRARY)
72        $(BIN_PATH)/$@
73
74# $(TESTS) expands to files of this pattern:
75test-%: $(OBJECTS) $(MODULES) test-%.o test-%.mod
76        mkdir -p $(BIN_PATH)
77        $(FC) $(FFLAGS) $(OBJECTS) $@.o -o $(BIN_PATH)/$@ $(INCLUDE) $(LIBRARY)
78        $(BIN_PATH)/$@
79
80%.o: %.mod
81
82util.o: util.f90
83        $(FC) $(FFLAGS) -c $< -o $@
84
85util.mod: util.f90
86        $(FC) $(FFLAGS) -c $< -o $(@:%.mod=%.o)
87
88test-%.o: test-%.f90
89        $(FC) $(FFLAGS) -c $< -o $@ $(INCLUDE)
90
91test-%.mod: test-%.f90
92        $(FC) $(FFLAGS) -c $< -o $(@:%.mod=%.o) $(INCLUDE)
93
94clean:
95        rm -rf *.mod *.o
96        rm -rf $(BIN_PATH)/test-*
Note: See TracBrowser for help on using the repository browser.