From fcb9aaa7331ccfe3d8fe270935ea071b30ff7dff Mon Sep 17 00:00:00 2001 From: Dom Heinzeller Date: Tue, 14 Nov 2017 14:00:09 -0700 Subject: [PATCH] Renamed IPD_driver_cap.f90 to IPD_driver_cap.F90 and updated makefile to allow for C-preprocessing of the file in the future. Also cleaned up makefile (changed tabs into spaces where appropriate) --- ...{IPD_driver_cap.f90 => IPD_driver_cap.F90} | 0 makefile | 31 ++++++++++--------- 2 files changed, 16 insertions(+), 15 deletions(-) rename IPD_layer/{IPD_driver_cap.f90 => IPD_driver_cap.F90} (100%) diff --git a/IPD_layer/IPD_driver_cap.f90 b/IPD_layer/IPD_driver_cap.F90 similarity index 100% rename from IPD_layer/IPD_driver_cap.f90 rename to IPD_layer/IPD_driver_cap.F90 diff --git a/makefile b/makefile index 2a92e1523..a30640e40 100644 --- a/makefile +++ b/makefile @@ -125,29 +125,30 @@ SRCS_f90 = \ ./physics/module_nst_parameters.f90 \ ./physics/module_nst_water_prop.f90 \ ./physics/ozinterp.f90 \ - ./physics/physcons.f90 \ - ./physics/wam_f107_kp_mod.f90 \ - ./IPD_layer/IPD_driver_cap.f90 + ./physics/physcons.f90 \ + ./physics/wam_f107_kp_mod.f90 -SRCS_F = ./physics/aer_cloud.F \ - ./physics/cldmacro.F \ +SRCS_F = ./physics/aer_cloud.F \ + ./physics/cldmacro.F \ ./physics/cldwat2m_micro.F \ ./physics/machine.F \ - ./physics/num_parthds.F \ + ./physics/num_parthds.F \ ./physics/wv_saturation.F SRCS_F90 = \ - ./physics/GFDL_parse_tracers.F90 \ - ./GFS_layer/GFS_abstraction_layer.F90 \ - ./GFS_layer/GFS_diagnostics.F90 \ - ./GFS_layer/GFS_driver.F90 \ - ./GFS_layer/GFS_physics_driver.F90 \ - ./GFS_layer/GFS_radiation_driver.F90 \ - ./GFS_layer/GFS_restart.F90 \ - ./GFS_layer/GFS_typedefs.F90 \ - ./IPD_layer/IPD_driver.F90 \ + ./physics/GFDL_parse_tracers.F90 \ + ./GFS_layer/GFS_abstraction_layer.F90 \ + ./GFS_layer/GFS_diagnostics.F90 \ + ./GFS_layer/GFS_driver.F90 \ + ./GFS_layer/GFS_physics_driver.F90 \ + ./GFS_layer/GFS_radiation_driver.F90 \ + ./GFS_layer/GFS_restart.F90 \ + ./GFS_layer/GFS_typedefs.F90 \ + ./IPD_layer/IPD_driver_cap.F90 \ + ./IPD_layer/IPD_driver.F90 \ ./IPD_layer/IPD_typedefs.F90 + SRCS_c = DEPEND_FILES = $(SRCS_f) $(SRCS_f90) $(SRCS_F) $(SRCS_F90)