mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-19 07:20:26 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2158 e7d03fd6-7b0d-0410-9947-9c21f3af8025
23 lines
588 B
Makefile
23 lines
588 B
Makefile
RESTFILES = $(wildcard *.txt)
|
|
HTMLFILES = $(patsubst %.txt, %.html, $(RESTFILES) )
|
|
NAVFILES = $(patsubst %.txt, %.nav, $(RESTFILES) )
|
|
HTMLDIR := /home/calvin/public_html/linkchecker.sf.net
|
|
|
|
all: $(HTMLFILES)
|
|
|
|
%.html: %.txt htmlnav.py bfknav.py
|
|
./rest2htmlnav --stylesheet-path=lc.css --time $< $@
|
|
|
|
nav: all
|
|
python bfknav.py
|
|
|
|
homepage: nav
|
|
cp *.html *.css *.jpg *.png $(HTMLDIR)/htdocs
|
|
|
|
clean:
|
|
rm -f $(NAVFILES) $(HTMLFILES) *.pyc *.pyo
|
|
|
|
apidocs:
|
|
epydoc --html -o api --name "LinkChecker source documentation" --url ../index.html ../linkcheck/
|
|
|
|
.PHONY: all clean homepage nav apidocs
|