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
: $(wildcard package
/*/Makefile
include/package
*.mk
include/kernel.mk
) FORCE
48 tmp
/.targetinfo
: $(wildcard target
/*/Makefile
include/kernel
*.mk
) FORCE
51 $(NO_TRACE_MAKE
) -s
-f
include/scan.mk SCAN_TARGET
="$*info" SCAN_DIR
="$(patsubst target,target/linux,$*)" SCAN_NAME
="$*" SCAN_DEPS
="$(filter-out FORCE, $^)" SCAN_EXTRA
=""
56 tmp
/.config-
%.in
: tmp
/.
%info
57 .
/scripts
/metadata.pl
$*_config
< $< > $@ ||
rm -f
$@
59 .config
: .
/scripts
/config
/conf tmp
/.config-target.in tmp
/.config-package.in
60 if
[ \
! -f .config
]; then \
61 [ -e
$(HOME
)/.openwrt
/defconfig
] && cp
$(HOME
)/.openwrt
/defconfig .config
; \
62 $(NO_TRACE_MAKE
) menuconfig
; \
64 $< -D .config Config.in
&> /dev
/null
67 $(MAKE
) -C scripts
/config
all
70 $(MAKE
) -C scripts
/config conf
74 config
: scripts
/config
/conf tmp
/.config-target.in tmp
/.config-package.in FORCE
78 $(NO_TRACE_MAKE
) -C scripts
/config
clean
80 defconfig
: scripts
/config
/conf tmp
/.config-target.in tmp
/.config-package.in FORCE
82 $< -D .config Config.in
84 oldconfig
: scripts
/config
/conf tmp
/.config-target.in tmp
/.config-package.in FORCE
87 menuconfig
: scripts
/config
/mconf tmp
/.config-target.in tmp
/.config-package.in FORCE
88 if
[ \
! -f .config
-a
-e
$(HOME
)/.openwrt
/defconfig
]; then \
89 cp
$(HOME
)/.openwrt
/defconfig .config
; \
93 kernel_menuconfig
: .config FORCE
94 -$(MAKE
) target
/linux-prepare
95 $(NO_TRACE_MAKE
) -C target
/linux menuconfig
98 package
/% target
/%: tmp
/.packageinfo
99 toolchain
/% package
/% target
/%: tmp
/.targetinfo
100 package
/% target
/% tools
/% toolchain
/%: FORCE
101 $(MAKE
) -C
$(patsubst %/$*,%,$@
) $*
104 tmp
/.prereq-build
: include/prereq-build.mk
107 $(NO_TRACE_MAKE
) -s
-f
$(TOPDIR
)/include/prereq-build.mk prereq
2>/dev
/null ||
{ \
108 echo
"Prerequisite check failed. Use FORCE=1 to override."; \
113 tmp
/.prereq-
%: include/prereq.mk tmp
/.
%info .config
116 $(NO_TRACE_MAKE
) -s
-C
$* prereq
2>/dev
/null ||
{ \
117 echo
"Prerequisite check failed. Use FORCE=1 to override."; \
122 prereq
: tmp
/.prereq-build tmp
/.prereq-package tmp
/.prereq-target FORCE
124 download
: .config FORCE
125 $(MAKE
) tools
/download
126 $(MAKE
) toolchain
/download
127 $(MAKE
) package
/download
128 $(MAKE
) target
/download
131 $(MAKE
) tools
/install
132 $(MAKE
) toolchain
/install
133 $(MAKE
) target
/compile
134 $(MAKE
) package
/compile
135 $(MAKE
) package
/install
136 $(MAKE
) target
/install
137 $(MAKE
) package
/index
140 rm -rf build_
* bin tmp
143 rm -rf staging_dir_
* toolchain_build_
* tool_build
145 distclean: dirclean config-clean symlinkclean docclean
152 $(MAKE
) -C docs
/ openwrt.pdf
155 $(MAKE
) -C docs
/ clean
158 find package
-type l | xargs
-r
rm -f
160 .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