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
|
2007-11-04 19:42:47 +08:00
|
|
|
export TOPDIR LC_ALL LANG
|
2005-01-16 19:43:02 +08:00
|
|
|
|
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-06-09 23:38:45 +08:00
|
|
|
# XXX: these three lines are normally defined by rules.mk
|
|
|
|
# but we can't include that file in this context
|
|
|
|
empty:=
|
|
|
|
space:= $(empty) $(empty)
|
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
|
2007-11-04 19:42:47 +08:00
|
|
|
$(package/stamp-cleanup): $(target/stamp-compile)
|
|
|
|
$(package/stamp-compile): $(target/stamp-compile) $(package/stamp-cleanup)
|
|
|
|
$(package/stamp-install): $(package/stamp-compile)
|
|
|
|
$(package/stamp-rootfs-prepare): $(package/stamp-install)
|
|
|
|
$(target/stamp-install): $(package/stamp-compile) $(package/stamp-install) $(package/stamp-rootfs-prepare)
|
2007-07-31 05:14:08 +08:00
|
|
|
|
2007-08-07 08:04:25 +08:00
|
|
|
$(BUILD_DIR)/.prepared: Makefile
|
|
|
|
@mkdir -p $$(dirname $@)
|
|
|
|
@touch $@
|
|
|
|
|
2009-05-29 02:40:37 +08:00
|
|
|
prepare: $(target/stamp-compile)
|
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
clean: FORCE
|
2008-08-17 00:59:47 +08:00
|
|
|
$(_SINGLE)$(SUBMAKE) target/linux/clean
|
2009-05-29 00:30:04 +08:00
|
|
|
rm -rf $(BUILD_DIR) $(BIN_DIR) $(BUILD_LOG_DIR)
|
2005-01-16 19:43:02 +08:00
|
|
|
|
2007-07-28 21:00:43 +08:00
|
|
|
dirclean: clean
|
2008-12-03 12:22:41 +08:00
|
|
|
rm -rf $(STAGING_DIR) $(STAGING_DIR_HOST) $(STAGING_DIR_TOOLCHAIN) $(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
|
|
|
|
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 $@
|
|
|
|
|
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
|
2007-07-31 02:22:01 +08:00
|
|
|
|
2007-09-15 16:53:23 +08:00
|
|
|
prepare: .config $(tools/stamp-install) $(toolchain/stamp-install)
|
|
|
|
world: prepare $(target/stamp-compile) $(package/stamp-cleanup) $(package/stamp-compile) $(package/stamp-install) $(package/stamp-rootfs-prepare) $(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
|
|
|
# update all feeds, re-create index files, install symlinks
|
2007-07-31 02:22:01 +08:00
|
|
|
package/symlinks:
|
2008-03-21 01:08:24 +08:00
|
|
|
$(SCRIPT_DIR)/feeds update -a
|
|
|
|
$(SCRIPT_DIR)/feeds install -a
|
2007-07-31 02:22:01 +08:00
|
|
|
|
2008-03-21 01:08:24 +08:00
|
|
|
# re-create index files, install symlinks
|
|
|
|
package/symlinks-install:
|
|
|
|
$(SCRIPT_DIR)/feeds update -i
|
|
|
|
$(SCRIPT_DIR)/feeds install -a
|
|
|
|
|
|
|
|
# remove all symlinks, don't touch ./feeds
|
|
|
|
package/symlinks-clean:
|
|
|
|
$(SCRIPT_DIR)/feeds uninstall -a
|
|
|
|
|
|
|
|
.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
|