summaryrefslogtreecommitdiff
path: root/lib/make
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2007-02-16 18:59:32 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2007-02-16 18:59:32 +0000
commit20e50d8110b0e1d1a375b3d56ebd75dee79cf347 (patch)
treedd4f186a8a27cddcb3d907cc46bda27982cfea58 /lib/make
parent5f5462614bc0a46d5ddb615b0218014ea71db7ac (diff)
Take F90_SUFFIX into account when "preprocessing" .f90 files. This is
necessary on AIX, where the compiler requires free-form Fortran 90 files to have a .f suffix. git-svn-id: http://svn.cactuscode.org/flesh/trunk@4408 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make')
-rw-r--r--lib/make/make.config.rules.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/make/make.config.rules.in b/lib/make/make.config.rules.in
index 5909cfed..59e81967 100644
--- a/lib/make/make.config.rules.in
+++ b/lib/make/make.config.rules.in
@@ -165,7 +165,7 @@ endef
# Define how to do a f90 compilation
define PREPROCESS_f90
-cat $< > $(basename $(notdir $<)).f90
+cat $< > $(basename $(notdir $<)).$(F90_SUFFIX)
endef