menuconfig cleanup
[openwrt-10.03/.git] / Makefile
1 # Makefile for OpenWrt
2 #
3 # Copyright (C) 2006 by Felix Fietkau <openwrt@nbd.name>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 #
19
20 RELEASE:=Kamikaze
21 #VERSION:=2.0 # uncomment for final release
22
23 #--------------------------------------------------------------
24 # Just run 'make menuconfig', configure stuff, then run 'make'.
25 # You shouldn't need to mess with anything beyond this point...
26 #--------------------------------------------------------------
27 TOPDIR=${shell pwd}
28 export TOPDIR
29
30 OPENWRTVERSION:=$(RELEASE)
31 ifneq ($(VERSION),)
32 OPENWRTVERSION:=$(VERSION) ($(OPENWRTVERSION))
33 else
34 REV:=$(shell LANG=C svn info | awk '/^Revision:/ { print$$2 }' )
35 ifneq ($(REV),)
36 OPENWRTVERSION:=$(OPENWRTVERSION)/r$(REV)
37 endif
38 endif
39 export OPENWRTVERSION
40
41 ifeq ($(shell ./scripts/timestamp.pl -p .pkginfo package),package)
42 .pkginfo: pkginfo-clean
43 endif
44
45 .pkginfo:
46         @echo Collecting package info...
47         @-for makefile in package/*/Makefile; do \
48                 echo Source-Makefile: $$makefile; \
49                 $(MAKE) DUMP=1 -f $$makefile 2>&- || true; \
50         done > $@
51         
52 .config.in: .pkginfo
53
54 pkginfo-clean:
55         -rm -f .pkginfo .config.in
56
57 scripts/config/mconf: .config.in
58         $(MAKE) -C scripts/config all
59
60 scripts/config/conf: .config.in
61         $(MAKE) -C scripts/config conf
62
63 menuconfig: scripts/config/mconf
64         $< Config.in
65
66 config: scripts/config/mconf
67         $< Config.in
68
69 config-clean:
70         $(MAKE) -C scripts/config clean
71
72 .PHONY: pkginfo-clean
73
74