2007-07-28 21:00:43 +08:00
|
|
|
# Makefile for OpenWrt
|
|
|
|
#
|
2012-10-08 21:12:37 +08:00
|
|
|
# Copyright (C) 2007-2012 OpenWrt.org
|
2007-07-28 21:00:43 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2012-10-08 21:12:37 +08:00
|
|
|
RELEASE:=Barrier Breaker
|
2007-07-31 02:22:01 +08:00
|
|
|
PREP_MK= OPENWRT_BUILD= QUIET=0
|
2007-12-13 14:25:54 +08:00
|
|
|
|
2013-03-18 05:12:02 +08:00
|
|
|
export IS_TTY=$(shell tty -s && echo 1 || echo 0)
|
|
|
|
|
2007-07-28 21:29:03 +08:00
|
|
|
include $(TOPDIR)/include/verbose.mk
|
2007-12-13 14:25:54 +08:00
|
|
|
|
2007-12-14 08:33:25 +08:00
|
|
|
ifeq ($(SDK),1)
|
|
|
|
include $(TOPDIR)/include/version.mk
|
|
|
|
else
|
|
|
|
REVISION:=$(shell $(TOPDIR)/scripts/getver.sh)
|
|
|
|
endif
|
|
|
|
|
2012-07-16 22:14:12 +08:00
|
|
|
HOSTCC ?= gcc
|
2007-12-13 14:25:54 +08:00
|
|
|
OPENWRTVERSION:=$(RELEASE)$(if $(REVISION), ($(REVISION)))
|
|
|
|
export RELEASE
|
|
|
|
export REVISION
|
2007-07-28 21:00:43 +08:00
|
|
|
export OPENWRTVERSION
|
2012-05-18 04:19:43 +08:00
|
|
|
export LD_LIBRARY_PATH:=$(subst ::,:,$(if $(LD_LIBRARY_PATH),$(LD_LIBRARY_PATH):)$(STAGING_DIR_HOST)/lib)
|
|
|
|
export DYLD_LIBRARY_PATH:=$(subst ::,:,$(if $(DYLD_LIBRARY_PATH),$(DYLD_LIBRARY_PATH):)$(STAGING_DIR_HOST)/lib)
|
2012-05-08 21:30:54 +08:00
|
|
|
export GIT_CONFIG_PARAMETERS='core.autocrlf=false'
|
2012-09-23 17:49:52 +08:00
|
|
|
export MAKE_JOBSERVER=$(filter --jobserver%,$(MAKEFLAGS))
|
2007-07-28 21:00:43 +08:00
|
|
|
|
2009-05-08 07:50:19 +08:00
|
|
|
# prevent perforce from messing with the patch utility
|
2009-05-08 23:35:27 +08:00
|
|
|
unexport P4PORT P4USER P4CONFIG P4CLIENT
|
2009-05-08 07:50:19 +08:00
|
|
|
|
2010-01-26 05:45:10 +08:00
|
|
|
# prevent user defaults for quilt from interfering
|
|
|
|
unexport QUILT_PATCHES QUILT_PATCH_OPTS
|
|
|
|
|
2012-07-11 17:59:06 +08:00
|
|
|
unexport C_INCLUDE_PATH CROSS_COMPILE ARCH
|
2012-03-06 05:39:07 +08:00
|
|
|
|
2012-04-05 22:33:03 +08:00
|
|
|
# prevent distro default LPATH from interfering
|
|
|
|
unexport LPATH
|
|
|
|
|
2008-09-25 22:10:04 +08:00
|
|
|
# make sure that a predefined CFLAGS variable does not disturb packages
|
|
|
|
export CFLAGS=
|
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
ifeq ($(FORCE),)
|
|
|
|
.config scripts/config/conf scripts/config/mconf: tmp/.prereq-build
|
|
|
|
endif
|
|
|
|
|
|
|
|
SCAN_COOKIE?=$(shell echo $$$$)
|
|
|
|
export SCAN_COOKIE
|
|
|
|
|
2010-10-14 23:53:47 +08:00
|
|
|
SUBMAKE:=umask 022; $(SUBMAKE)
|
|
|
|
|
2012-10-31 08:23:47 +08:00
|
|
|
ULIMIT_FIX=_limit=`ulimit -n`; [ "$$_limit" = "unlimited" -o "$$_limit" -ge 1024 ] || ulimit -n 1024;
|
|
|
|
|
2007-09-23 10:39:01 +08:00
|
|
|
prepare-mk: FORCE ;
|
|
|
|
|
2007-07-31 05:14:08 +08:00
|
|
|
prepare-tmpinfo: FORCE
|
2007-07-31 02:22:01 +08:00
|
|
|
mkdir -p tmp/info
|
2009-08-31 09:11:25 +08:00
|
|
|
$(_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=""
|
2009-03-03 22:16:48 +08:00
|
|
|
$(_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"
|
2007-07-31 02:22:01 +08:00
|
|
|
for type in package target; do \
|
2007-07-28 21:00:43 +08:00
|
|
|
f=tmp/.$${type}info; t=tmp/.config-$${type}.in; \
|
2007-09-23 10:39:01 +08:00
|
|
|
[ "$$t" -nt "$$f" ] || ./scripts/metadata.pl $${type}_config "$$f" > "$$t" || { rm -f "$$t"; echo "Failed to build $$t"; false; break; }; \
|
2007-07-28 21:00:43 +08:00
|
|
|
done
|
2007-09-23 10:39:01 +08:00
|
|
|
./scripts/metadata.pl package_mk tmp/.packageinfo > tmp/.packagedeps || { rm -f tmp/.packagedeps; false; }
|
2007-07-31 05:14:08 +08:00
|
|
|
touch $(TOPDIR)/tmp/.build
|
2007-07-28 21:00:43 +08:00
|
|
|
|
2009-03-03 23:08:55 +08:00
|
|
|
.config: ./scripts/config/conf $(if $(CONFIG_HAVE_DOT_CONFIG),,prepare-tmpinfo)
|
2008-10-19 03:37:34 +08:00
|
|
|
@+if [ \! -e .config ] || ! grep CONFIG_HAVE_DOT_CONFIG .config >/dev/null; then \
|
2007-07-28 21:00:43 +08:00
|
|
|
[ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config; \
|
2008-08-17 00:59:47 +08:00
|
|
|
$(_SINGLE)$(NO_TRACE_MAKE) menuconfig $(PREP_MK); \
|
2007-07-28 21:00:43 +08:00
|
|
|
fi
|
|
|
|
|
|
|
|
scripts/config/mconf:
|
2012-07-16 22:14:12 +08:00
|
|
|
@$(_SINGLE)$(SUBMAKE) -s -C scripts/config all CC="$(HOSTCC)"
|
2007-07-28 21:00:43 +08:00
|
|
|
|
2007-10-14 10:28:34 +08:00
|
|
|
$(eval $(call rdep,scripts/config,scripts/config/mconf))
|
2007-10-14 10:15:37 +08:00
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
scripts/config/conf:
|
2012-07-16 22:14:12 +08:00
|
|
|
@$(_SINGLE)$(SUBMAKE) -s -C scripts/config conf CC="$(HOSTCC)"
|
2007-07-28 21:00:43 +08:00
|
|
|
|
|
|
|
config: scripts/config/conf prepare-tmpinfo FORCE
|
|
|
|
$< Config.in
|
|
|
|
|
|
|
|
config-clean: FORCE
|
2008-08-17 00:59:47 +08:00
|
|
|
$(_SINGLE)$(NO_TRACE_MAKE) -C scripts/config clean
|
2007-07-28 21:00:43 +08:00
|
|
|
|
|
|
|
defconfig: scripts/config/conf prepare-tmpinfo FORCE
|
|
|
|
touch .config
|
2013-09-03 02:25:06 +08:00
|
|
|
@if [ -e $(HOME)/.openwrt/defconfig ]; then cp $(HOME)/.openwrt/defconfig .config; fi
|
2013-04-18 21:51:16 +08:00
|
|
|
$< --defconfig=.config Config.in
|
2013-04-18 20:05:16 +08:00
|
|
|
|
|
|
|
confdefault-y=allyes
|
|
|
|
confdefault-m=allmod
|
|
|
|
confdefault-n=allno
|
|
|
|
confdefault:=$(confdefault-$(CONFDEFAULT))
|
2007-07-28 21:00:43 +08:00
|
|
|
|
|
|
|
oldconfig: scripts/config/conf prepare-tmpinfo FORCE
|
2013-04-18 20:05:16 +08:00
|
|
|
$< --$(if $(confdefault),$(confdefault),old)config Config.in
|
2007-07-28 21:00:43 +08:00
|
|
|
|
|
|
|
menuconfig: scripts/config/mconf prepare-tmpinfo FORCE
|
2008-10-19 04:16:40 +08:00
|
|
|
if [ \! -e .config -a -e $(HOME)/.openwrt/defconfig ]; then \
|
2007-07-28 21:00:43 +08:00
|
|
|
cp $(HOME)/.openwrt/defconfig .config; \
|
|
|
|
fi
|
|
|
|
$< Config.in
|
|
|
|
|
2009-04-27 18:39:03 +08:00
|
|
|
prepare_kernel_conf: .config FORCE
|
|
|
|
|
2012-01-09 00:52:41 +08:00
|
|
|
ifeq ($(wildcard staging_dir/host/bin/quilt),)
|
2009-04-27 18:39:03 +08:00
|
|
|
prepare_kernel_conf:
|
2012-01-09 00:52:41 +08:00
|
|
|
@+$(SUBMAKE) -r tools/quilt/install
|
2009-04-27 18:39:03 +08:00
|
|
|
else
|
|
|
|
prepare_kernel_conf: ;
|
|
|
|
endif
|
|
|
|
|
|
|
|
kernel_oldconfig: prepare_kernel_conf
|
2008-08-17 00:59:47 +08:00
|
|
|
$(_SINGLE)$(NO_TRACE_MAKE) -C target/linux oldconfig
|
2007-07-28 21:00:43 +08:00
|
|
|
|
2009-04-27 18:39:03 +08:00
|
|
|
kernel_menuconfig: prepare_kernel_conf
|
2008-08-17 00:59:47 +08:00
|
|
|
$(_SINGLE)$(NO_TRACE_MAKE) -C target/linux menuconfig
|
2007-07-28 21:00:43 +08:00
|
|
|
|
2010-08-07 05:36:35 +08:00
|
|
|
kernel_nconfig: prepare_kernel_conf
|
|
|
|
$(_SINGLE)$(NO_TRACE_MAKE) -C target/linux nconfig
|
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
tmp/.prereq-build: include/prereq-build.mk
|
|
|
|
mkdir -p tmp
|
|
|
|
rm -f tmp/.host.mk
|
2009-03-03 22:16:48 +08:00
|
|
|
@$(_SINGLE)$(NO_TRACE_MAKE) -j1 -r -s -f $(TOPDIR)/include/prereq-build.mk prereq 2>/dev/null || { \
|
2007-07-28 21:00:43 +08:00
|
|
|
echo "Prerequisite check failed. Use FORCE=1 to override."; \
|
|
|
|
false; \
|
|
|
|
}
|
|
|
|
touch $@
|
|
|
|
|
2010-09-02 01:51:36 +08:00
|
|
|
printdb: FORCE
|
|
|
|
@$(_SINGLE)$(NO_TRACE_MAKE) -p $@ V=99 DUMP_TARGET_DB=1 2>&1
|
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
download: .config FORCE
|
2008-06-09 23:38:45 +08:00
|
|
|
@+$(SUBMAKE) tools/download
|
|
|
|
@+$(SUBMAKE) toolchain/download
|
|
|
|
@+$(SUBMAKE) package/download
|
|
|
|
@+$(SUBMAKE) target/download
|
2007-07-28 21:00:43 +08:00
|
|
|
|
2007-12-04 11:04:37 +08:00
|
|
|
clean dirclean: .config
|
2009-03-03 22:16:48 +08:00
|
|
|
@+$(SUBMAKE) -r $@
|
2007-07-28 21:00:43 +08:00
|
|
|
|
2009-03-03 23:08:55 +08:00
|
|
|
prereq:: prepare-tmpinfo .config
|
2009-03-03 22:16:48 +08:00
|
|
|
@+$(MAKE) -r -s tmp/.prereq-build $(PREP_MK)
|
|
|
|
@+$(NO_TRACE_MAKE) -r -s $@
|
2007-07-31 02:22:01 +08:00
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
%::
|
2011-04-17 10:16:52 +08:00
|
|
|
@+$(PREP_MK) $(NO_TRACE_MAKE) -r -s prereq
|
2011-04-04 08:54:33 +08:00
|
|
|
@( \
|
|
|
|
cp .config tmp/.config; \
|
2013-09-03 02:25:06 +08:00
|
|
|
./scripts/config/conf --defconfig=tmp/.config -w tmp/.config Config.in > /dev/null 2>&1; \
|
2011-04-04 08:54:33 +08:00
|
|
|
if ./scripts/kconfig.pl '>' .config tmp/.config | grep -q CONFIG; then \
|
2013-03-18 05:12:02 +08:00
|
|
|
printf "$(_R)WARNING: your configuration is out of sync. Please run make menuconfig, oldconfig or defconfig!$(_N)\n" >&2; \
|
2011-04-04 08:54:33 +08:00
|
|
|
fi \
|
|
|
|
)
|
2012-10-31 08:23:47 +08:00
|
|
|
@+$(ULIMIT_FIX) $(SUBMAKE) -r $@
|
2007-07-28 21:00:43 +08:00
|
|
|
|
|
|
|
help:
|
|
|
|
cat README
|
|
|
|
|
|
|
|
docs docs/compile: FORCE
|
2008-08-17 00:59:47 +08:00
|
|
|
@$(_SINGLE)$(SUBMAKE) -C docs compile
|
2007-07-28 21:00:43 +08:00
|
|
|
|
|
|
|
docs/clean: FORCE
|
2008-08-17 00:59:47 +08:00
|
|
|
@$(_SINGLE)$(SUBMAKE) -C docs clean
|
2007-07-28 21:00:43 +08:00
|
|
|
|
2007-08-07 08:04:25 +08:00
|
|
|
distclean:
|
2008-04-26 15:51:38 +08:00
|
|
|
rm -rf tmp build_dir staging_dir dl .config* feeds package/feeds package/openwrt-packages bin
|
2008-08-17 00:59:47 +08:00
|
|
|
@$(_SINGLE)$(SUBMAKE) -C scripts/config clean
|
2007-08-07 08:04:25 +08:00
|
|
|
|
2007-07-31 02:22:01 +08:00
|
|
|
ifeq ($(findstring v,$(DEBUG)),)
|
2007-09-07 00:27:37 +08:00
|
|
|
.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
|
2007-07-31 02:22:01 +08:00
|
|
|
endif
|
2007-07-28 21:00:43 +08:00
|
|
|
.PHONY: help FORCE
|
|
|
|
.NOTPARALLEL:
|
|
|
|
|