Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / docs / html / Makefile
Size: Mime:
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 ($(realpath ${LAZBUILD}),)
	echo 'Executable "lazbuild" not found, trying direct FPC call.'
	${FPC}  -FU. $(addprefix -Fu../../,components/lazutils lcl) -o$@ build_lcl_docs.lpr
else
	${LAZBUILD} $<
endif

clean:
	${RM} build_lcl_docs lcl lazutils *.o *.ppu *.rst

htmlinstall chminstall:
	install -d ${INSTALL_DOCDIR}
	${CP} -t ${INSTALL_DOCDIR} \
		lcl

.PHONY: build clean install htmldocs chmdocs