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