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