2020-09-22 04:48:37 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2005-01-16 12:43:02 +01:00
|
|
|
#
|
2007-07-28 15:29:03 +02:00
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
2005-01-16 12:43:02 +01:00
|
|
|
|
2007-07-28 15:00:43 +02:00
|
|
|
TOPDIR:=${CURDIR}
|
|
|
|
LC_ALL:=C
|
|
|
|
LANG:=C
|
2016-01-28 23:42:18 +01:00
|
|
|
TZ:=UTC
|
|
|
|
export TOPDIR LC_ALL LANG TZ
|
2005-01-16 12:43:02 +01:00
|
|
|
|
2012-10-21 04:00:11 +02:00
|
|
|
empty:=
|
|
|
|
space:= $(empty) $(empty)
|
2017-11-07 09:45:50 +01:00
|
|
|
$(if $(findstring $(space),$(TOPDIR)),$(error ERROR: The path to the OpenWrt directory must not include any spaces))
|
2012-10-21 04:00:11 +02:00
|
|
|
|
2007-07-30 20:22:01 +02:00
|
|
|
world:
|
|
|
|
|
2022-09-11 08:15:52 +02:00
|
|
|
DISTRO_PKG_CONFIG:=$(shell $(TOPDIR)/scripts/command_all.sh pkg-config | grep '/usr' -m 1)
|
2023-05-25 08:31:17 +02:00
|
|
|
|
|
|
|
export ORIG_PATH:=$(if $(ORIG_PATH),$(ORIG_PATH),$(PATH))
|
2022-12-02 20:56:12 +01:00
|
|
|
export PATH:=$(if $(STAGING_DIR),$(abspath $(STAGING_DIR)/../host/bin),$(TOPDIR)/staging_dir/host/bin):$(PATH)
|
2007-07-30 20:22:01 +02:00
|
|
|
|
2007-07-28 15:00:43 +02:00
|
|
|
ifneq ($(OPENWRT_BUILD),1)
|
2008-08-16 18:59:47 +02:00
|
|
|
_SINGLE=export MAKEFLAGS=$(space);
|
2008-06-09 17:38:45 +02:00
|
|
|
|
2007-07-30 20:22:01 +02:00
|
|
|
override OPENWRT_BUILD=1
|
|
|
|
export OPENWRT_BUILD
|
2010-08-01 00:32:21 +02:00
|
|
|
GREP_OPTIONS=
|
|
|
|
export GREP_OPTIONS
|
2018-08-20 12:13:29 +02:00
|
|
|
CDPATH=
|
|
|
|
export CDPATH
|
2007-08-30 23:12:39 +02:00
|
|
|
include $(TOPDIR)/include/debug.mk
|
2007-10-14 04:28:34 +02:00
|
|
|
include $(TOPDIR)/include/depends.mk
|
2007-07-28 15:29:03 +02:00
|
|
|
include $(TOPDIR)/include/toplevel.mk
|
2007-07-28 15:00:43 +02:00
|
|
|
else
|
2007-07-28 15:29:03 +02:00
|
|
|
include rules.mk
|
2007-07-28 15:00:43 +02:00
|
|
|
include $(INCLUDE_DIR)/depends.mk
|
|
|
|
include $(INCLUDE_DIR)/subdir.mk
|
2007-07-30 23:14:08 +02:00
|
|
|
include target/Makefile
|
2007-07-30 20:22:01 +02:00
|
|
|
include package/Makefile
|
2007-07-28 15:00:43 +02:00
|
|
|
include tools/Makefile
|
2007-07-28 15:29:03 +02:00
|
|
|
include toolchain/Makefile
|
2006-05-31 16:32:17 +02:00
|
|
|
|
2021-11-16 21:46:21 +01:00
|
|
|
$(toolchain/stamp-compile): $(tools/stamp-compile) $(if $(CONFIG_BUILDBOT),toolchain_rebuild_check)
|
2017-01-18 17:56:13 +01:00
|
|
|
$(target/stamp-compile): $(toolchain/stamp-compile) $(tools/stamp-compile) $(BUILD_DIR)/.prepared
|
2017-01-22 13:47:24 +01:00
|
|
|
$(package/stamp-compile): $(target/stamp-compile) $(package/stamp-cleanup)
|
2007-11-04 12:42:47 +01:00
|
|
|
$(package/stamp-install): $(package/stamp-compile)
|
2012-10-06 18:01:06 +02:00
|
|
|
$(target/stamp-install): $(package/stamp-compile) $(package/stamp-install)
|
2016-12-14 15:36:39 +01:00
|
|
|
check: $(tools/stamp-check) $(toolchain/stamp-check) $(package/stamp-check)
|
2007-07-30 23:14:08 +02:00
|
|
|
|
2010-09-01 19:51:36 +02:00
|
|
|
printdb:
|
|
|
|
@true
|
2007-08-07 02:04:25 +02:00
|
|
|
|
2009-05-28 20:40:37 +02:00
|
|
|
prepare: $(target/stamp-compile)
|
|
|
|
|
2021-11-16 21:46:21 +01:00
|
|
|
_clean: FORCE
|
2022-04-24 03:58:25 +02:00
|
|
|
rm -rf $(BUILD_DIR) $(STAGING_DIR) $(BIN_DIR) $(OUTPUT_DIR)/packages/$(ARCH_PACKAGES) $(TOPDIR)/staging_dir/packages
|
2005-01-16 12:43:02 +01:00
|
|
|
|
2021-11-16 21:46:21 +01:00
|
|
|
clean: _clean
|
|
|
|
rm -rf $(BUILD_LOG_DIR)
|
|
|
|
|
|
|
|
targetclean: _clean
|
|
|
|
rm -rf $(TOOLCHAIN_DIR) $(BUILD_DIR_BASE)/hostpkg $(BUILD_DIR_TOOLCHAIN)
|
|
|
|
|
|
|
|
dirclean: targetclean clean
|
|
|
|
rm -rf $(STAGING_DIR_HOST) $(STAGING_DIR_HOSTPKG) $(BUILD_DIR_BASE)/host
|
2007-12-04 04:04:37 +01:00
|
|
|
rm -rf $(TMP_DIR)
|
2020-03-10 16:13:40 +01:00
|
|
|
$(MAKE) -C $(TOPDIR)/scripts/config clean
|
2021-11-16 21:46:21 +01:00
|
|
|
|
|
|
|
toolchain_rebuild_check:
|
|
|
|
$(SCRIPT_DIR)/check-toolchain-clean.sh
|
2007-02-16 17:59:44 +01:00
|
|
|
|
2020-06-12 20:43:46 +02:00
|
|
|
cacheclean:
|
|
|
|
ifneq ($(CONFIG_CCACHE),)
|
2021-01-01 11:46:04 +01:00
|
|
|
$(STAGING_DIR_HOST)/bin/ccache -C
|
2020-06-12 20:43:46 +02:00
|
|
|
endif
|
|
|
|
|
2010-09-01 19:51:36 +02:00
|
|
|
ifndef DUMP_TARGET_DB
|
|
|
|
$(BUILD_DIR)/.prepared: Makefile
|
|
|
|
@mkdir -p $$(dirname $@)
|
|
|
|
@touch $@
|
|
|
|
|
2008-08-05 01:15:17 +02:00
|
|
|
tmp/.prereq_packages: .config
|
|
|
|
unset ERROR; \
|
|
|
|
for package in $(sort $(prereq-y) $(prereq-m)); do \
|
2008-08-16 18:59:47 +02:00
|
|
|
$(_SINGLE)$(NO_TRACE_MAKE) -s -r -C package/$$package prereq || ERROR=1; \
|
2008-08-05 01:15:17 +02:00
|
|
|
done; \
|
|
|
|
if [ -n "$$ERROR" ]; then \
|
|
|
|
echo "Package prerequisite check failed."; \
|
|
|
|
false; \
|
|
|
|
fi
|
|
|
|
touch $@
|
2010-09-01 19:51:36 +02:00
|
|
|
endif
|
2008-08-05 01:15:17 +02:00
|
|
|
|
2007-07-30 20:22:01 +02:00
|
|
|
# check prerequisites before starting to build
|
2008-08-05 01:15:17 +02:00
|
|
|
prereq: $(target/stamp-prereq) tmp/.prereq_packages
|
2021-03-02 12:34:22 +01:00
|
|
|
@if [ ! -f "$(INCLUDE_DIR)/site/$(ARCH)" ]; then \
|
|
|
|
echo 'ERROR: Missing site config for architecture "$(ARCH)" !'; \
|
|
|
|
echo ' The missing file will cause configure scripts to fail during compilation.'; \
|
|
|
|
echo ' Please provide a "$(INCLUDE_DIR)/site/$(ARCH)" file and restart the build.'; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
2007-07-30 20:22:01 +02:00
|
|
|
|
2020-03-12 23:55:41 +01:00
|
|
|
$(BIN_DIR)/profiles.json: FORCE
|
|
|
|
$(if $(CONFIG_JSON_OVERVIEW_IMAGE_INFO), \
|
|
|
|
WORK_DIR=$(BUILD_DIR)/json_info_files \
|
|
|
|
$(SCRIPT_DIR)/json_overview_image_info.py $@ \
|
|
|
|
)
|
|
|
|
|
|
|
|
json_overview_image_info: $(BIN_DIR)/profiles.json
|
|
|
|
|
2016-07-26 15:05:35 +02:00
|
|
|
checksum: FORCE
|
2018-06-27 18:51:25 +02:00
|
|
|
$(call sha256sums,$(BIN_DIR),$(CONFIG_BUILDBOT))
|
2016-07-26 15:05:35 +02:00
|
|
|
|
2019-06-13 02:24:04 +02:00
|
|
|
buildversion: FORCE
|
|
|
|
$(SCRIPT_DIR)/getver.sh > $(BIN_DIR)/version.buildinfo
|
|
|
|
|
|
|
|
feedsversion: FORCE
|
|
|
|
$(SCRIPT_DIR)/feeds list -fs > $(BIN_DIR)/feeds.buildinfo
|
|
|
|
|
2017-01-04 09:03:50 +01:00
|
|
|
diffconfig: FORCE
|
2017-01-06 18:51:35 +01:00
|
|
|
mkdir -p $(BIN_DIR)
|
2019-06-13 02:24:04 +02:00
|
|
|
$(SCRIPT_DIR)/diffconfig.sh > $(BIN_DIR)/config.buildinfo
|
2017-01-04 09:03:50 +01:00
|
|
|
|
2019-10-13 21:53:40 +02:00
|
|
|
buildinfo: FORCE
|
2019-06-13 02:24:04 +02:00
|
|
|
$(_SINGLE)$(SUBMAKE) -r diffconfig buildversion feedsversion
|
2017-01-06 12:47:18 +01:00
|
|
|
|
2019-10-13 21:53:40 +02:00
|
|
|
prepare: .config $(tools/stamp-compile) $(toolchain/stamp-compile)
|
|
|
|
$(_SINGLE)$(SUBMAKE) -r buildinfo
|
|
|
|
|
2012-10-06 18:01:06 +02:00
|
|
|
world: prepare $(target/stamp-compile) $(package/stamp-compile) $(package/stamp-install) $(target/stamp-install) FORCE
|
2009-03-03 15:16:48 +01:00
|
|
|
$(_SINGLE)$(SUBMAKE) -r package/index
|
2020-03-12 23:55:41 +01:00
|
|
|
$(_SINGLE)$(SUBMAKE) -r json_overview_image_info
|
2016-07-26 15:05:35 +02:00
|
|
|
$(_SINGLE)$(SUBMAKE) -r checksum
|
2020-06-12 20:43:46 +02:00
|
|
|
ifneq ($(CONFIG_CCACHE),)
|
|
|
|
$(STAGING_DIR_HOST)/bin/ccache -s
|
|
|
|
endif
|
2006-05-31 14:33:06 +02:00
|
|
|
|
2008-03-20 18:08:24 +01:00
|
|
|
.PHONY: clean dirclean prereq prepare world package/symlinks package/symlinks-install package/symlinks-clean
|
2007-09-15 10:53:23 +02:00
|
|
|
|
2007-07-28 15:00:43 +02:00
|
|
|
endif
|