2005-10-22 00:06:20 +00:00
|
|
|
# Makefile for OpenWrt
|
2005-01-16 11:43:02 +00:00
|
|
|
#
|
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
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
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
|
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; \
|
|
|
|
$(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-04-21 00:12:18 +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-04-20 23:03:42 +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-04-20 23:03:42 +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-02 16:27:15 +00:00
|
|
|
world: ./scripts/config/conf FORCE
|
|
|
|
touch .config
|
|
|
|
$< -D .config Config.in >/dev/null 2>/dev/null
|
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
|
|
|
|
|
|
|
|
dirclean: clean FORCE
|
|
|
|
rm -rf staging_dir_* toolchain_build_*
|
|
|
|
|
|
|
|
distclean: dirclean FORCE
|
2006-06-02 16:30:25 +00:00
|
|
|
rm -rf dl .*config* .pkg*
|
2006-06-01 00:19:52 +00:00
|
|
|
|
2006-05-10 20:57:35 +00:00
|
|
|
.PHONY: FORCE
|
|
|
|
FORCE:
|