1 # 2 # Makefile.ADMIN 3 # 4 # Maintenance tasks 5 # 6 # You can refetch files from the website, then run "git diff" to 7 # sanity check any changes before committing. 8 # 9 10 LYNX= lynx -dump -nolist 11 TRIM= expand | sed -e 's/^ *$$//' | cat -s 12 WEB= https://www.tcsh.org 13 14 PAGES= FAQ 15 16 all: ${PAGES} 17 18 .for i in ${PAGES} 19 $i: force 20 ${LYNX} ${WEB}/${i:tl}/ | ${TRIM} > ${.TARGET} 21 .endfor 22 23 .DUMMY: force 24 force: