2007-07-28 13:00:43 +00:00
|
|
|
# Makefile for OpenWrt
|
|
|
|
#
|
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
RELEASE:=Kamikaze
|
|
|
|
#VERSION:=2.0 # uncomment for final release
|
|
|
|
|
|
|
|
SHELL:=/usr/bin/env bash
|
|
|
|
OPENWRTVERSION:=$(RELEASE)
|
2007-07-30 18:22:01 +00:00
|
|
|
PREP_MK= OPENWRT_BUILD= QUIET=0
|
2007-07-28 13:29:03 +00:00
|
|
|
include $(TOPDIR)/include/verbose.mk
|
2007-07-28 13:00:43 +00:00
|
|
|
ifneq ($(VERSION),)
|
|
|
|
OPENWRTVERSION:=$(VERSION) ($(OPENWRTVERSION))
|
|
|
|
else
|
2007-10-09 03:37:31 +00:00
|
|
|
REV:=$(if $(wildcard .svn/entries),$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' ))
|
2007-07-28 13:00:43 +00:00
|
|
|
ifneq ($(REV),)
|
|
|
|
OPENWRTVERSION:=$(OPENWRTVERSION)/r$(REV)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
export OPENWRTVERSION
|
2007-11-04 11:42:47 +00:00
|
|
|
export IS_TTY=$(shell tty -s && echo 1 || echo 0)
|
2007-07-28 13:00:43 +00:00
|
|
|
|
|
|
|
ifeq ($(FORCE),)
|
|
|
|
.config scripts/config/conf scripts/config/mconf: tmp/.prereq-build
|
|
|
|
endif
|
|
|
|
|
|
|
|
SCAN_COOKIE?=$(shell echo $$$$)
|
|
|
|
export SCAN_COOKIE
|
|
|
|
|
2007-09-23 02:39:01 +00:00
|
|
|
prepare-mk: FORCE ;
|
|
|
|
|
2007-07-30 21:14:08 +00:00
|
|
|
prepare-tmpinfo: FORCE
|
2007-07-30 18:22:01 +00:00
|
|
|
mkdir -p tmp/info
|
2007-11-03 12:13:23 +00:00
|
|
|
+$(NO_TRACE_MAKE) -s -f include/scan.mk SCAN_TARGET="packageinfo" SCAN_DIR="package" SCAN_NAME="package" SCAN_DEPS="$(TOPDIR)/include/package*.mk" SCAN_DEPTH=5 SCAN_EXTRA=""
|
2007-09-08 19:55:42 +00:00
|
|
|
+$(NO_TRACE_MAKE) -s -f include/scan.mk SCAN_TARGET="targetinfo" SCAN_DIR="target/linux" SCAN_NAME="target" SCAN_DEPS="profiles/*.mk $(TOPDIR)/include/kernel*.mk" SCAN_DEPTH=2 SCAN_EXTRA="" SCAN_MAKEOPTS="TARGET_BUILD=1"
|
2007-07-30 18:22:01 +00:00
|
|
|
for type in package target; do \
|
2007-07-28 13:00:43 +00:00
|
|
|
f=tmp/.$${type}info; t=tmp/.config-$${type}.in; \
|
2007-09-23 02:39:01 +00:00
|
|
|
[ "$$t" -nt "$$f" ] || ./scripts/metadata.pl $${type}_config "$$f" > "$$t" || { rm -f "$$t"; echo "Failed to build $$t"; false; break; }; \
|
2007-07-28 13:00:43 +00:00
|
|
|
done
|
2007-09-23 02:39:01 +00:00
|
|
|
./scripts/metadata.pl package_mk tmp/.packageinfo > tmp/.packagedeps || { rm -f tmp/.packagedeps; false; }
|
2007-07-30 21:14:08 +00:00
|
|
|
touch $(TOPDIR)/tmp/.build
|
2007-07-28 13:00:43 +00:00
|
|
|
|
|
|
|
.config: ./scripts/config/conf prepare-tmpinfo
|
2007-07-28 13:29:03 +00:00
|
|
|
@+if [ \! -f .config ]; then \
|
2007-07-28 13:00:43 +00:00
|
|
|
[ -e $(HOME)/.openwrt/defconfig ] && cp $(HOME)/.openwrt/defconfig .config; \
|
2007-07-30 18:22:01 +00:00
|
|
|
$(NO_TRACE_MAKE) menuconfig $(PREP_MK); \
|
2007-07-28 13:00:43 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
scripts/config/mconf:
|
2007-07-28 13:29:03 +00:00
|
|
|
@+$(MAKE) -C scripts/config all
|
2007-07-28 13:00:43 +00:00
|
|
|
|
2007-10-14 02:28:34 +00:00
|
|
|
$(eval $(call rdep,scripts/config,scripts/config/mconf))
|
2007-10-14 02:15:37 +00:00
|
|
|
|
2007-07-28 13:00:43 +00:00
|
|
|
scripts/config/conf:
|
2007-07-28 13:29:03 +00:00
|
|
|
@+$(MAKE) -C scripts/config conf
|
2007-07-28 13:00:43 +00:00
|
|
|
|
|
|
|
config: scripts/config/conf prepare-tmpinfo FORCE
|
|
|
|
$< Config.in
|
|
|
|
|
|
|
|
config-clean: FORCE
|
|
|
|
$(NO_TRACE_MAKE) -C scripts/config clean
|
|
|
|
|
|
|
|
defconfig: scripts/config/conf prepare-tmpinfo FORCE
|
|
|
|
touch .config
|
|
|
|
$< -D .config Config.in
|
|
|
|
|
|
|
|
oldconfig: scripts/config/conf prepare-tmpinfo FORCE
|
2007-09-23 02:39:01 +00:00
|
|
|
$< -$(if $(CONFDEFAULT),$(CONFDEFAULT),o) Config.in
|
2007-07-28 13:00:43 +00:00
|
|
|
|
|
|
|
menuconfig: scripts/config/mconf prepare-tmpinfo FORCE
|
|
|
|
if [ \! -f .config -a -e $(HOME)/.openwrt/defconfig ]; then \
|
|
|
|
cp $(HOME)/.openwrt/defconfig .config; \
|
|
|
|
fi
|
|
|
|
$< Config.in
|
|
|
|
|
|
|
|
kernel_oldconfig: .config FORCE
|
|
|
|
$(NO_TRACE_MAKE) -C target/linux oldconfig
|
|
|
|
|
|
|
|
kernel_menuconfig: .config FORCE
|
|
|
|
$(NO_TRACE_MAKE) -C target/linux menuconfig
|
|
|
|
|
|
|
|
tmp/.prereq-build: include/prereq-build.mk
|
|
|
|
mkdir -p tmp
|
|
|
|
rm -f tmp/.host.mk
|
2007-07-28 13:29:03 +00:00
|
|
|
@+$(NO_TRACE_MAKE) -s -f $(TOPDIR)/include/prereq-build.mk prereq 2>/dev/null || { \
|
2007-07-28 13:00:43 +00:00
|
|
|
echo "Prerequisite check failed. Use FORCE=1 to override."; \
|
|
|
|
false; \
|
|
|
|
}
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
download: .config FORCE
|
|
|
|
$(MAKE) -j1 tools/download
|
|
|
|
$(MAKE) -j1 toolchain/download
|
|
|
|
$(MAKE) -j1 package/download
|
|
|
|
$(MAKE) -j1 target/download
|
|
|
|
|
2007-12-04 03:04:37 +00:00
|
|
|
clean dirclean: .config
|
2007-07-28 13:00:43 +00:00
|
|
|
@$(MAKE) $@
|
|
|
|
|
2007-07-30 18:22:01 +00:00
|
|
|
prereq:: .config
|
|
|
|
@+$(SUBMAKE) -s tmp/.prereq-build $(PREP_MK)
|
|
|
|
@$(NO_TRACE_MAKE) -s $@
|
|
|
|
|
2007-07-28 13:00:43 +00:00
|
|
|
%::
|
2007-07-30 18:22:01 +00:00
|
|
|
@+$(PREP_MK) $(NO_TRACE_MAKE) -s prereq
|
2007-07-30 21:14:08 +00:00
|
|
|
@+$(MAKE) -r $@
|
2007-07-28 13:00:43 +00:00
|
|
|
|
|
|
|
help:
|
|
|
|
cat README
|
|
|
|
|
|
|
|
docs docs/compile: FORCE
|
|
|
|
$(MAKE) -C docs compile
|
|
|
|
|
|
|
|
docs/clean: FORCE
|
|
|
|
$(MAKE) -C docs clean
|
|
|
|
|
|
|
|
symlinkclean:
|
|
|
|
-find package -type l | xargs rm -f
|
|
|
|
rm -rf tmp
|
|
|
|
|
2007-08-07 00:04:25 +00:00
|
|
|
distclean:
|
2007-10-09 04:13:19 +00:00
|
|
|
rm -rf tmp build_dir staging_dir dl .config* feeds
|
2007-08-07 00:04:25 +00:00
|
|
|
|
2007-07-30 18:22:01 +00:00
|
|
|
ifeq ($(findstring v,$(DEBUG)),)
|
2007-09-06 16:27:37 +00:00
|
|
|
.SILENT: symlinkclean clean dirclean distclean config-clean download help tmpinfo-clean .config scripts/config/mconf scripts/config/conf menuconfig tmp/.prereq-build tmp/.prereq-package prepare-tmpinfo
|
2007-07-30 18:22:01 +00:00
|
|
|
endif
|
2007-07-28 13:00:43 +00:00
|
|
|
.PHONY: help FORCE
|
|
|
|
.NOTPARALLEL:
|
|
|
|
|