3 # Copyright (C) 2006 OpenWrt.org
4 # Copyright (C) 2006 by Felix Fietkau <openwrt@nbd.name>
6 # This is free software, licensed under the GNU General Public License v2.
7 # See /LICENSE for more information.
11 #VERSION:=2.0 # uncomment for final release
13 #--------------------------------------------------------------
14 # Just run 'make menuconfig', configure stuff, then run 'make'.
15 # You shouldn't need to mess with anything beyond this point...
16 #--------------------------------------------------------------
20 SHELL
:=/usr
/bin
/env bash
23 export TOPDIR
=${CURDIR}
24 export IS_TTY
=$(shell tty
-s
&& echo
1 || echo
0)
26 include $(TOPDIR
)/include/verbose.mk
28 OPENWRTVERSION
:=$(RELEASE
)
30 OPENWRTVERSION
:=$(VERSION
) ($(OPENWRTVERSION
))
32 REV
:=$(shell LANG
=C svn
info | awk
'/^Revision:/ { print$$2 }' )
34 OPENWRTVERSION
:=$(OPENWRTVERSION
)/r
$(REV
)
40 .config scripts
/config
/conf scripts
/config
/mconf
: tmp
/.prereq-build
41 world
: tmp
/.prereq-package tmp
/.prereq-target
47 tmp
/.packageinfo tmp
/.targetinfo
: FORCE
49 $(NO_TRACE_MAKE
) -s
-f
include/scan.mk SCAN_TARGET
="targetinfo" SCAN_DIR
="target/linux" SCAN_NAME
="target" SCAN_DEPS
="" SCAN_TARGET_DEPS
="$(wildcard target/*/Makefile include/kernel*.mk)" SCAN_EXTRA
=""
50 $(NO_TRACE_MAKE
) -s
-f
include/scan.mk SCAN_TARGET
="packageinfo" SCAN_DIR
="package" SCAN_NAME
="package" SCAN_DEPS
="$(wildcard package/*/Makefile include/package*.mk include/kernel.mk)" SCAN_EXTRA
=""
55 tmp
/.config-
%.in
: tmp
/.
%info scripts
/metadata.pl
56 .
/scripts
/metadata.pl
$*_config
< $< > $@ ||
rm -f
$@
58 .config
: .
/scripts
/config
/conf tmp
/.config-target.in tmp
/.config-package.in
59 if
[ \
! -f .config
]; then \
60 [ -e
$(HOME
)/.openwrt
/defconfig
] && cp
$(HOME
)/.openwrt
/defconfig .config
; \
61 $(NO_TRACE_MAKE
) menuconfig
; \
63 $< -D .config Config.in
&> /dev
/null
66 $(MAKE
) -C scripts
/config
all
69 $(MAKE
) -C scripts
/config conf
73 config
: scripts
/config
/conf tmp
/.config-target.in tmp
/.config-package.in FORCE
77 $(NO_TRACE_MAKE
) -C scripts
/config
clean
79 defconfig
: scripts
/config
/conf tmp
/.config-target.in tmp
/.config-package.in FORCE
81 $< -D .config Config.in
83 oldconfig
: scripts
/config
/conf tmp
/.config-target.in tmp
/.config-package.in FORCE
86 menuconfig
: scripts
/config
/mconf tmp
/.config-target.in tmp
/.config-package.in FORCE
87 if
[ \
! -f .config
-a
-e
$(HOME
)/.openwrt
/defconfig
]; then \
88 cp
$(HOME
)/.openwrt
/defconfig .config
; \
92 kernel_menuconfig
: .config FORCE
93 -$(MAKE
) target
/linux-prepare
94 $(NO_TRACE_MAKE
) -C target
/linux menuconfig
97 package
/% target
/%: tmp
/.packageinfo
98 toolchain
/% package
/% target
/%: tmp
/.targetinfo
99 package
/% target
/% tools
/% toolchain
/%: FORCE
100 $(MAKE
) -C
$(patsubst %/$*,%,$@
) $*
103 tmp
/.prereq-build
: include/prereq-build.mk
106 $(NO_TRACE_MAKE
) -s
-f
$(TOPDIR
)/include/prereq-build.mk prereq
2>/dev
/null ||
{ \
107 echo
"Prerequisite check failed. Use FORCE=1 to override."; \
112 tmp
/.prereq-
%: include/prereq.mk tmp
/.
%info .config
115 $(NO_TRACE_MAKE
) -s
-C
$* prereq
2>/dev
/null ||
{ \
116 echo
"Prerequisite check failed. Use FORCE=1 to override."; \
121 prereq
: tmp
/.prereq-build tmp
/.prereq-package tmp
/.prereq-target FORCE
123 download
: .config FORCE
124 $(MAKE
) tools
/download
125 $(MAKE
) toolchain
/download
126 $(MAKE
) package
/download
127 $(MAKE
) target
/download
130 $(MAKE
) tools
/install
131 $(MAKE
) toolchain
/install
132 $(MAKE
) target
/compile
133 $(MAKE
) package
/compile
134 $(MAKE
) package
/install
135 $(MAKE
) target
/install
136 $(MAKE
) package
/index
139 rm -rf build_
* bin tmp
142 rm -rf staging_dir_
* toolchain_build_
* tool_build
144 distclean: dirclean config-clean symlinkclean docclean
151 $(MAKE
) -C docs
/ openwrt.pdf
154 $(MAKE
) -C docs
/ clean
157 -find package
-type l | xargs
rm -f
159 .SILENT
: clean dirclean
distclean symlinkclean config-clean download world help tmp
/.packageinfo tmp
/.targetinfo tmpinfo-clean tmp
/.config-package.in tmp
/.config-target.in .config scripts
/config
/mconf scripts
/config
/conf menuconfig tmp
/.prereq-build tmp
/.prereq-package tmp
/.prereq-target