# É½Âê: arare ÍÑ Makefile
#
# ÍúÎò: 2005-01-28 ¿ù»³¹Ì°ìÏ¯
#     : 2005-01-31 ¾®¹âÀµ»Ì

include ../../Mkinclude

.SUFFIXES: .o .f90 

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

OBJS = \
	debugset.o \
	fileset.o \
	gridset.o \
	timeset.o \
	bcset.o \
	nameset.o \
	physset.o \
	arareset.o \
	chemset.o \
	basicset.o \
	disturbset.o \

HTML = \
	debugset.htm \
	fileset.htm \
	gridset.htm \
	timeset.htm \
	bcset.htm \
	nameset.htm \
	physset.htm \
	arareset.htm \
	chemset.htm \
	basicset.htm \
	disturbset.htm \

all: $(OBJS) 

$(OBJS): %.o: %.f90
	$(FC) -c $<  -I$(GTOOLMODDIR) 


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



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


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

