# Version 1.0 released by David Romps on April 15, 2021. # # When using this code, please cite: # # @article{20dewpoint, # Title = {Accurate expressions for the dew point and frost point derived from the {Rankine-Kirchhoff} approximations}, # Author = {David M. Romps}, # Journal = {Journal of the Atmospheric Sciences}, # Year = {2021}, # Month = jul, # Number = {7}, # Pages = {2113--2116}, # Volume = {78} # } # GFortran F90 = gfortran FFLAGS = -fdefault-real-8 # Intel Fortran # F90 = ifort # FFLAGS = -r8 test: dewpoint.f90 test.f90 $(F90) $(FFLAGS) -o $@ $^ .PHONY: clean clean: rm -f *.o *.mod test