blob: ffc5bbb062a331f799c9135a1872ced603f3e49b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
ifeq ($(TOPDIR),)
TOPDIR:=${CURDIR}/..
endif
all: compile
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 $(TMP_DIR)/.prereq-docs
compile:
$(NO_TRACE_MAKE) cleanup
latex $(MAIN)
$(NO_TRACE_MAKE) openwrt.pdf openwrt.html
$(NO_TRACE_MAKE) cleanup
$(TMP_DIR)/.prereq-docs:
$(NO_TRACE_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
|