# É½Âê: arare ÍÑ Makefile
#
# ÍúÎò: 2005-01-28 ¿ù»³¹Ì°ìÏ¯
#     : 2005-01-31 ¾®¹âÀµ»Ì
#     : 2005-04-16 ¿ù»³¹Ì°ìÏ¯
#     : 2005-07-06 ËÌ¼éÂÀ°ì
#     : 2005-09-03 ËÌ¼éÂÀ°ì
#     : 2005-12-08 ËÌ¼éÂÀ°ì
#     : 2006-01-11 ËÌ¼éÂÀ°ì

include ../../Mkinclude

.SUFFIXES: .o .f90 

CSS = ../../$(CSSDIR)

OBJS = \
	surfacetemp.o \
	surfaceheatflux.o \
	surfacemomentumflux.o \
	radiation.o \
	dissipativeheating.o \
	latentheatpermass.o \
	saturationratio.o \
	masscondense.o \
	latentheat.o \

HTML = \
	surfacetemp.htm \
	surfaceheatflux.htm \
	surfacemomentumflux.htm \
	radiation.htm \
        dissipativeheating.htm \
	latentheatpermass.htm \
	saturationratio.htm \
	masscondense.htm \
	latentheat.htm \

all: $(OBJS) 

$(OBJS): %.o: %.f90
	$(FC) -c $<  -I$(GTOOLMODDIR) -I../setup -I../util -I../io


doc: $(HTML)
	cp $(HTML) $(HTMDIR)



clean: clean.doc
	$(RM) *.o 


clean.doc:
	$(RM) -f $(HTML)

