1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-12 15:39:18 +03:00
openwrt-xburst/docs/Makefile
nbd 5f23843ea6 add prereq checks for the documentation (#1400)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6365 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-02-25 19:13:49 +00:00

42 lines
866 B
Makefile

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 .prereq
all:
$(MAKE) cleanup
latex $(MAIN)
$(MAKE) openwrt.pdf openwrt.html
$(MAKE) cleanup
.prereq:
$(MAKE) prereq
touch $@
openwrt.html: $(DEPS)
htlatex $(MAIN)
openwrt.pdf: $(DEPS)
pdflatex $(MAIN)
clean: cleanup
rm -f openwrt.pdf openwrt.html openwrt.css
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