3 # Copyright (C) 2007 OpenWrt.org
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
12 export TOPDIR LC_ALL LANG
15 space:= $(empty) $(empty)
16 $(if $(findstring $(space),$(TOPDIR)),$(error ERROR: The path to the OpenWrt directory must not include any spaces))
20 include $(TOPDIR)/include/host.mk
22 ifneq ($(OPENWRT_BUILD),1)
23 _SINGLE=export MAKEFLAGS=$(space);
25 override OPENWRT_BUILD=1
29 include $(TOPDIR)/include/debug.mk
30 include $(TOPDIR)/include/depends.mk
31 include $(TOPDIR)/include/toplevel.mk
34 include $(INCLUDE_DIR)/depends.mk
35 include $(INCLUDE_DIR)/subdir.mk
36 include target/Makefile
37 include package/Makefile
38 include tools/Makefile
39 include toolchain/Makefile
41 $(toolchain/stamp-install): $(tools/stamp-install)
42 $(target/stamp-compile): $(toolchain/stamp-install) $(tools/stamp-install) $(BUILD_DIR)/.prepared
43 $(package/stamp-compile): $(target/stamp-compile) $(package/stamp-cleanup)
44 $(package/stamp-install): $(package/stamp-compile)
45 $(target/stamp-install): $(package/stamp-compile) $(package/stamp-install)
50 prepare: $(target/stamp-compile)
53 rm -rf $(BUILD_DIR) $(BIN_DIR) $(BUILD_LOG_DIR)
56 rm -rf $(STAGING_DIR) $(STAGING_DIR_HOST) $(STAGING_DIR_TOOLCHAIN) $(TOOLCHAIN_DIR) $(BUILD_DIR_HOST) $(BUILD_DIR_TOOLCHAIN)
60 $(BUILD_DIR)/.prepared: Makefile
61 @mkdir -p $$(dirname $@)
64 tmp/.prereq_packages: .config
66 for package in $(sort $(prereq-y) $(prereq-m)); do \
67 $(_SINGLE)$(NO_TRACE_MAKE) -s -r -C package/$$package prereq || ERROR=1; \
69 if [ -n "$$ERROR" ]; then \
70 echo "Package prerequisite check failed."; \
76 # check prerequisites before starting to build
77 prereq: $(target/stamp-prereq) tmp/.prereq_packages
78 @if [ ! -f "$(INCLUDE_DIR)/site/$(ARCH)" ]; then \
79 echo 'ERROR: Missing site config for architecture "$(ARCH)" !'; \
80 echo ' The missing file will cause configure scripts to fail during compilation.'; \
81 echo ' Please provide a "$(INCLUDE_DIR)/site/$(ARCH)" file and restart the build.'; \
85 prepare: .config $(tools/stamp-install) $(toolchain/stamp-install)
86 world: prepare $(target/stamp-compile) $(package/stamp-compile) $(package/stamp-install) $(target/stamp-install) FORCE
87 $(_SINGLE)$(SUBMAKE) -r package/index
89 # update all feeds, re-create index files, install symlinks
91 $(SCRIPT_DIR)/feeds update -a
92 $(SCRIPT_DIR)/feeds install -a
94 # re-create index files, install symlinks
95 package/symlinks-install:
96 $(SCRIPT_DIR)/feeds update -i
97 $(SCRIPT_DIR)/feeds install -a
99 # remove all symlinks, don't touch ./feeds
100 package/symlinks-clean:
101 $(SCRIPT_DIR)/feeds uninstall -a
103 .PHONY: clean dirclean prereq prepare world package/symlinks package/symlinks-install package/symlinks-clean