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...
|
|
|
|
#--------------------------------------------------------------
|
2005-03-06 03:34:52 +00:00
|
|
|
TOPDIR=${shell pwd}
|
|
|
|
export TOPDIR
|
2006-06-23 21:47:24 +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),)
|
|
|
|
OPENWRTVERSION:=$(VERSION) ($(OPENWRTVERSION))
|
2005-04-05 18:21:58 +00:00
|
|
|
else
|
2006-04-20 23:03:42 +00:00
|
|
|
REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' )
|
|
|
|
ifneq ($(REV),)
|
|
|
|
OPENWRTVERSION:=$(OPENWRTVERSION)/r$(REV)
|
2005-04-05 18:21:58 +00:00
|
|
|
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-05-31 12:33:06 +00:00
|
|
|
all: world
|
2006-05-11 00:18:12 +00:00
|
|
|
|
2006-05-10 20:57:35 +00:00
|
|
|
.pkginfo: FORCE
|
2006-05-19 23:02:14 +00:00
|
|
|
ifneq ($(shell ./scripts/timestamp.pl -p .pkginfo package Makefile),.pkginfo)
|
2006-04-20 23:03:42 +00:00
|
|
|
@echo Collecting package info...
|
2006-05-19 23:02:14 +00:00
|
|
|
@-for dir in package/*/; do \
|
|
|
|
echo Source-Makefile: $${dir}Makefile; \
|
2006-06-23 22:46:07 +00:00
|
|
|
$(NO_TRACE_MAKE) --no-print-dir DUMP=1 -C $$dir 2>&- || true; \
|
2006-04-20 23:03:42 +00:00
|
|
|
done > $@
|
2006-05-10 20:32:22 +00:00
|
|
|
endif
|
|
|
|
|
2006-04-20 23:03:42 +00:00
|
|
|
.config.in: .pkginfo
|
2006-07-12 22:40:14 +00:00
|
|
|
@./scripts/gen_menuconfig.pl < $< > $@ || rm -f $@
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-05-10 20:57:35 +00:00
|
|
|
pkginfo-clean: FORCE
|
2006-04-20 23:03:42 +00:00
|
|
|
-rm -f .pkginfo .config.in
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-06-02 16:27:15 +00:00
|
|
|
./scripts/config/mconf: .config.in
|
2006-07-12 22:40:14 +00:00
|
|
|
@$(MAKE) -C scripts/config all
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-06-02 16:27:15 +00:00
|
|
|
./scripts/config/conf: .config.in
|
2006-07-12 22:40:14 +00:00
|
|
|
@$(MAKE) -C scripts/config conf
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-06-02 16:27:15 +00:00
|
|
|
config: ./scripts/config/conf FORCE
|
2006-04-20 23:03:42 +00:00
|
|
|
$< Config.in
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-06-02 16:27:15 +00:00
|
|
|
defconfig: ./scripts/config/conf FORCE
|
|
|
|
touch .config
|
|
|
|
$< -D .config Config.in
|
2006-05-31 14:32:17 +00:00
|
|
|
|
2006-06-02 16:27:15 +00:00
|
|
|
oldconfig: ./scripts/config/conf FORCE
|
2006-05-31 14:32:17 +00:00
|
|
|
$< -o Config.in
|
|
|
|
|
2006-06-02 16:27:15 +00:00
|
|
|
menuconfig: ./scripts/config/mconf FORCE
|
2006-04-20 23:03:42 +00:00
|
|
|
$< Config.in
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-06-01 00:19:52 +00:00
|
|
|
config-clean: FORCE
|
2006-04-20 23:03:42 +00:00
|
|
|
$(MAKE) -C scripts/config clean
|
2005-01-16 11:43:02 +00:00
|
|
|
|
2006-06-01 00:19:52 +00:00
|
|
|
package/%: .pkginfo FORCE
|
2006-05-30 17:09:06 +00:00
|
|
|
$(MAKE) -C package $(patsubst package/%,%,$@)
|
2006-05-30 14:11:24 +00:00
|
|
|
|
2006-06-01 00:19:52 +00:00
|
|
|
target/%: .pkginfo FORCE
|
2006-05-30 17:09:06 +00:00
|
|
|
$(MAKE) -C target $(patsubst target/%,%,$@)
|
2006-05-30 14:11:24 +00:00
|
|
|
|
2006-06-01 00:19:52 +00:00
|
|
|
toolchain/%: FORCE
|
2006-05-30 14:11:24 +00:00
|
|
|
$(MAKE) -C toolchain $(patsubst toolchain/%,%,$@)
|
|
|
|
|
2006-06-20 23:57:10 +00:00
|
|
|
.config: ./scripts/config/conf FORCE
|
2006-06-25 17:00:55 +00:00
|
|
|
@[ -f .config ] || $(NO_TRACE_MAKE) menuconfig
|
2006-07-12 22:40:14 +00:00
|
|
|
@$< -D .config Config.in &> /dev/null
|
2006-06-20 23:57:10 +00:00
|
|
|
|
2006-07-19 13:25:09 +00:00
|
|
|
.prereq: $(TOPDIR)/include/prereq.mk .pkginfo
|
|
|
|
@$(NO_TRACE_MAKE) -s -f $(TOPDIR)/include/prereq.mk prereq 2>/dev/null || { \
|
|
|
|
echo "Prerequisite check failed. Use FORCE=1 to override."; \
|
|
|
|
false; \
|
|
|
|
}
|
|
|
|
@touch $@
|
|
|
|
|
|
|
|
prereq: .prereq FORCE
|
|
|
|
|
2006-06-20 23:57:10 +00:00
|
|
|
download: .config FORCE
|
|
|
|
$(MAKE) toolchain/download
|
|
|
|
$(MAKE) package/download
|
|
|
|
$(MAKE) target/download
|
|
|
|
|
2006-07-19 13:25:09 +00:00
|
|
|
ifeq ($(FORCE),)
|
|
|
|
world: .prereq
|
|
|
|
endif
|
|
|
|
|
2006-06-20 23:57:10 +00:00
|
|
|
world: .config FORCE
|
2006-05-31 12:33:06 +00:00
|
|
|
$(MAKE) toolchain/install
|
|
|
|
$(MAKE) target/compile
|
|
|
|
$(MAKE) package/compile
|
|
|
|
$(MAKE) package/install
|
|
|
|
$(MAKE) target/install
|
|
|
|
|
2006-06-01 00:19:52 +00:00
|
|
|
clean: FORCE
|
|
|
|
rm -rf build_* bin
|
|
|
|
|
2006-06-08 00:39:08 +00:00
|
|
|
dirclean: clean
|
2006-06-01 00:19:52 +00:00
|
|
|
rm -rf staging_dir_* toolchain_build_*
|
|
|
|
|
2006-06-08 00:39:08 +00:00
|
|
|
distclean: dirclean config-clean
|
2006-07-19 13:36:04 +00:00
|
|
|
rm -rf dl .*config* .pkg* .prereq
|
2006-06-01 00:19:52 +00:00
|
|
|
|
2006-07-20 17:20:17 +00:00
|
|
|
|
2006-07-20 17:24:20 +00:00
|
|
|
.SILENT: clean dirclean distclean config-clean download world
|
2006-05-10 20:57:35 +00:00
|
|
|
.PHONY: FORCE
|
|
|
|
FORCE:
|