2005-10-22 08:06:20 +08:00
|
|
|
# Makefile for OpenWrt
|
2005-01-16 19:43:02 +08:00
|
|
|
#
|
2007-07-28 21:29:03 +08:00
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
2005-01-16 19:43:02 +08:00
|
|
|
#
|
2006-06-27 08:35:46 +08:00
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
2005-01-16 19:43:02 +08:00
|
|
|
#
|
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
TOPDIR:=${CURDIR}
|
|
|
|
LC_ALL:=C
|
|
|
|
LANG:=C
|
2016-01-29 06:42:18 +08:00
|
|
|
TZ:=UTC
|
|
|
|
export TOPDIR LC_ALL LANG TZ
|
2005-01-16 19:43:02 +08:00
|
|
|
|
2012-10-21 10:00:11 +08:00
|
|
|
empty:=
|
|
|
|
space:= $(empty) $(empty)
|
|
|
|
$(if $(findstring $(space),$(TOPDIR)),$(error ERROR: The path to the OpenWrt directory must not include any spaces))
|
|
|
|
|
2007-07-31 02:22:01 +08:00
|
|
|
world:
|
|
|
|
|
|
|
|
include $(TOPDIR)/include/host.mk
|
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
ifneq ($(OPENWRT_BUILD),1)
|
2008-08-17 00:59:47 +08:00
|
|
|
_SINGLE=export MAKEFLAGS=$(space);
|
2008-06-09 23:38:45 +08:00
|
|
|
|
2007-07-31 02:22:01 +08:00
|
|
|
override OPENWRT_BUILD=1
|
|
|
|
export OPENWRT_BUILD
|
2010-08-01 06:32:21 +08:00
|
|
|
GREP_OPTIONS=
|
|
|
|
export GREP_OPTIONS
|
2007-08-31 05:12:39 +08:00
|
|
|
include $(TOPDIR)/include/debug.mk
|
2007-10-14 10:28:34 +08:00
|
|
|
include $(TOPDIR)/include/depends.mk
|
2007-07-28 21:29:03 +08:00
|
|
|
include $(TOPDIR)/include/toplevel.mk
|
2007-07-28 21:00:43 +08:00
|
|
|
else
|
2007-07-28 21:29:03 +08:00
|
|
|
include rules.mk
|
2007-07-28 21:00:43 +08:00
|
|
|
include $(INCLUDE_DIR)/depends.mk
|
|
|
|
include $(INCLUDE_DIR)/subdir.mk
|
2007-07-31 05:14:08 +08:00
|
|
|
include target/Makefile
|
2007-07-31 02:22:01 +08:00
|
|
|
include package/Makefile
|
2007-07-28 21:00:43 +08:00
|
|
|
include tools/Makefile
|
2007-07-28 21:29:03 +08:00
|
|
|
include toolchain/Makefile
|
2006-05-31 22:32:17 +08:00
|
|
|
|
2007-11-04 19:42:47 +08:00
|
|
|
$(toolchain/stamp-install): $(tools/stamp-install)
|
2007-08-07 08:04:25 +08:00
|
|
|
$(target/stamp-compile): $(toolchain/stamp-install) $(tools/stamp-install) $(BUILD_DIR)/.prepared
|
2012-10-15 21:19:45 +08:00
|
|
|
$(package/stamp-compile): $(target/stamp-compile) $(package/stamp-cleanup)
|
2007-11-04 19:42:47 +08:00
|
|
|
$(package/stamp-install): $(package/stamp-compile)
|
2012-10-07 00:01:06 +08:00
|
|
|
$(target/stamp-install): $(package/stamp-compile) $(package/stamp-install)
|
2007-07-31 05:14:08 +08:00
|
|
|
|
2010-09-02 01:51:36 +08:00
|
|
|
printdb:
|
|
|
|
@true
|
2007-08-07 08:04:25 +08:00
|
|
|
|
2009-05-29 02:40:37 +08:00
|
|
|
prepare: $(target/stamp-compile)
|
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
clean: FORCE
|
2015-06-15 01:47:16 +08:00
|
|
|
rm -rf $(BUILD_DIR) $(STAGING_DIR) $(BIN_DIR) $(BUILD_LOG_DIR)
|
2005-01-16 19:43:02 +08:00
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
dirclean: clean
|
2015-06-15 01:47:16 +08:00
|
|
|
rm -rf $(STAGING_DIR_HOST) $(TOOLCHAIN_DIR) $(BUILD_DIR_HOST) $(BUILD_DIR_TOOLCHAIN)
|
2007-12-04 11:04:37 +08:00
|
|
|
rm -rf $(TMP_DIR)
|
2007-02-17 00:59:44 +08:00
|
|
|
|
2010-09-02 01:51:36 +08:00
|
|
|
ifndef DUMP_TARGET_DB
|
|
|
|
$(BUILD_DIR)/.prepared: Makefile
|
|
|
|
@mkdir -p $$(dirname $@)
|
|
|
|
@touch $@
|
|
|
|
|
2008-08-05 07:15:17 +08:00
|
|
|
tmp/.prereq_packages: .config
|
|
|
|
unset ERROR; \
|
|
|
|
for package in $(sort $(prereq-y) $(prereq-m)); do \
|
2008-08-17 00:59:47 +08:00
|
|
|
$(_SINGLE)$(NO_TRACE_MAKE) -s -r -C package/$$package prereq || ERROR=1; \
|
2008-08-05 07:15:17 +08:00
|
|
|
done; \
|
|
|
|
if [ -n "$$ERROR" ]; then \
|
|
|
|
echo "Package prerequisite check failed."; \
|
|
|
|
false; \
|
|
|
|
fi
|
|
|
|
touch $@
|
2010-09-02 01:51:36 +08:00
|
|
|
endif
|
2008-08-05 07:15:17 +08:00
|
|
|
|
2007-07-31 02:22:01 +08:00
|
|
|
# check prerequisites before starting to build
|
2008-08-05 07:15:17 +08:00
|
|
|
prereq: $(target/stamp-prereq) tmp/.prereq_packages
|
2015-03-28 21:38:34 +08:00
|
|
|
@if [ ! -f "$(INCLUDE_DIR)/site/$(ARCH)" ]; then \
|
|
|
|
echo 'ERROR: Missing site config for architecture "$(ARCH)" !'; \
|
2012-01-19 20:19:28 +08:00
|
|
|
echo ' The missing file will cause configure scripts to fail during compilation.'; \
|
2015-03-28 21:38:34 +08:00
|
|
|
echo ' Please provide a "$(INCLUDE_DIR)/site/$(ARCH)" file and restart the build.'; \
|
2012-01-19 20:19:28 +08:00
|
|
|
exit 1; \
|
|
|
|
fi
|
2007-07-31 02:22:01 +08:00
|
|
|
|
2007-09-15 16:53:23 +08:00
|
|
|
prepare: .config $(tools/stamp-install) $(toolchain/stamp-install)
|
2012-10-07 00:01:06 +08:00
|
|
|
world: prepare $(target/stamp-compile) $(package/stamp-compile) $(package/stamp-install) $(target/stamp-install) FORCE
|
2009-03-03 22:16:48 +08:00
|
|
|
$(_SINGLE)$(SUBMAKE) -r package/index
|
2006-05-31 20:33:06 +08:00
|
|
|
|
2008-03-21 01:08:24 +08:00
|
|
|
.PHONY: clean dirclean prereq prepare world package/symlinks package/symlinks-install package/symlinks-clean
|
2007-09-15 16:53:23 +08:00
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
endif
|