2004-08-24 12:54:56 +00:00
|
|
|
SUBDIRS = devel misc
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
2004-08-28 17:41:34 +00:00
|
|
|
homepage: nav
|
2004-08-24 12:54:56 +00:00
|
|
|
cp *.html *.css *.jpg *.png $(HTMLDIR)/htdocs
|
|
|
|
|
|
|
|
|
|
clean:
|
2004-08-24 15:11:17 +00:00
|
|
|
rm -f $(NAVFILES) $(HTMLFILES) *.pyc *.pyo
|
2004-08-28 13:02:15 +00:00
|
|
|
|
|
|
|
|
.PHONY: all clean homepage nav apidocs
|