2005-10-22 00:06:20 +00:00
|
|
|
# Makefile for OpenWrt
|
2005-01-16 11:43:02 +00:00
|
|
|
#
|
2006-06-27 00:35:46 +00:00
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2006-04-20 23:03:42 +00:00
|
|
|
# Copyright (C) 2006 by Felix Fietkau <openwrt@nbd.name>
|
2005-01-16 11:43:02 +00:00
|
|
|
#
|
2006-06-27 00:35:46 +00:00
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
2005-01-16 11:43:02 +00:00
|
|
|
#
|
|
|
|
|
2006-04-20 23:03:42 +00:00
|
|
|
RELEASE:=Kamikaze
|
|
|
|
#VERSION:=2.0 # uncomment for final release
|
|
|
|
|
2005-01-16 11:43:02 +00:00
|
|
|
#--------------------------------------------------------------
|
|
|
|
# Just run 'make menuconfig', configure stuff, then run 'make'.
|
|
|
|
# You shouldn't need to mess with anything beyond this point...
|
|
|
|
#--------------------------------------------------------------
|
2006-08-02 12:46:17 +00:00
|
|
|
|
|
|
|
all: world
|
|
|
|
|
2006-10-10 18:39:58 +00:00
|
|
|
SHELL:=/usr/bin/env bash
|
2006-10-14 11:37:37 +00:00
|
|
|
export LC_ALL=C
|
|
|
|
export LANG=C
|
2006-11-28 20:12:48 +00:00
|
|
|
export TOPDIR=${CURDIR}
|
2006-11-12 02:56:35 +00:00
|
|
|
export IS_TTY=$(shell tty -s && echo 1 || echo 0)
|
2006-11-12 01:55:28 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/include/verbose.mk
|
2005-10-22 00:06:20 +00:00
|
|
|
|
2006-04-20 23:03:42 +00:00
|
|
|
OPENWRTVERSION:=$(RELEASE)
|
|
|
|
ifneq ($(VERSION),)
|
2006-08-02 12:07:14 +00:00
|
|
|
OPENWRTVERSION:=$(VERSION) ($(OPENWRTVERSION))
|
2005-04-05 18:21:58 +00:00
|
|
|
else
|
2006-08-02 12:07:14 +00:00
|
|
|
REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' )
|
|
|
|
ifneq ($(REV),)
|
|
|
|
OPENWRTVERSION:=$(OPENWRTVERSION)/r$(REV)
|
|
|
|
endif
|
2005-01-16 11:43:02 +00:00
|
|
|
endif
|
2006-04-20 23:03:42 +00:00
|
|
|
export OPENWRTVERSION
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-08-02 12:46:17 +00:00
|
|
|
ifeq ($(FORCE),)
|
2006-11-11 23:11:02 +00:00
|
|
|
.config scripts/config/conf scripts/config/mconf: tmp/.prereq-build
|
2007-04-03 23:03:56 +00:00
|
|
|
world: tmp/.prereq-package tmp/.prereq-target
|
2006-07-29 11:30:06 +00:00
|
|
|
endif
|
|
|
|
|
2007-04-03 23:03:56 +00:00
|
|
|
package/%/Makefile: ;
|
|
|
|
target/%/Makefile: ;
|
2006-05-10 20:32:22 +00:00
|
|
|
|
2007-05-23 21:11:48 +00:00
|
|
|
tmp/.packageinfo tmp/.targetinfo: FORCE
|
2007-04-07 15:11:17 +00:00
|
|
|
mkdir -p tmp/info
|
2007-05-23 21:11:48 +00:00
|
|
|
$(NO_TRACE_MAKE) -s -f include/scan.mk SCAN_TARGET="targetinfo" SCAN_DIR="target/linux" SCAN_NAME="target" SCAN_DEPS="" SCAN_TARGET_DEPS="$(wildcard target/*/Makefile include/kernel*.mk)" SCAN_EXTRA=""
|
|
|
|
$(NO_TRACE_MAKE) -s -f include/scan.mk SCAN_TARGET="packageinfo" SCAN_DIR="package" SCAN_NAME="package" SCAN_DEPS="$(wildcard package/*/Makefile include/package*.mk include/kernel.mk)" SCAN_EXTRA=""
|
2006-11-11 23:11:02 +00:00
|
|
|
|
|
|
|
tmpinfo-clean: FORCE
|
2007-04-07 12:06:00 +00:00
|
|
|
-rm -rf tmp/.*info
|
2007-04-03 23:03:56 +00:00
|
|
|
|
2007-05-05 10:06:10 +00:00
|
|
|
tmp/.config-%.in: tmp/.%info scripts/metadata.pl
|
2007-04-07 15:11:17 +00:00
|
|
|
./scripts/metadata.pl $*_config < $< > $@ || rm -f $@
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2007-04-03 23:03:56 +00:00
|
|
|
.config: ./scripts/config/conf tmp/.config-target.in tmp/.config-package.in
|
2007-04-07 13:30:57 +00:00
|
|
|
if [ \! -f .config ]; then \
|
|
|
|
[ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config; \
|
2007-04-06 23:09:06 +00:00
|
|
|
$(NO_TRACE_MAKE) menuconfig; \
|
2007-04-07 11:53:18 +00:00
|
|
|
fi
|
2007-04-07 12:06:00 +00:00
|
|
|
$< -D .config Config.in &> /dev/null
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-08-02 12:46:17 +00:00
|
|
|
scripts/config/mconf:
|
2007-04-07 12:06:00 +00:00
|
|
|
$(MAKE) -C scripts/config all
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-08-02 12:46:17 +00:00
|
|
|
scripts/config/conf:
|
2007-04-07 12:06:00 +00:00
|
|
|
$(MAKE) -C scripts/config conf
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2007-04-03 23:03:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
config: scripts/config/conf tmp/.config-target.in tmp/.config-package.in FORCE
|
2006-04-20 23:03:42 +00:00
|
|
|
$< Config.in
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-08-02 12:46:17 +00:00
|
|
|
config-clean: FORCE
|
|
|
|
$(NO_TRACE_MAKE) -C scripts/config clean
|
|
|
|
|
2007-04-03 23:03:56 +00:00
|
|
|
defconfig: scripts/config/conf tmp/.config-target.in tmp/.config-package.in FORCE
|
2006-06-02 16:27:15 +00:00
|
|
|
touch .config
|
|
|
|
$< -D .config Config.in
|
2006-05-31 14:32:17 +00:00
|
|
|
|
2007-04-03 23:03:56 +00:00
|
|
|
oldconfig: scripts/config/conf tmp/.config-target.in tmp/.config-package.in FORCE
|
2006-05-31 14:32:17 +00:00
|
|
|
$< -o Config.in
|
|
|
|
|
2007-04-03 23:03:56 +00:00
|
|
|
menuconfig: scripts/config/mconf tmp/.config-target.in tmp/.config-package.in FORCE
|
2007-04-07 12:06:00 +00:00
|
|
|
if [ \! -f .config -a -e $(HOME)/.openwrt/defconfig ]; then \
|
2007-04-07 11:03:05 +00:00
|
|
|
cp $(HOME)/.openwrt/defconfig .config; \
|
|
|
|
fi
|
2006-04-20 23:03:42 +00:00
|
|
|
$< Config.in
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2007-02-16 16:59:44 +00:00
|
|
|
kernel_menuconfig: .config FORCE
|
2007-02-16 17:28:22 +00:00
|
|
|
-$(MAKE) target/linux-prepare
|
2007-02-16 16:59:44 +00:00
|
|
|
$(NO_TRACE_MAKE) -C target/linux menuconfig
|
|
|
|
|
2007-03-29 11:26:35 +00:00
|
|
|
|
2007-04-03 23:03:56 +00:00
|
|
|
package/% target/%: tmp/.packageinfo
|
|
|
|
toolchain/% package/% target/%: tmp/.targetinfo
|
|
|
|
package/% target/% tools/% toolchain/%: FORCE
|
|
|
|
$(MAKE) -C $(patsubst %/$*,%,$@) $*
|
2006-05-30 14:11:24 +00:00
|
|
|
|
|
|
|
|
2006-11-11 23:11:02 +00:00
|
|
|
tmp/.prereq-build: include/prereq-build.mk
|
2007-04-07 12:06:00 +00:00
|
|
|
mkdir -p tmp
|
|
|
|
rm -f tmp/.host.mk
|
|
|
|
$(NO_TRACE_MAKE) -s -f $(TOPDIR)/include/prereq-build.mk prereq 2>/dev/null || { \
|
2006-07-19 13:25:09 +00:00
|
|
|
echo "Prerequisite check failed. Use FORCE=1 to override."; \
|
|
|
|
false; \
|
|
|
|
}
|
2007-04-07 12:06:00 +00:00
|
|
|
touch $@
|
2006-07-19 13:25:09 +00:00
|
|
|
|
2007-04-03 23:03:56 +00:00
|
|
|
tmp/.prereq-%: include/prereq.mk tmp/.%info .config
|
2007-04-07 12:06:00 +00:00
|
|
|
mkdir -p tmp
|
|
|
|
rm -f tmp/.host.mk
|
|
|
|
$(NO_TRACE_MAKE) -s -C $* prereq 2>/dev/null || { \
|
2006-11-18 21:12:18 +00:00
|
|
|
echo "Prerequisite check failed. Use FORCE=1 to override."; \
|
|
|
|
false; \
|
|
|
|
}
|
2007-04-07 12:06:00 +00:00
|
|
|
touch $@
|
2006-11-18 21:12:18 +00:00
|
|
|
|
2007-04-03 23:03:56 +00:00
|
|
|
prereq: tmp/.prereq-build tmp/.prereq-package tmp/.prereq-target FORCE
|
2006-07-19 13:25:09 +00:00
|
|
|
|
2006-06-20 23:57:10 +00:00
|
|
|
download: .config FORCE
|
2006-09-27 14:06:46 +00:00
|
|
|
$(MAKE) tools/download
|
2006-06-20 23:57:10 +00:00
|
|
|
$(MAKE) toolchain/download
|
|
|
|
$(MAKE) package/download
|
|
|
|
$(MAKE) target/download
|
|
|
|
|
|
|
|
world: .config FORCE
|
2006-09-27 14:06:46 +00:00
|
|
|
$(MAKE) tools/install
|
2006-05-31 12:33:06 +00:00
|
|
|
$(MAKE) toolchain/install
|
|
|
|
$(MAKE) target/compile
|
|
|
|
$(MAKE) package/compile
|
|
|
|
$(MAKE) package/install
|
|
|
|
$(MAKE) target/install
|
2006-07-30 17:09:22 +00:00
|
|
|
$(MAKE) package/index
|
2006-05-31 12:33:06 +00:00
|
|
|
|
2006-06-01 00:19:52 +00:00
|
|
|
clean: FORCE
|
2006-11-11 23:11:02 +00:00
|
|
|
rm -rf build_* bin tmp
|
2006-06-01 00:19:52 +00:00
|
|
|
|
2006-06-08 00:39:08 +00:00
|
|
|
dirclean: clean
|
2006-09-27 14:06:46 +00:00
|
|
|
rm -rf staging_dir_* toolchain_build_* tool_build
|
2006-06-01 00:19:52 +00:00
|
|
|
|
2007-03-26 22:09:00 +00:00
|
|
|
distclean: dirclean config-clean symlinkclean docclean
|
2006-11-11 23:11:02 +00:00
|
|
|
rm -rf dl
|
2006-06-01 00:19:52 +00:00
|
|
|
|
2006-12-09 19:37:19 +00:00
|
|
|
help:
|
|
|
|
cat README
|
|
|
|
|
2007-01-05 15:34:14 +00:00
|
|
|
doc:
|
|
|
|
$(MAKE) -C docs/ openwrt.pdf
|
|
|
|
|
|
|
|
docclean:
|
|
|
|
$(MAKE) -C docs/ clean
|
|
|
|
|
2007-03-26 22:01:47 +00:00
|
|
|
symlinkclean:
|
2007-04-29 01:30:48 +00:00
|
|
|
-find package -type l | xargs rm -f
|
2007-05-30 10:37:43 +00:00
|
|
|
rm -rf tmp
|
2007-03-26 22:01:47 +00:00
|
|
|
|
2007-04-07 15:11:17 +00:00
|
|
|
.SILENT: clean dirclean distclean symlinkclean config-clean download world help tmp/.packageinfo tmp/.targetinfo tmpinfo-clean tmp/.config-package.in tmp/.config-target.in .config scripts/config/mconf scripts/config/conf menuconfig tmp/.prereq-build tmp/.prereq-package tmp/.prereq-target
|
2006-08-02 12:07:14 +00:00
|
|
|
FORCE: ;
|
2006-12-09 19:37:19 +00:00
|
|
|
.PHONY: FORCE help
|