# Makefile # # Database access # # DB_SERVER=http://alice.physi.uni-heidelberg.de/~dietel all : rob_pos.cache dcs_pos.cache # This make local copy *.tbl to *.cache for in case if DB is not accessible. localcopy : cp rob_pos.tbl rob_pos.cache cp dcs_pos.tbl dcs_pos.cache rob_pos.cache : wget -O $@ $(DB_SERVER)/rob_pos.php dcs_pos.cache : wget -O $@ $(DB_SERVER)/dcs_pos.php clean : rm -f *~ rm -f *.cache # EOF