mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 11:18:10 +02:00
lcl docs: added Makefile for unix, used by debian packages
git-svn-id: trunk@19723 -
This commit is contained in:
parent
173f90556b
commit
6661766227
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
32
docs/html/Makefile
Normal 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
|
Loading…
Reference in New Issue
Block a user