lazarus/docs/html/Makefile
marco 662636c5bd * also clean lazutils
git-svn-id: trunk@38119 -
2012-08-02 22:07:11 +00:00

42 lines
696 B
Makefile

ifndef MKDIR
MKDIR=mkdir -p
endif
ifndef CP
CP=cp -Rfpl
endif
RM:=rm -rf
ifndef LAZBUILD
LAZBUILD=$(firstword $(wildcard ../../lazbuild) $(wildcard /usr/bin/lazbuild))
endif
ifndef FPC
FPC=/usr/bin/fpc
endif
build: htmldocs
htmldocs: build_lcl_docs
./$< --outfmt html
chmdocs: build_lcl_docs
./$< --outfmt chm
build_lcl_docs: build_lcl_docs.lpi build_lcl_docs.lpr
ifeq (${LAZBUILD},)
echo 'Executable "lazbuild" not found, trying direct FPC call.'
${FPC} -o$@ build_lcl_docs.lpr
else
${LAZBUILD} $<
endif
clean:
${RM} build_lcl_docs lcl lazutils
htmlinstall chminstall:
install -d ${INSTALL_DOCDIR}
${CP} -t ${INSTALL_DOCDIR} \
lcl
.PHONY: build clean install htmldocs chmdocs