
# The web directory. The contents of this directory are put onto the site. 
# Note the trailing slash. 
WWW=www/

# The directory where automagically generated HTML goes. 
AUTO=$(WWW)/static/auto/

# Where text goes. This is for miscellaneous data files that are used to 
# generate web pages goes here.
ETC=etc/



publications: $(AUTO)/publications.html

$(AUTO)/publications.html: $(ETC)/publications.bib bin/htmlify_publications.pl
	perl bin/htmlify_publications.pl > $@


clean:
	rm $(AUTO)/*
