X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=Makefile;h=b67413b887309808b09a877e39310452d096e565;hb=323d4460bf52d332bffd17595c8e67ca55748aaa;hp=25f60e1e545d24c66271e0cdc6c01872ec4c18bf;hpb=c133c86f41a5be64876ad611debb189d5d8b479e;p=openwrt.git diff --git a/Makefile b/Makefile index 25f60e1e54..b67413b887 100644 --- a/Makefile +++ b/Makefile @@ -1,119 +1,63 @@ # Makefile for OpenWrt # -# Copyright (C) 2006 OpenWrt.org -# Copyright (C) 2006 by Felix Fietkau +# Copyright (C) 2007 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # -RELEASE:=Kamikaze -#VERSION:=2.0 # uncomment for final release +TOPDIR:=${CURDIR} +LC_ALL:=C +LANG:=C +IS_TTY:=${shell tty -s && echo 1 || echo 0} +export TOPDIR LC_ALL LANG IS_TTY -#-------------------------------------------------------------- -# Just run 'make menuconfig', configure stuff, then run 'make'. -# You shouldn't need to mess with anything beyond this point... -#-------------------------------------------------------------- -TOPDIR=${shell pwd} -export TOPDIR -include $(TOPDIR)/include/verbose.mk +world: -OPENWRTVERSION:=$(RELEASE) -ifneq ($(VERSION),) -OPENWRTVERSION:=$(VERSION) ($(OPENWRTVERSION)) -else -REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' ) -ifneq ($(REV),) -OPENWRTVERSION:=$(OPENWRTVERSION)/r$(REV) -endif -endif -export OPENWRTVERSION - -all: world - -.pkginfo: FORCE -ifneq ($(shell ./scripts/timestamp.pl -p .pkginfo package Makefile),.pkginfo) - @echo Collecting package info... - @-for dir in package/*/; do \ - echo Source-Makefile: $${dir}Makefile; \ - $(NO_TRACE_MAKE) --no-print-dir DUMP=1 -C $$dir 2>&- || true; \ - done > $@ -endif - -.config.in: .pkginfo - @./scripts/gen_menuconfig.pl < $< > $@ || rm -f $@ - -pkginfo-clean: FORCE - -rm -f .pkginfo .config.in - -./scripts/config/mconf: .config.in - @$(MAKE) -C scripts/config all - -./scripts/config/conf: .config.in - @$(MAKE) -C scripts/config conf - -config: ./scripts/config/conf FORCE - $< Config.in - -defconfig: ./scripts/config/conf FORCE - touch .config - $< -D .config Config.in - -oldconfig: ./scripts/config/conf FORCE - $< -o Config.in - -menuconfig: ./scripts/config/mconf FORCE - $< Config.in +include $(TOPDIR)/include/host.mk -config-clean: FORCE - $(MAKE) -C scripts/config clean - -package/%: .pkginfo FORCE - $(MAKE) -C package $(patsubst package/%,%,$@) - -target/%: .pkginfo FORCE - $(MAKE) -C target $(patsubst target/%,%,$@) - -toolchain/%: FORCE - $(MAKE) -C toolchain $(patsubst toolchain/%,%,$@) - -.config: ./scripts/config/conf FORCE - @[ -f .config ] || $(NO_TRACE_MAKE) menuconfig - @$< -D .config Config.in &> /dev/null - -.prereq: $(TOPDIR)/include/prereq.mk .pkginfo - @$(NO_TRACE_MAKE) -s -f $(TOPDIR)/include/prereq.mk prereq 2>/dev/null || { \ - echo "Prerequisite check failed. Use FORCE=1 to override."; \ - false; \ - } +ifneq ($(OPENWRT_BUILD),1) + override OPENWRT_BUILD=1 + export OPENWRT_BUILD + include $(TOPDIR)/include/debug.mk + include $(TOPDIR)/include/depends.mk + include $(TOPDIR)/include/toplevel.mk +else + include rules.mk + include $(INCLUDE_DIR)/depends.mk + include $(INCLUDE_DIR)/subdir.mk + include target/Makefile + include package/Makefile + include tools/Makefile + include toolchain/Makefile + +$(toolchain/stamp-compile): $(tools/stamp-compile) +$(target/stamp-compile): $(toolchain/stamp-install) $(tools/stamp-install) $(BUILD_DIR)/.prepared +$(package/stamp-compile): $(target/stamp-compile) +$(target/stamp-install): $(package/stamp-compile) $(package/stamp-install) + +$(BUILD_DIR)/.prepared: Makefile + @mkdir -p $$(dirname $@) @touch $@ -prereq: .prereq FORCE - -download: .config FORCE - $(MAKE) toolchain/download - $(MAKE) package/download - $(MAKE) target/download +clean: FORCE + rm -rf $(BUILD_DIR) $(BIN_DIR) + $(MAKE) target/linux/clean + rm -rf $(TMP_DIR) -ifeq ($(FORCE),) -world: .prereq -endif +dirclean: clean + rm -rf $(STAGING_DIR) $(STAGING_DIR_HOST) $(STAGING_DIR_TOOLCHAIN) $(TOOLCHAIN_DIR) $(BUILD_DIR_HOST) -world: .config FORCE - $(MAKE) toolchain/install - $(MAKE) target/compile - $(MAKE) package/compile - $(MAKE) package/install - $(MAKE) target/install +# check prerequisites before starting to build +prereq: $(package/stamp-prereq) $(target/stamp-prereq) ; -clean: FORCE - rm -rf build_* bin +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 + $(MAKE) package/index -dirclean: clean - rm -rf staging_dir_* toolchain_build_* +package/symlinks: + $(SCRIPT_DIR)/feeds.sh $(CONFIG_SOURCE_FEEDS) $(CONFIG_SOURCE_FEEDS_REV) -distclean: dirclean config-clean - rm -rf dl .*config* .pkg* +.PHONY: clean dirclean prereq prepare world package/symlinks -.PHONY: FORCE -FORCE: +endif