2005-10-22 02:06:20 +02:00
|
|
|
# Makefile for OpenWrt
|
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
|
|
|
#
|
2006-06-27 02:35:46 +02:00
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
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)
|
2016-03-24 22:40:13 +01:00
|
|
|
$(if $(findstring $(space),$(TOPDIR)),$(error ERROR: The path to the LEDE directory must not include any spaces))
|
2012-10-21 04:00:11 +02:00
|
|
|
|
2007-07-30 20:22:01 +02:00
|
|
|
world:
|
|
|
|
|
2017-02-20 14:24:54 +01:00
|
|
|
export PATH:=$(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
|
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
|
|
|
|
2017-01-18 17:56:13 +01:00
|
|
|
$(toolchain/stamp-compile): $(tools/stamp-compile)
|
|
|
|
$(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)
|
|
|
|
|
2007-07-28 15:00:43 +02:00
|
|
|
clean: FORCE
|
2016-08-03 12:22:04 +02:00
|
|
|
rm -rf $(BUILD_DIR) $(STAGING_DIR) $(BIN_DIR) $(OUTPUT_DIR)/packages/$(ARCH_PACKAGES) $(BUILD_LOG_DIR) $(TOPDIR)/staging_dir/packages
|
2005-01-16 12:43:02 +01:00
|
|
|
|
2007-07-28 15:00:43 +02:00
|
|
|
dirclean: clean
|
2017-01-18 19:47:36 +01:00
|
|
|
rm -rf $(STAGING_DIR_HOST) $(STAGING_DIR_HOSTPKG) $(TOOLCHAIN_DIR) $(BUILD_DIR_BASE)/host $(BUILD_DIR_BASE)/hostpkg $(BUILD_DIR_TOOLCHAIN)
|
2007-12-04 04:04:37 +01:00
|
|
|
rm -rf $(TMP_DIR)
|
2007-02-16 17:59:44 +01:00
|
|
|
|
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
|
2015-03-28 14:38:34 +01:00
|
|
|
@if [ ! -f "$(INCLUDE_DIR)/site/$(ARCH)" ]; then \
|
|
|
|
echo 'ERROR: Missing site config for architecture "$(ARCH)" !'; \
|
2012-01-19 13:19:28 +01:00
|
|
|
echo ' The missing file will cause configure scripts to fail during compilation.'; \
|
2015-03-28 14:38:34 +01:00
|
|
|
echo ' Please provide a "$(INCLUDE_DIR)/site/$(ARCH)" file and restart the build.'; \
|
2012-01-19 13:19:28 +01:00
|
|
|
exit 1; \
|
|
|
|
fi
|
2007-07-30 20:22:01 +02:00
|
|
|
|
2016-07-26 15:05:35 +02:00
|
|
|
checksum: FORCE
|
|
|
|
$(call sha256sums,$(BIN_DIR))
|
|
|
|
|
2017-01-04 09:03:50 +01:00
|
|
|
diffconfig: FORCE
|
2017-01-06 18:51:35 +01:00
|
|
|
mkdir -p $(BIN_DIR)
|
2017-01-04 09:03:50 +01:00
|
|
|
$(SCRIPT_DIR)/diffconfig.sh > $(BIN_DIR)/config.seed
|
|
|
|
|
2017-01-18 17:56:13 +01:00
|
|
|
prepare: .config $(tools/stamp-compile) $(toolchain/stamp-compile)
|
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
|
2017-01-04 09:03:50 +01:00
|
|
|
$(_SINGLE)$(SUBMAKE) -r diffconfig
|
2016-07-26 15:05:35 +02:00
|
|
|
$(_SINGLE)$(SUBMAKE) -r checksum
|
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
|