mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:33:10 +02:00
4ff563f9ef
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6199 3c298f89-4303-0410-b956-a3cf2f4a3e73
25 lines
497 B
Makefile
25 lines
497 B
Makefile
MAIN = openwrt.tex
|
|
DEPS = $(MAIN) Makefile config.tex network.tex network-scripts.tex network-scripts.tex wireless.tex build.tex adding.tex bugs.tex
|
|
|
|
all:
|
|
$(MAKE) cleanup
|
|
latex $(MAIN)
|
|
$(MAKE) openwrt.pdf openwrt.html
|
|
$(MAKE) cleanup
|
|
|
|
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
|
|
|
|
|
|
FORCE:
|
|
.PHONY: FORCE
|