#---------------------------------------------------------------------
#     Copyright (C) GFD Dennou Club, 2005. All rights reserved.
#---------------------------------------------------------------------
#= Load Makefile.rd2html
#
# base タグを追加するための sed コマンドを使用.
#
#   * 2007/08/17 (Yasuhiro MORIKAWA) 作成



all:
	make -f Makefile.rd2html
	if [ 'ika.ahs.scitec.kobe-u.ac.jp' == `hostname -f` ]; then \
	    sed -e 's|</head>|<base href="http://epa.scitec.kobe-u.ac.jp/~itpass/exp/fy2007/">\
</head>|' index.htm > index.htm.tmp ; \
	elif [ 'ika.epa.scitec.kobe-u.ac.jp' == `hostname -f` ]; then \
	    sed -e 's|</head>|<base href="http://epa.scitec.kobe-u.ac.jp/~itpass/exp/fy2007/">\
</head>|' index.htm > index.htm.tmp ; \
	elif [ 'studenno.kugi.kyoto-u.ac.jp' == `hostname -f` ]; then \
	    sed -e 's|</head>|<base href="http://www.gfd-dennou.org/arch/kobe/itpass/fy2007/">\
</head>|' index.htm > index.htm.tmp ; \
	else \
	    cat index.htm > index.htm.tmp ;\
	fi
	mv index.htm.tmp index.htm

clean.all:
	make -f Makefile.rd2html clean.all