21 lines
362 B
Makefile
21 lines
362 B
Makefile
#
|
|
# Makefile.ADMIN
|
|
#
|
|
# Maintenance tasks
|
|
#
|
|
# You can refetch files from the website, then run "cvs diff" to
|
|
# sanity check any changes before committing.
|
|
#
|
|
|
|
LYNX= lynx -dump -nolist
|
|
TRIM= expand | sed -e 's/^ *$$//' | cat -s
|
|
WEB= http://www.tcsh.org/page?
|
|
|
|
.for i in FAQ WishList
|
|
$i: force
|
|
${LYNX} ${WEB}$i | ${TRIM} > ${.TARGET}
|
|
.endfor
|
|
|
|
.DUMMY: force
|
|
force:
|