# Purpose # ------- # Makefile for the CSIRO Mk3L utility "atmCO2conc" # # Usage # ----- # 'make' builds atmCO2conc # 'make clean' tidies up afterwards # # History # ------- # 2011 June Richard Matear added this routine to enable the modification # of the atmospheric carbon concentration based on the previous year's # land and ocean carbon uptake, and the fossil fuel and land use change # carbon emissions read from a file. ######################### # Macro definitions # ######################### include ../../bld/macros ####################### # Compile options # ####################### #################### # Source files # #################### SRC = atmCO2conc.f90 OBJS = getopt_m.o ######################################## # Rules for building the utilities # ######################################## default : $(SRC) $(OBJS) $(F90) $(F90FLAGS) $(SRC) $(OBJS) $(INC) $(LIB) -lnetcdf -lnetcdff -o atmCO2conc clean : /bin/rm *.mod *.o .SUFFIXES : .f90 .f90.o: $(F90) $(F90FLAGS) -c $< # Module dependencies radint.o: getopt_m.o