2006-06-21 11:17:13 +08:00
|
|
|
# Makefile for OpenWrt
|
|
|
|
#
|
|
|
|
# Copyright (C) 2006 by Felix Fietkau <openwrt@nbd.name>
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
|
|
|
RELEASE:=Kamikaze
|
|
|
|
#VERSION:=2.0 # uncomment for final release
|
|
|
|
|
|
|
|
#--------------------------------------------------------------
|
|
|
|
# Just run 'make menuconfig', configure stuff, then run 'make'.
|
|
|
|
# You shouldn't need to mess with anything beyond this point...
|
|
|
|
#--------------------------------------------------------------
|
|
|
|
TOPDIR=${shell pwd}
|
2005-04-11 04:28:17 +08:00
|
|
|
export TOPDIR
|
|
|
|
|
2006-06-21 11:17:13 +08:00
|
|
|
DEVELOPER=1
|
|
|
|
export DEVELOPER
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2007-03-16 11:02:31 +08:00
|
|
|
SDK=1
|
|
|
|
export SDK
|
|
|
|
|
2007-03-27 04:17:28 +08:00
|
|
|
export IS_TTY=$(shell tty -s && echo 1 || echo 0)
|
|
|
|
include $(TOPDIR)/include/verbose.mk
|
|
|
|
|
2006-06-21 11:17:13 +08:00
|
|
|
all: world
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2007-03-27 04:17:28 +08:00
|
|
|
define stamp
|
|
|
|
tmp/info/.stamp-$(1)-$(shell ls $(2)/*/Makefile $(5) | (md5sum || md5) 2>/dev/null | cut -d' ' -f1)
|
|
|
|
endef
|
|
|
|
|
2007-04-04 07:29:02 +08:00
|
|
|
STAMP=$(call stamp,packageinfo,package)
|
2007-03-27 04:17:28 +08:00
|
|
|
|
|
|
|
$(STAMP):
|
|
|
|
@mkdir -p tmp/info
|
2007-04-04 07:29:02 +08:00
|
|
|
@rm -f tmp/info/.stamp-packageinfo*
|
2007-03-27 04:17:28 +08:00
|
|
|
@touch $@
|
|
|
|
|
|
|
|
define filedep
|
|
|
|
$(foreach FILE,$(shell ls package/*/Makefile),
|
2007-04-04 07:29:02 +08:00
|
|
|
tmp/.packageinfo: $(FILE)
|
2007-03-27 04:17:28 +08:00
|
|
|
$(FILE):
|
|
|
|
@true
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(filedep))
|
2006-06-21 11:17:13 +08:00
|
|
|
|
2007-04-04 07:29:02 +08:00
|
|
|
tmp/.packageinfo: $(STAMP)
|
2007-03-27 04:17:28 +08:00
|
|
|
@echo -n Collecting package info...
|
2007-04-04 07:29:02 +08:00
|
|
|
@$(NO_TRACE_MAKE) -s -f include/scan.mk SCAN_TARGET="packageinfo" SCAN_DIR="package" SCAN_NAME="package" SCAN_DEPS=""
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2007-03-27 04:17:28 +08:00
|
|
|
package/%: FORCE
|
2007-04-04 07:29:02 +08:00
|
|
|
@$(NO_TRACE_MAKE) -s tmp/.packageinfo
|
2006-06-21 11:17:13 +08:00
|
|
|
$(MAKE) -C package $(patsubst package/%,%,$@) SDK=1
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2006-06-21 11:17:13 +08:00
|
|
|
download: FORCE
|
|
|
|
$(MAKE) package/download
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2006-06-21 11:17:13 +08:00
|
|
|
world: FORCE
|
|
|
|
$(MAKE) package/compile
|
2006-07-19 04:17:05 +08:00
|
|
|
-( \
|
|
|
|
cd package; \
|
2007-12-10 02:52:52 +08:00
|
|
|
for configfile in `find . -maxdepth 2 -name Config.in` ; do \
|
|
|
|
$(MAKE) compile -C `dirname $$configfile` ; \
|
|
|
|
done \
|
2006-07-19 04:17:05 +08:00
|
|
|
)
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2006-06-21 11:17:13 +08:00
|
|
|
clean: FORCE
|
|
|
|
rm -rf build_* bin
|
2005-04-11 04:28:17 +08:00
|
|
|
|
2006-06-21 11:17:13 +08:00
|
|
|
distclean: clean
|
|
|
|
rm -rf dl .pkg*
|
2005-12-12 08:08:08 +08:00
|
|
|
|
2006-06-21 11:17:13 +08:00
|
|
|
.PHONY: FORCE
|
|
|
|
FORCE:
|