CXX = perl

objects = index.html  projects.html links.html blog.html archives.html #guestbook.html #archive_scitech.html

homepage: $(objects)

archives.html:archives.pl
	$(CXX) archives.pl > archives.html

#archive_scitech.html:archive_category.pl
#	$(CXX) archive_category.pl > archive_scitech.html

index.html:index.pl
	$(CXX) index.pl > index.html

#guestbook.html:guestbook.pl
#	$(CXX) guestbook.pl > guestbook.html

projects.html:projects.pl
	$(CXX) projects.pl > projects.html

links.html:links.pl
	$(CXX) links.pl > links.html

blog.html:blog.pl
	$(CXX) blog.pl > blog.html

all: homepage


.PHONY:clean tags

clean:
	@-rm -f $(objects) tags rss.xml

TAGS:
	ctags *
