# # Take care of files generated on the fly. # HTML = hst_status.html weekly_timeline.html all: $(HTML) # The touch command ensures that these are always out # of date, since there is no easy way to know if anything has # been added to the collection: clean: rm $(HTML) .SUFFIXES: .html .shtml .shtml.html: /usr/local/bin/lynx -source http://www-int.stsci.edu/observing/$< > $@.new rm -f $@.old touch $@ chmod g+w $@ mv $@ $@.old mv $@.new $@ sleep 1 touch $<