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-08-02 20:46:17 +08:00
|
|
|
ifeq ($(FORCE),)
|
2006-11-12 07:11:02 +08:00
|
|
|
.config scripts/config/conf scripts/config/mconf: tmp/.prereq-build
|
2007-04-04 07:03:56 +08:00
|
|
|
world: tmp/.prereq-package tmp/.prereq-target
|
2006-07-29 19:30:06 +08:00
|
|
|
endif
|
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
package/%/Makefile: ;
|
|
|
|
target/%/Makefile: ;
|
2006-05-11 04:32:22 +08:00
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
tmp/.packageinfo: $(wildcard package/*/Makefile include/package*.mk include/kernel.mk)
|
|
|
|
tmp/.targetinfo: $(wildcard target/*/Makefile include/kernel*.mk)
|
|
|
|
tmp/.%info:
|
2007-03-29 02:26:21 +08:00
|
|
|
@mkdir -p tmp/info
|
2007-04-04 07:03:56 +08:00
|
|
|
@$(NO_TRACE_MAKE) -s -f include/scan.mk SCAN_TARGET="$*info" SCAN_DIR="$(patsubst target,target/linux,$*)" SCAN_NAME="$*" SCAN_DEPS="$^" SCAN_EXTRA=""
|
2006-11-12 07:11:02 +08:00
|
|
|
|
|
|
|
tmpinfo-clean: FORCE
|
2007-04-04 07:03:56 +08:00
|
|
|
@-rm -rf tmp/.*info
|
|
|
|
|
|
|
|
tmp/.config-%.in: tmp/.%info
|
|
|
|
@./scripts/metadata.pl $*_config < $< > $@ || rm -f $@
|
2006-11-12 07:11:02 +08:00
|
|
|
|
2006-08-02 20:46:17 +08:00
|
|
|
|
2005-01-16 19:43:02 +08:00
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
.config: ./scripts/config/conf tmp/.config-target.in tmp/.config-package.in
|
2007-04-07 19:53:18 +08:00
|
|
|
@if [ \! -f .config -a -e $(HOME)/.openwrt/defconfig ]; then \
|
|
|
|
cp $(HOME)/.openwrt/defconfig .config; \
|
2007-04-07 07:09:06 +08:00
|
|
|
$(NO_TRACE_MAKE) menuconfig; \
|
2007-04-07 19:53:18 +08:00
|
|
|
fi
|
2006-08-02 20:46:17 +08:00
|
|
|
@$< -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
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
config: scripts/config/conf tmp/.config-target.in tmp/.config-package.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
|
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
defconfig: scripts/config/conf tmp/.config-target.in tmp/.config-package.in FORCE
|
2006-06-03 00:27:15 +08:00
|
|
|
touch .config
|
|
|
|
$< -D .config Config.in
|
2006-05-31 22:32:17 +08:00
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
oldconfig: scripts/config/conf tmp/.config-target.in tmp/.config-package.in FORCE
|
2006-05-31 22:32:17 +08:00
|
|
|
$< -o Config.in
|
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
menuconfig: scripts/config/mconf tmp/.config-target.in tmp/.config-package.in FORCE
|
2007-04-07 19:03:05 +08:00
|
|
|
@if [ \! -f .config -a -e $(HOME)/.openwrt/defconfig ]; then \
|
|
|
|
cp $(HOME)/.openwrt/defconfig .config; \
|
|
|
|
fi
|
2006-04-21 07:03:42 +08:00
|
|
|
$< Config.in
|
2005-01-16 19:43:02 +08:00
|
|
|
|
2007-02-17 00:59:44 +08:00
|
|
|
kernel_menuconfig: .config FORCE
|
2007-02-17 01:28:22 +08:00
|
|
|
-$(MAKE) target/linux-prepare
|
2007-02-17 00:59:44 +08:00
|
|
|
$(NO_TRACE_MAKE) -C target/linux menuconfig
|
|
|
|
|
2007-03-29 19:26:35 +08:00
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
package/% target/%: tmp/.packageinfo
|
|
|
|
toolchain/% package/% target/%: tmp/.targetinfo
|
|
|
|
package/% target/% tools/% toolchain/%: FORCE
|
|
|
|
$(MAKE) -C $(patsubst %/$*,%,$@) $*
|
2006-05-30 22:11:24 +08:00
|
|
|
|
|
|
|
|
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 $@
|
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
tmp/.prereq-%: include/prereq.mk tmp/.%info .config
|
2006-11-19 05:12:18 +08:00
|
|
|
@mkdir -p tmp
|
2006-11-24 07:49:58 +08:00
|
|
|
@rm -f tmp/.host.mk
|
2007-04-04 07:03:56 +08:00
|
|
|
@$(NO_TRACE_MAKE) -s -C $* prereq 2>/dev/null || { \
|
2006-11-19 05:12:18 +08:00
|
|
|
echo "Prerequisite check failed. Use FORCE=1 to override."; \
|
|
|
|
false; \
|
|
|
|
}
|
|
|
|
@touch $@
|
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
prereq: tmp/.prereq-build tmp/.prereq-package 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
|
|
|
|
2007-03-27 06:09:00 +08:00
|
|
|
distclean: dirclean config-clean symlinkclean docclean
|
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
|
|
|
|
|
2007-01-05 23:34:14 +08:00
|
|
|
doc:
|
|
|
|
$(MAKE) -C docs/ openwrt.pdf
|
|
|
|
|
|
|
|
docclean:
|
|
|
|
$(MAKE) -C docs/ clean
|
|
|
|
|
2007-03-27 06:01:47 +08:00
|
|
|
symlinkclean:
|
2007-04-03 19:56:08 +08:00
|
|
|
find package -type l -exec rm -f {} +
|
2007-03-27 06:01:47 +08:00
|
|
|
|
2007-04-04 07:03:56 +08:00
|
|
|
.SILENT: clean dirclean distclean symlinkclean config-clean download world help
|
2006-08-02 20:07:14 +08:00
|
|
|
FORCE: ;
|
2006-12-10 03:37:19 +08:00
|
|
|
.PHONY: FORCE help
|