# # # Name: vmworkshop/1996/tools/makefile # # BASEURL = http://ukcc.uky.edu/~tools/1996 # "all" becomes the default target by appearing first all: index.fl cat index.fl | xargs make # index for this year (better than an auto-index of just the files) index.html: wget $(BASEURL)/index.html # the list of all files contributed to the this archive index.fl: index.html cat index.html \ | sed -r 's# +# #g' \ | sed 's##*#g' \ | awk -F'*' '{print $$2}' | sed 's#"##g' \ | grep -v '^mailto:' | grep -v '^http:' \ | sed 's# $$##g' | grep -v ' ' \ | grep -v '/$$' \ | tr A-Z a-z \ > index.fl # for each item, the default rule is to us 'wget' under the base URL %: wget $(BASEURL)/$@ # a rule to clean things up clean: rm -f index.* # a more aggressive rule to get rid of everything veryclean: rm -f index.* *.html *.vmarc *.rexx *.exec *.module