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