# É½Âê: arare ÍÑ Makefile
#
# ÍúÎò: 2005-04-16 ¿ù»³¹Ì°ìÏ¯

include ../../Mkinclude

.SUFFIXES: .o .f90 

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

OBJS = \
	average.o \
	summation.o \
	differentiate_center2.o \
	differentiate_center4.o \
	boundary.o \
	asselintimefilter.o \
	spongelayer.o \
	cflcheck.o \
	ssl2_linear.o \
	lapack_linear.o \
	linlib.o \

HTML = \
	average.htm \
	summation.htm \
	differentiate_center2.htm \
	differentiate_center4.htm \
	boundary.htm \
	asselintimefilter.htm \
	spongelayer.htm \
	cflcheck.htm \
	ssl2_linear.htm \
	lapack_linear.htm \
	linlib.htm \


all: $(OBJS) 

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


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



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


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

