2005-10-22 00:06:20 +00:00
|
|
|
# Makefile for OpenWrt
|
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
|
|
|
#
|
2006-06-27 00:35:46 +00:00
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
2005-01-16 11:43:02 +00:00
|
|
|
#
|
|
|
|
|
2007-07-28 13:00:43 +00:00
|
|
|
TOPDIR:=${CURDIR}
|
|
|
|
LC_ALL:=C
|
|
|
|
LANG:=C
|
2007-11-04 11:42:47 +00:00
|
|
|
export TOPDIR LC_ALL LANG
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2007-07-30 18:22:01 +00:00
|
|
|
world:
|
|
|
|
|
|
|
|
include $(TOPDIR)/include/host.mk
|
|
|
|
|
2007-07-28 13:00:43 +00:00
|
|
|
ifneq ($(OPENWRT_BUILD),1)
|
2007-07-30 18:22:01 +00:00
|
|
|
override OPENWRT_BUILD=1
|
|
|
|
export OPENWRT_BUILD
|
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
|
|
|
|
2007-11-04 11:42:47 +00:00
|
|
|
$(toolchain/stamp-install): $(tools/stamp-install)
|
2007-08-07 00:04:25 +00:00
|
|
|
$(target/stamp-compile): $(toolchain/stamp-install) $(tools/stamp-install) $(BUILD_DIR)/.prepared
|
2007-11-04 11:42:47 +00: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-30 21:14:08 +00:00
|
|
|
|
2007-08-07 00:04:25 +00:00
|
|
|
$(BUILD_DIR)/.prepared: Makefile
|
|
|
|
@mkdir -p $$(dirname $@)
|
|
|
|
@touch $@
|
|
|
|
|
2007-07-28 13:00:43 +00:00
|
|
|
clean: FORCE
|
2007-08-07 00:04:25 +00:00
|
|
|
rm -rf $(BUILD_DIR) $(BIN_DIR)
|
|
|
|
$(MAKE) target/linux/clean
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2007-07-28 13:00:43 +00:00
|
|
|
dirclean: clean
|
2007-09-08 19:55:42 +00:00
|
|
|
rm -rf $(STAGING_DIR) $(STAGING_DIR_HOST) $(STAGING_DIR_TOOLCHAIN) $(TOOLCHAIN_DIR) $(BUILD_DIR_HOST)
|
2007-12-04 03:04:37 +00:00
|
|
|
rm -rf $(TMP_DIR)
|
2007-02-16 16:59:44 +00:00
|
|
|
|
2007-07-30 18:22:01 +00:00
|
|
|
# check prerequisites before starting to build
|
2007-07-30 21:14:08 +00:00
|
|
|
prereq: $(package/stamp-prereq) $(target/stamp-prereq) ;
|
2007-07-30 18:22:01 +00:00
|
|
|
|
2007-09-15 08:53:23 +00: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
|
2006-07-30 17:09:22 +00:00
|
|
|
$(MAKE) package/index
|
2006-05-31 12:33:06 +00:00
|
|
|
|
2008-03-20 17:08:24 +00:00
|
|
|
# update all feeds, re-create index files, install symlinks
|
2007-07-30 18:22:01 +00:00
|
|
|
package/symlinks:
|
2008-03-20 17:08:24 +00:00
|
|
|
$(SCRIPT_DIR)/feeds update -a
|
|
|
|
$(SCRIPT_DIR)/feeds install -a
|
2007-07-30 18:22:01 +00:00
|
|
|
|
2008-03-20 17:08:24 +00: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 08:53:23 +00:00
|
|
|
|
2007-07-28 13:00:43 +00:00
|
|
|
endif
|