mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-18 06:50:25 +00:00
16 lines
373 B
Makefile
16 lines
373 B
Makefile
HELPFILES = lccollection.qhc
|
|
|
|
all: $(HELPFILES) index.html
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f *.qhc *.qch
|
|
|
|
%.html: %.txt html.header html.footer
|
|
(cat html.header; markdown2 $<; cat html.footer) > index.html
|
|
|
|
%.qhc: %.qhcp lcdoc.qhp index.html
|
|
qcollectiongenerator $< -o $@
|
|
|
|
favicon.ico: favicon32x32.png favicon16x16.png
|
|
png2ico favicon.ico favicon32x32.png favicon16x16.png
|