| 
									
										
										
										
											2020-09-21 16:48:37 -10:00
										 |  |  | # SPDX-License-Identifier: GPL-2.0-only
 | 
					
						
							| 
									
										
										
										
											2005-01-16 11:43:02 +00:00
										 |  |  | #
 | 
					
						
							| 
									
										
										
										
											2007-07-28 13:29:03 +00:00
										 |  |  | # Copyright (C) 2007 OpenWrt.org
 | 
					
						
							| 
									
										
										
										
											2005-01-16 11:43:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-28 13:00:43 +00:00
										 |  |  | TOPDIR:=${CURDIR} | 
					
						
							|  |  |  | LC_ALL:=C | 
					
						
							|  |  |  | LANG:=C | 
					
						
							| 
									
										
										
										
											2016-01-28 22:42:18 +00:00
										 |  |  | TZ:=UTC | 
					
						
							|  |  |  | export TOPDIR LC_ALL LANG TZ | 
					
						
							| 
									
										
										
										
											2005-01-16 11:43:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-21 02:00:11 +00: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 02:00:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-30 18:22:01 +00:00
										 |  |  | world: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-01 16:49:20 +01:00
										 |  |  | DISTRO_PKG_CONFIG:=$(shell $(TOPDIR)/scripts/command_all.sh pkg-config | grep -e '/usr' -e '/nix/store' -m 1) | 
					
						
							| 
									
										
										
										
											2023-05-25 02:31:17 -04: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 18:22:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-28 13:00:43 +00:00
										 |  |  | ifneq ($(OPENWRT_BUILD),1) | 
					
						
							| 
									
										
										
										
											2008-08-16 16:59:47 +00:00
										 |  |  |   _SINGLE=export MAKEFLAGS=$(space); | 
					
						
							| 
									
										
										
										
											2008-06-09 15:38:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-30 18:22:01 +00:00
										 |  |  |   override OPENWRT_BUILD=1 | 
					
						
							|  |  |  |   export OPENWRT_BUILD | 
					
						
							| 
									
										
										
										
											2010-07-31 22:32:21 +00:00
										 |  |  |   GREP_OPTIONS= | 
					
						
							|  |  |  |   export GREP_OPTIONS | 
					
						
							| 
									
										
										
										
											2018-08-20 12:13:29 +02:00
										 |  |  |   CDPATH= | 
					
						
							|  |  |  |   export CDPATH | 
					
						
							| 
									
										
										
										
											2007-08-30 21:12:39 +00:00
										 |  |  |   include $(TOPDIR)/include/debug.mk | 
					
						
							| 
									
										
										
										
											2007-10-14 02:28:34 +00:00
										 |  |  |   include $(TOPDIR)/include/depends.mk | 
					
						
							| 
									
										
										
										
											2007-07-28 13:29:03 +00:00
										 |  |  |   include $(TOPDIR)/include/toplevel.mk | 
					
						
							| 
									
										
										
										
											2007-07-28 13:00:43 +00:00
										 |  |  | else | 
					
						
							| 
									
										
										
										
											2007-07-28 13:29:03 +00:00
										 |  |  |   include rules.mk | 
					
						
							| 
									
										
										
										
											2007-07-28 13:00:43 +00:00
										 |  |  |   include $(INCLUDE_DIR)/depends.mk | 
					
						
							|  |  |  |   include $(INCLUDE_DIR)/subdir.mk | 
					
						
							| 
									
										
										
										
											2007-07-30 21:14:08 +00:00
										 |  |  |   include target/Makefile | 
					
						
							| 
									
										
										
										
											2007-07-30 18:22:01 +00:00
										 |  |  |   include package/Makefile | 
					
						
							| 
									
										
										
										
											2007-07-28 13:00:43 +00:00
										 |  |  |   include tools/Makefile | 
					
						
							| 
									
										
										
										
											2007-07-28 13:29:03 +00:00
										 |  |  |   include toolchain/Makefile | 
					
						
							| 
									
										
										
										
											2006-05-31 14:32:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-06-06 19:28:52 +02:00
										 |  |  | # Include the test suite Makefile if it exists
 | 
					
						
							|  |  |  | -include tests/Makefile | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-16 12:46:21 -08: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 11:42:47 +00:00
										 |  |  | $(package/stamp-install): $(package/stamp-compile) | 
					
						
							| 
									
										
										
										
											2012-10-06 16:01:06 +00: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 21:14:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-01 17:51:36 +00:00
										 |  |  | printdb: | 
					
						
							|  |  |  | 	@true | 
					
						
							| 
									
										
										
										
											2007-08-07 00:04:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-28 18:40:37 +00:00
										 |  |  | prepare: $(target/stamp-compile) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-16 12:46:21 -08:00
										 |  |  | _clean: FORCE | 
					
						
							| 
									
										
										
										
											2022-04-24 09:58:25 +08:00
										 |  |  | 	rm -rf $(BUILD_DIR) $(STAGING_DIR) $(BIN_DIR) $(OUTPUT_DIR)/packages/$(ARCH_PACKAGES) $(TOPDIR)/staging_dir/packages | 
					
						
							| 
									
										
										
										
											2005-01-16 11:43:02 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-16 12:46:21 -08: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 03:04:37 +00:00
										 |  |  | 	rm -rf $(TMP_DIR) | 
					
						
							| 
									
										
										
										
											2020-03-10 15:13:40 +00:00
										 |  |  | 	$(MAKE) -C $(TOPDIR)/scripts/config clean | 
					
						
							| 
									
										
										
										
											2021-11-16 12:46:21 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | toolchain_rebuild_check: | 
					
						
							|  |  |  | 	$(SCRIPT_DIR)/check-toolchain-clean.sh | 
					
						
							| 
									
										
										
										
											2007-02-16 16:59:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-12 21:43:46 +03:00
										 |  |  | cacheclean: | 
					
						
							|  |  |  | ifneq ($(CONFIG_CCACHE),) | 
					
						
							| 
									
										
										
										
											2021-01-01 11:46:04 +01:00
										 |  |  | 	$(STAGING_DIR_HOST)/bin/ccache -C | 
					
						
							| 
									
										
										
										
											2020-06-12 21:43:46 +03:00
										 |  |  | endif | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-01 17:51:36 +00:00
										 |  |  | ifndef DUMP_TARGET_DB | 
					
						
							|  |  |  | $(BUILD_DIR)/.prepared: Makefile | 
					
						
							|  |  |  | 	@mkdir -p $$(dirname $@) | 
					
						
							|  |  |  | 	@touch $@ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-04 23:15:17 +00:00
										 |  |  | tmp/.prereq_packages: .config | 
					
						
							|  |  |  | 	unset ERROR; \
 | 
					
						
							|  |  |  | 	for package in $(sort $(prereq-y) $(prereq-m)); do \
 | 
					
						
							| 
									
										
										
										
											2008-08-16 16:59:47 +00:00
										 |  |  | 		$(_SINGLE)$(NO_TRACE_MAKE) -s -r -C package/$$package prereq || ERROR=1; \
 | 
					
						
							| 
									
										
										
										
											2008-08-04 23:15:17 +00:00
										 |  |  | 	done; \
 | 
					
						
							|  |  |  | 	if [ -n "$$ERROR" ]; then \
 | 
					
						
							|  |  |  | 		echo "Package prerequisite check failed."; \
 | 
					
						
							|  |  |  | 		false; \
 | 
					
						
							|  |  |  | 	fi | 
					
						
							|  |  |  | 	touch $@ | 
					
						
							| 
									
										
										
										
											2010-09-01 17:51:36 +00:00
										 |  |  | endif | 
					
						
							| 
									
										
										
										
											2008-08-04 23:15:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-30 18:22:01 +00:00
										 |  |  | # check prerequisites before starting to build
 | 
					
						
							| 
									
										
										
										
											2008-08-04 23:15:17 +00:00
										 |  |  | prereq: $(target/stamp-prereq) tmp/.prereq_packages | 
					
						
							| 
									
										
										
										
											2021-03-02 11:34:22 +00: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 18:22:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-12 12:55:41 -10: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 19:51:35 +02: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 09:53:40 -10:00
										 |  |  | buildinfo: FORCE | 
					
						
							| 
									
										
										
										
											2019-06-13 02:24:04 +02:00
										 |  |  | 	$(_SINGLE)$(SUBMAKE) -r diffconfig buildversion feedsversion | 
					
						
							| 
									
										
										
										
											2017-01-06 16:47:18 +05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-13 09:53:40 -10:00
										 |  |  | prepare: .config $(tools/stamp-compile) $(toolchain/stamp-compile) | 
					
						
							|  |  |  | 	$(_SINGLE)$(SUBMAKE) -r buildinfo | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-06 16:01:06 +00:00
										 |  |  | world: prepare $(target/stamp-compile) $(package/stamp-compile) $(package/stamp-install) $(target/stamp-install) FORCE | 
					
						
							| 
									
										
										
										
											2009-03-03 14:16:48 +00:00
										 |  |  | 	$(_SINGLE)$(SUBMAKE) -r package/index | 
					
						
							| 
									
										
										
										
											2020-03-12 12:55:41 -10:00
										 |  |  | 	$(_SINGLE)$(SUBMAKE) -r json_overview_image_info | 
					
						
							| 
									
										
										
										
											2016-07-26 15:05:35 +02:00
										 |  |  | 	$(_SINGLE)$(SUBMAKE) -r checksum | 
					
						
							| 
									
										
										
										
											2020-06-12 21:43:46 +03:00
										 |  |  | ifneq ($(CONFIG_CCACHE),) | 
					
						
							|  |  |  | 	$(STAGING_DIR_HOST)/bin/ccache -s | 
					
						
							|  |  |  | endif | 
					
						
							| 
									
										
										
										
											2006-05-31 12:33:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-20 17:08:24 +00:00
										 |  |  | .PHONY: clean dirclean prereq prepare world package/symlinks package/symlinks-install package/symlinks-clean | 
					
						
							| 
									
										
										
										
											2007-09-15 08:53:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-28 13:00:43 +00:00
										 |  |  | endif |