X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=blobdiff_plain;f=docs%2FMakefile;fp=docs%2FMakefile;h=9e888a4af2df7fab545631ffe872b16106738ffb;hp=359f4e63080dcfaf10a3fae2a5bb3c1a8eeb38dc;hb=5f23843ea6290fc71f3a3b487fd6129ef2ed092e;hpb=b0e4a47a63c1969c207799f6386ab76b4e1cc5a4 diff --git a/docs/Makefile b/docs/Makefile index 359f4e630..9e888a4af 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,5 +1,12 @@ +ifeq ($(TOPDIR),) + TOPDIR:=${CURDIR}/.. +endif + +include $(TOPDIR)/rules.mk +include $(INCLUDE_DIR)/prereq.mk + MAIN = openwrt.tex -DEPS = $(MAIN) Makefile config.tex network.tex network-scripts.tex network-scripts.tex wireless.tex build.tex adding.tex bugs.tex +DEPS = $(MAIN) Makefile config.tex network.tex network-scripts.tex network-scripts.tex wireless.tex build.tex adding.tex bugs.tex .prereq all: $(MAKE) cleanup @@ -7,6 +14,10 @@ all: $(MAKE) openwrt.pdf openwrt.html $(MAKE) cleanup +.prereq: + $(MAKE) prereq + touch $@ + openwrt.html: $(DEPS) htlatex $(MAIN) @@ -19,6 +30,12 @@ clean: cleanup cleanup: FORCE rm -f *.log *.aux *.toc *.out *.lg *.dvi *.idv *.4ct *.4tc *.xref *.tmp *.dvi +$(eval $(call RequireCommand,pdflatex, \ + You need to install LaTeX to build the OpenWrt documentation \ +)) +$(eval $(call RequireCommand,htlatex, \ + You need to install tex4ht to build the OpenWrt documentation \ +)) FORCE: .PHONY: FORCE