diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -23,6 +23,7 @@ all: wiki/Chat_log.wiki .git/hooks/pre-commit @make -s LISTS="${PROJECT}" TARGET=summary loop @make -s LISTS="${WIKI}" TARGET=wikis loop @make -s menu + @make -s html/schedule.html @make -s index.html .git/hooks/pre-commit: @@ -32,6 +33,14 @@ wiki/Chat_log.wiki: wiki/Chat_log @echo $@ @./scripts/chatlog.py > $@ +scripts/schedule.py: projects/schedule.py + @echo $@ + @ln -s ../projects/schedule.py $@ + +html/schedule.html: projects/schedule.py scripts/schedule.py + @echo $@ + @./scripts/timesheet.py > $@ + index.html: @ln html/index.html . |