indexing typo in phys/module_fr_sfire_atm.F/interpolate_wind2fire_height/interpolate_h
[wrf-fire.git] / other / tign_history_api / Makefile
blobd439bab355e9c161e60c6cd65bf9919338f1877e
2 FC=gfortran
4 NETCDFLIB=$(shell nc-config --flibs 2> /dev/null || echo -L$(NETCDF)/lib -lnetcdf)
5 NETCDFINC=$(shell nc-config --fflags 2> /dev/null || echo -I$(NETCDF)/include)
7 all: tign_test.x
9 tign_history.o: tign_history.F90
10 $(FC) -c $(NETCDFINC) $<
12 tign_test.x: tign_history.o tign_test.F90
13 $(FC) -c tign_test.F90 -I.
14 $(FC) -o $@ tign_test.o tign_history.o $(NETCDFLIB)
16 clean:
17 rm -f *.o *.x *.mod