aboutsummaryrefslogtreecommitdiffstats
path: root/package/rt61
Commit message (Expand)AuthorAgeFilesLines
* rdc-2.6 has pci support and rt61 should be built only along with rdc-2.6Florian Fainelli2007-04-251-1/+1
* Patches for rt61 are no longer requiredFlorian Fainelli2007-04-172-34/+0
* rt61 is not broken on 2.6 kernels, use a daily snapshot insteadFlorian Fainelli2007-04-171-4/+4
* add file type autodetection for the unpack command and nuke PKG_CAT:= in lots...Felix Fietkau2007-03-161-1/+0
* add a default for PKG_BUILD_DIR and PKG_INSTALL_DIR (will use KERNEL_BUILD_DI...Felix Fietkau2007-03-161-2/+1
* trunk.. same deal as changeset:6526Tim Yardley2007-03-052-0/+0
* same propset here as changeset:6500Tim Yardley2007-03-041-1/+1
* fix rt61 build on 2.4Nicolas Thill2007-01-072-2/+26
* make ralink legacy drivers depend on linux 2.4 - linux 2.6 will use the stuff...Felix Fietkau2007-01-011-1/+1
* Make rt61 become a real kernel packageFlorian Fainelli2006-12-301-14/+10
* Fix rt61 compilation with 2.6.19 kernelsFlorian Fainelli2006-12-171-0/+12
* Also change MakefileFlorian Fainelli2006-12-122-5/+5
* Change package nameFlorian Fainelli2006-12-122-0/+52
ackground-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
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:
	mkdir -p $(TMP_DIR)
	$(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,latex, \
	You need to install LaTeX to build the OpenWrt documentation \
))
$(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