3 # Copyright (C) 2007 OpenWrt.org
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
10 SHELL
:=/usr
/bin
/env bash
11 PREP_MK
= OPENWRT_BUILD
= QUIET
=0
13 include $(TOPDIR
)/include/verbose.mk
16 include $(TOPDIR
)/include/version.mk
18 REVISION
:=$(shell $(TOPDIR
)/scripts
/getver.sh
)
21 OPENWRTVERSION
:=$(RELEASE
)$(if
$(REVISION
), ($(REVISION
)))
25 export IS_TTY
=$(shell tty
-s
&& echo
1 || echo
0)
26 export LD_LIBRARY_PATH
:=$(if
$(LD_LIBRARY_PATH
),$(LD_LIBRARY_PATH
):)$(STAGING_DIR_HOST
)/lib
27 export DYLD_LIBRARY_PATH
:=$(if
$(DYLD_LIBRARY_PATH
),$(DYLD_LIBRARY_PATH
):)$(STAGING_DIR_HOST
)/lib
29 # prevent perforce from messing with the patch utility
30 unexport P4PORT P4USER P4CONFIG P4CLIENT
32 # make sure that a predefined CFLAGS variable does not disturb packages
36 .config scripts
/config
/conf scripts
/config
/mconf
: tmp
/.prereq-build
39 SCAN_COOKIE?
=$(shell echo
$$$$)
44 prepare-tmpinfo
: FORCE
46 $(_SINGLE
)$(NO_TRACE_MAKE
) -j1
-r
-s
-f
include/scan.mk SCAN_TARGET
="packageinfo" SCAN_DIR
="package" SCAN_NAME
="package" SCAN_DEPS
="$(TOPDIR)/include/package*.mk $(TOPDIR)/overlay/*/*.mk" SCAN_DEPTH
=5 SCAN_EXTRA
=""
47 $(_SINGLE
)$(NO_TRACE_MAKE
) -j1
-r
-s
-f
include/scan.mk SCAN_TARGET
="targetinfo" SCAN_DIR
="target/linux" SCAN_NAME
="target" SCAN_DEPS
="profiles/*.mk $(TOPDIR)/include/kernel*.mk $(TOPDIR)/include/target.mk" SCAN_DEPTH
=2 SCAN_EXTRA
="" SCAN_MAKEOPTS
="TARGET_BUILD=1"
48 for type in package target
; do \
49 f
=tmp
/.
$${type}info; t
=tmp
/.config-
$${type}.in
; \
50 [ "$$t" -nt
"$$f" ] || .
/scripts
/metadata.pl
$${type}_config
"$$f" > "$$t" ||
{ rm -f
"$$t"; echo
"Failed to build $$t"; false
; break
; }; \
52 .
/scripts
/metadata.pl package_mk tmp
/.packageinfo
> tmp
/.packagedeps ||
{ rm -f tmp
/.packagedeps
; false
; }
53 touch
$(TOPDIR
)/tmp
/.build
55 .config
: .
/scripts
/config
/conf
$(if
$(CONFIG_HAVE_DOT_CONFIG
),,prepare-tmpinfo
)
56 @
+if
[ \
! -e .config
] ||
! grep CONFIG_HAVE_DOT_CONFIG .config
>/dev
/null
; then \
57 [ -e
$(HOME
)/.openwrt
/defconfig
] && cp
$(HOME
)/.openwrt
/defconfig .config
; \
58 $(_SINGLE
)$(NO_TRACE_MAKE
) menuconfig
$(PREP_MK
); \
62 @
$(_SINGLE
)$(SUBMAKE
) -s
-C scripts
/config
all
64 $(eval
$(call rdep
,scripts
/config
,scripts
/config
/mconf
))
67 @
$(_SINGLE
)$(SUBMAKE
) -s
-C scripts
/config conf
69 config
: scripts
/config
/conf prepare-tmpinfo FORCE
73 $(_SINGLE
)$(NO_TRACE_MAKE
) -C scripts
/config
clean
75 defconfig
: scripts
/config
/conf prepare-tmpinfo FORCE
77 $< -D .config Config.in
79 oldconfig
: scripts
/config
/conf prepare-tmpinfo FORCE
80 $< -$(if
$(CONFDEFAULT
),$(CONFDEFAULT
),o
) Config.in
82 menuconfig
: scripts
/config
/mconf prepare-tmpinfo FORCE
83 if
[ \
! -e .config
-a
-e
$(HOME
)/.openwrt
/defconfig
]; then \
84 cp
$(HOME
)/.openwrt
/defconfig .config
; \
88 prepare_kernel_conf
: .config FORCE
90 ifeq ($(wildcard staging_dir
/host
/bin
/sed
),)
92 @
+$(SUBMAKE
) -r tools
/sed
/install
94 prepare_kernel_conf
: ;
97 kernel_oldconfig
: prepare_kernel_conf
98 $(_SINGLE
)$(NO_TRACE_MAKE
) -C target
/linux oldconfig
100 kernel_menuconfig
: prepare_kernel_conf
101 $(_SINGLE
)$(NO_TRACE_MAKE
) -C target
/linux menuconfig
103 tmp
/.prereq-build
: include/prereq-build.mk
106 @
$(_SINGLE
)$(NO_TRACE_MAKE
) -j1
-r
-s
-f
$(TOPDIR
)/include/prereq-build.mk prereq
2>/dev
/null ||
{ \
107 echo
"Prerequisite check failed. Use FORCE=1 to override."; \
112 download
: .config FORCE
113 @
+$(SUBMAKE
) tools
/download
114 @
+$(SUBMAKE
) toolchain
/download
115 @
+$(SUBMAKE
) package
/download
116 @
+$(SUBMAKE
) target
/download
118 clean dirclean
: .config
121 prereq
:: prepare-tmpinfo .config
122 @
+$(MAKE
) -r
-s tmp
/.prereq-build
$(PREP_MK
)
123 @
+$(NO_TRACE_MAKE
) -r
-s
$@
126 @
+$(PREP_MK
) $(NO_TRACE_MAKE
) -r
-s prereq
132 docs docs
/compile
: FORCE
133 @
$(_SINGLE
)$(SUBMAKE
) -C docs compile
136 @
$(_SINGLE
)$(SUBMAKE
) -C docs
clean
139 rm -rf tmp build_dir staging_dir dl .config
* feeds package
/feeds package
/openwrt-packages bin
140 @
$(_SINGLE
)$(SUBMAKE
) -C scripts
/config
clean
142 ifeq ($(findstring v
,$(DEBUG
)),)
143 .SILENT
: symlinkclean
clean dirclean
distclean config-clean download help tmpinfo-clean .config scripts
/config
/mconf scripts
/config
/conf menuconfig tmp
/.prereq-build tmp
/.prereq-package prepare-tmpinfo