lcl docs: added Makefile for unix, used by debian packages

git-svn-id: trunk@19723 -
This commit is contained in:
mattias 2009-05-01 07:10:38 +00:00
parent 173f90556b
commit 6661766227
2 changed files with 33 additions and 0 deletions

1
.gitattributes vendored
View File

@ -1873,6 +1873,7 @@ docs/TODO.txt svneol=native#text/plain
docs/acknowledgements.txt svneol=native#text/plain
docs/booth/ProdProgEntwMitOpenSourceSystems2007.odp -text
docs/contributors.utf8 svneol=native#text/plain
docs/html/Makefile svneol=native#text/plain
docs/html/README.txt svneol=native#text/plain
docs/html/build_chm.bat svneol=native#text/plain
docs/html/build_chm.sh svneol=native#text/plain

32
docs/html/Makefile Normal file
View File

@ -0,0 +1,32 @@
ifndef MKDIR
MKDIR=mkdir -p
endif
ifndef CP
CP=cp -Rfpl
endif
RM:=rm -rf
ifndef LAZBUILD
LAZBUILD=$(firstword $(wildcard ../../lazbuild) lazbuild)
endif
build: htmldocs
htmldocs: build_lcl_docs
./$< --outfmt html
chmdocs: build_lcl_docs
./$< --outfmt chm --arg --make-searchable
build_lcl_docs: build_lcl_docs.lpi
${LAZBUILD} $<
clean:
${RM} build_lcl_docs lcl
htmlinstall chminstall:
install -d ${INSTALL_DOCDIR}
${CP} -t ${INSTALL_DOCDIR} \
lcl
.PHONY: build clean install htmldocs chmdocs