2005-10-22 03:06:20 +03:00
|
|
|
# Makefile for OpenWrt
|
2005-01-16 13:43:02 +02:00
|
|
|
#
|
2006-06-27 03:35:46 +03:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2006-04-21 02:03:42 +03:00
|
|
|
# Copyright (C) 2006 by Felix Fietkau <openwrt@nbd.name>
|
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
|
|
|
#
|
|
|
|
|
2006-04-21 02:03:42 +03:00
|
|
|
RELEASE:=Kamikaze
|
|
|
|
#VERSION:=2.0 # uncomment for final release
|
|
|
|
|
2005-01-16 13:43:02 +02:00
|
|
|
#--------------------------------------------------------------
|
|
|
|
# Just run 'make menuconfig', configure stuff, then run 'make'.
|
|
|
|
# You shouldn't need to mess with anything beyond this point...
|
|
|
|
#--------------------------------------------------------------
|
2006-08-02 15:46:17 +03:00
|
|
|
|
|
|
|
all: world
|
|
|
|
|
2006-10-10 21:39:58 +03:00
|
|
|
SHELL:=/usr/bin/env bash
|
2006-10-14 14:37:37 +03:00
|
|
|
export LC_ALL=C
|
|
|
|
export LANG=C
|
2006-11-28 22:12:48 +02:00
|
|
|
export TOPDIR=${CURDIR}
|
2006-10-14 16:02:09 +03:00
|
|
|
ifeq ($(KBUILD_VERBOSE),99)
|
|
|
|
MAKE:=3>/dev/null $(MAKE)
|
|
|
|
endif
|
2006-11-12 04:56:35 +02:00
|
|
|
export IS_TTY=$(shell tty -s && echo 1 || echo 0)
|
2006-11-12 03:55:28 +02:00
|
|
|
|
|
|
|
include $(TOPDIR)/include/verbose.mk
|
2005-10-22 03:06:20 +03:00
|
|
|
|
2006-04-21 02:03:42 +03:00
|
|
|
OPENWRTVERSION:=$(RELEASE)
|
|
|
|
ifneq ($(VERSION),)
|
2006-08-02 15:07:14 +03:00
|
|
|
OPENWRTVERSION:=$(VERSION) ($(OPENWRTVERSION))
|
2005-04-05 21:21:58 +03:00
|
|
|
else
|
2006-08-02 15:07:14 +03:00
|
|
|
REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' )
|
|
|
|
ifneq ($(REV),)
|
|
|
|
OPENWRTVERSION:=$(OPENWRTVERSION)/r$(REV)
|
|
|
|
endif
|
2005-01-16 13:43:02 +02:00
|
|
|
endif
|
2006-04-21 02:03:42 +03:00
|
|
|
export OPENWRTVERSION
|
2005-01-16 13:43:02 +02:00
|
|
|
|
2006-11-12 07:06:56 +02:00
|
|
|
ifneq ($(shell ./scripts/timestamp.pl -p tmp/.pkginfo package scripts include),tmp/.pkginfo)
|
2006-11-12 03:45:43 +02:00
|
|
|
tmp/.pkginfo: FORCE
|
2006-11-12 01:11:02 +02:00
|
|
|
endif
|
|
|
|
|
2006-11-12 07:06:56 +02:00
|
|
|
ifneq ($(shell ./scripts/timestamp.pl -p tmp/.targetinfo target/linux scripts include),tmp/.targetinfo)
|
2006-11-12 03:45:43 +02:00
|
|
|
tmp/.targetinfo: FORCE
|
2006-08-02 15:46:17 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(FORCE),)
|
2006-11-12 01:11:02 +02:00
|
|
|
.config scripts/config/conf scripts/config/mconf: tmp/.prereq-build
|
2006-11-18 23:12:18 +02:00
|
|
|
world: tmp/.prereq-packages tmp/.prereq-target
|
2006-07-29 14:30:06 +03:00
|
|
|
endif
|
|
|
|
|
2006-12-19 03:20:44 +02:00
|
|
|
ifeq ($(IS_TTY),1)
|
|
|
|
define progress
|
|
|
|
printf "\033[M\r$(1)" >&2;
|
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
|
|
|
define dumpinfo
|
2006-11-12 01:11:02 +02:00
|
|
|
@mkdir -p tmp
|
2006-12-19 03:23:31 +02:00
|
|
|
@echo -n Collecting $(2) info...
|
2006-12-19 03:20:44 +02:00
|
|
|
@-for dir in $(1)/*/; do \
|
2006-11-12 01:11:02 +02:00
|
|
|
[ -f "$${dir}/Makefile" ] || continue; \
|
2006-12-19 03:23:31 +02:00
|
|
|
$(call progress,Collecting $(2) info: $${dir%%/}) \
|
2006-05-20 02:02:14 +03:00
|
|
|
echo Source-Makefile: $${dir}Makefile; \
|
2006-10-14 14:17:57 +03:00
|
|
|
$(NO_TRACE_MAKE) --no-print-dir DUMP=1 -C $$dir 3>/dev/null || echo "ERROR: please fix $${dir}Makefile" >&2; \
|
2006-11-12 01:11:02 +02:00
|
|
|
echo; \
|
2006-04-21 02:03:42 +03:00
|
|
|
done > $@
|
2006-12-19 03:23:31 +02:00
|
|
|
@($(call progress,Collecting $(2) info: done))
|
|
|
|
@echo
|
2006-12-19 03:20:44 +02:00
|
|
|
endef
|
|
|
|
|
|
|
|
tmp/.pkginfo:
|
2006-12-19 03:23:31 +02:00
|
|
|
$(call dumpinfo,package,package)
|
2006-05-10 23:32:22 +03:00
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
tmp/.targetinfo:
|
2006-12-19 03:23:31 +02:00
|
|
|
$(call dumpinfo,target/linux,target)
|
2006-11-12 01:11:02 +02:00
|
|
|
|
|
|
|
tmpinfo-clean: FORCE
|
|
|
|
@-rm -rf tmp/.pkginfo tmp/.targetinfo
|
|
|
|
|
|
|
|
tmp/.config.in: tmp/.pkginfo
|
2007-01-13 16:05:14 +02:00
|
|
|
@./scripts/metadata.pl package_config < $< > $@ || rm -f $@
|
2006-08-02 15:46:17 +03:00
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
tmp/.config-target.in: tmp/.targetinfo
|
2007-01-13 16:05:14 +02:00
|
|
|
@./scripts/metadata.pl target_config < $< > $@ || rm -f $@
|
2005-01-16 13:43:02 +02:00
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
.config: ./scripts/config/conf tmp/.config.in tmp/.config-target.in
|
2006-08-02 15:46:17 +03:00
|
|
|
@[ -f .config ] || $(NO_TRACE_MAKE) menuconfig
|
|
|
|
@$< -D .config Config.in &> /dev/null
|
2005-01-16 13:43:02 +02:00
|
|
|
|
2006-08-02 15:46:17 +03:00
|
|
|
scripts/config/mconf:
|
2006-07-13 01:40:14 +03:00
|
|
|
@$(MAKE) -C scripts/config all
|
2005-01-16 13:43:02 +02:00
|
|
|
|
2006-08-02 15:46:17 +03:00
|
|
|
scripts/config/conf:
|
2006-07-13 01:40:14 +03:00
|
|
|
@$(MAKE) -C scripts/config conf
|
2005-01-16 13:43:02 +02:00
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
config: scripts/config/conf tmp/.config.in tmp/.config-target.in FORCE
|
2006-04-21 02:03:42 +03:00
|
|
|
$< Config.in
|
2005-01-16 13:43:02 +02:00
|
|
|
|
2006-08-02 15:46:17 +03:00
|
|
|
config-clean: FORCE
|
|
|
|
$(NO_TRACE_MAKE) -C scripts/config clean
|
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
defconfig: scripts/config/conf tmp/.config.in tmp/.config-target.in FORCE
|
2006-06-02 19:27:15 +03:00
|
|
|
touch .config
|
|
|
|
$< -D .config Config.in
|
2006-05-31 17:32:17 +03:00
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
oldconfig: scripts/config/conf tmp/.config.in tmp/.config-target.in FORCE
|
2006-05-31 17:32:17 +03:00
|
|
|
$< -o Config.in
|
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
menuconfig: scripts/config/mconf tmp/.config.in tmp/.config-target.in FORCE
|
2006-04-21 02:03:42 +03:00
|
|
|
$< Config.in
|
2005-01-16 13:43:02 +02:00
|
|
|
|
2006-11-12 03:39:27 +02:00
|
|
|
package/%: tmp/.pkginfo tmp/.targetinfo FORCE
|
2006-05-30 20:09:06 +03:00
|
|
|
$(MAKE) -C package $(patsubst package/%,%,$@)
|
2006-05-30 17:11:24 +03:00
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
target/%: tmp/.pkginfo tmp/.targetinfo FORCE
|
2006-05-30 20:09:06 +03:00
|
|
|
$(MAKE) -C target $(patsubst target/%,%,$@)
|
2006-05-30 17:11:24 +03:00
|
|
|
|
2006-09-27 17:06:46 +03:00
|
|
|
tools/%: FORCE
|
|
|
|
$(MAKE) -C tools $(patsubst tools/%,%,$@)
|
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
toolchain/%: tmp/.targetinfo FORCE
|
2006-05-30 17:11:24 +03:00
|
|
|
$(MAKE) -C toolchain $(patsubst toolchain/%,%,$@)
|
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
tmp/.prereq-build: include/prereq-build.mk
|
|
|
|
@mkdir -p tmp
|
2006-11-24 01:49:58 +02:00
|
|
|
@rm -f tmp/.host.mk
|
2006-07-29 14:30:06 +03:00
|
|
|
@$(NO_TRACE_MAKE) -s -f $(TOPDIR)/include/prereq-build.mk prereq 2>/dev/null || { \
|
2006-07-19 16:25:09 +03:00
|
|
|
echo "Prerequisite check failed. Use FORCE=1 to override."; \
|
|
|
|
false; \
|
|
|
|
}
|
|
|
|
@touch $@
|
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
tmp/.prereq-packages: include/prereq.mk tmp/.pkginfo .config
|
|
|
|
@mkdir -p tmp
|
2006-11-24 01:49:58 +02:00
|
|
|
@rm -f tmp/.host.mk
|
2006-09-24 16:46:10 +03:00
|
|
|
@$(NO_TRACE_MAKE) -s -C package prereq 2>/dev/null || { \
|
2006-07-29 14:30:06 +03:00
|
|
|
echo "Prerequisite check failed. Use FORCE=1 to override."; \
|
|
|
|
false; \
|
|
|
|
}
|
|
|
|
@touch $@
|
2006-11-18 23:12:18 +02:00
|
|
|
|
|
|
|
tmp/.prereq-target: include/prereq.mk tmp/.targetinfo .config
|
|
|
|
@mkdir -p tmp
|
2006-11-24 01:49:58 +02:00
|
|
|
@rm -f tmp/.host.mk
|
2006-11-18 23:12:18 +02:00
|
|
|
@$(NO_TRACE_MAKE) -s -C target prereq 2>/dev/null || { \
|
|
|
|
echo "Prerequisite check failed. Use FORCE=1 to override."; \
|
|
|
|
false; \
|
|
|
|
}
|
|
|
|
@touch $@
|
|
|
|
|
|
|
|
prereq: tmp/.prereq-build tmp/.prereq-packages tmp/.prereq-target FORCE
|
2006-07-19 16:25:09 +03:00
|
|
|
|
2006-06-21 02:57:10 +03:00
|
|
|
download: .config FORCE
|
2006-09-27 17:06:46 +03:00
|
|
|
$(MAKE) tools/download
|
2006-06-21 02:57:10 +03:00
|
|
|
$(MAKE) toolchain/download
|
|
|
|
$(MAKE) package/download
|
|
|
|
$(MAKE) target/download
|
|
|
|
|
|
|
|
world: .config FORCE
|
2006-09-27 17:06:46 +03:00
|
|
|
$(MAKE) tools/install
|
2006-05-31 15:33:06 +03:00
|
|
|
$(MAKE) toolchain/install
|
|
|
|
$(MAKE) target/compile
|
|
|
|
$(MAKE) package/compile
|
|
|
|
$(MAKE) package/install
|
|
|
|
$(MAKE) target/install
|
2006-07-30 20:09:22 +03:00
|
|
|
$(MAKE) package/index
|
2006-05-31 15:33:06 +03:00
|
|
|
|
2006-06-01 03:19:52 +03:00
|
|
|
clean: FORCE
|
2006-11-12 01:11:02 +02:00
|
|
|
rm -rf build_* bin tmp
|
2006-06-01 03:19:52 +03:00
|
|
|
|
2006-06-08 03:39:08 +03:00
|
|
|
dirclean: clean
|
2006-09-27 17:06:46 +03:00
|
|
|
rm -rf staging_dir_* toolchain_build_* tool_build
|
2006-06-01 03:19:52 +03:00
|
|
|
|
2006-06-08 03:39:08 +03:00
|
|
|
distclean: dirclean config-clean
|
2006-11-12 01:11:02 +02:00
|
|
|
rm -rf dl
|
2006-06-01 03:19:52 +03:00
|
|
|
|
2006-12-09 21:37:19 +02:00
|
|
|
help:
|
|
|
|
cat README
|
|
|
|
|
2007-01-05 17:34:14 +02:00
|
|
|
doc:
|
|
|
|
$(MAKE) -C docs/ openwrt.pdf
|
|
|
|
|
|
|
|
docclean:
|
|
|
|
$(MAKE) -C docs/ clean
|
|
|
|
|
2006-12-31 17:02:08 +02:00
|
|
|
symlinks:
|
2007-01-05 17:34:14 +02:00
|
|
|
scripts/feeds.sh $(CONFIG_SOURCE_FEEDS)
|
2006-12-31 17:02:08 +02:00
|
|
|
|
2006-07-20 20:24:20 +03:00
|
|
|
.SILENT: clean dirclean distclean config-clean download world
|
2006-08-02 15:07:14 +03:00
|
|
|
FORCE: ;
|
2006-12-09 21:37:19 +02:00
|
|
|
.PHONY: FORCE help
|
2006-08-02 15:07:14 +03:00
|
|
|
%: ;
|