create a package index after build
[openwrt.git] / openwrt / Makefile
1 # Makefile for OpenWRT
2 #
3 # Copyright (C) 2005 by Felix Fietkau <nbd@vd-s.ath.cx>
4 # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #
20
21 #--------------------------------------------------------------
22 # Just run 'make menuconfig', configure stuff, then run 'make'.
23 # You shouldn't need to mess with anything beyond this point...
24 #--------------------------------------------------------------
25 TOPDIR=${shell pwd}
26 export TOPDIR
27 CONFIG_CONFIG_IN = Config.in
28 CONFIG_DEFCONFIG = .defconfig
29 CONFIG = package/config
30
31 noconfig_targets := menuconfig config oldconfig randconfig \
32         defconfig allyesconfig allnoconfig release tags
33
34 # Pull in the user's configuration file
35 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
36 -include $(TOPDIR)/.config
37 endif
38
39 ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
40 include $(TOPDIR)/rules.mk
41
42 all: world
43
44 ##############################################################
45 #
46 # Build the toolchain
47 #
48 ##############################################################
49 toolchain_install:
50         $(MAKE) -C toolchain install
51
52 ##############################################################
53 #
54 # Make all packages
55 #
56 ##############################################################
57
58 package_install: toolchain
59         $(MAKE) -C package compile install
60
61 #############################################################
62 #
63 # You should probably leave this stuff alone unless you know
64 # what you are doing.
65 #
66 #############################################################
67
68
69 # In this section, we need .config
70 include .config.cmd
71
72 world: $(DL_DIR) $(BUILD_DIR) target_prepare $(TARGET_DIR) toolchain_install package_install target_install package_index
73
74 .PHONY: all world clean dirclean distclean image_clean target_clean source target_prepare target_install toolchain_install package_install
75
76 package_index:
77         $(STAGING_DIR)/usr/bin/ipkg-make-index $(PACKAGE_DIR) > $(PACKAGE_DIR)/Packages
78
79 target_prepare:
80         $(MAKE) -C target prepare
81
82 target_install:
83         $(MAKE) -C target install
84
85 $(DL_DIR):
86         @mkdir -p $(DL_DIR)
87
88 $(BUILD_DIR):
89         @mkdir -p $(BUILD_DIR)
90
91 source: $(TARGETS_SOURCE)
92
93 #############################################################
94 #
95 # Cleanup and misc junk
96 #
97 #############################################################
98 image_clean:
99         rm -f $(STAMP_DIR)/.*-compile
100         rm -f $(STAMP_DIR)/.*-install
101         rm -rf $(BIN_DIR)
102         
103 target_clean: image_clean
104         rm -rf $(TARGET_DIR)
105
106 clean: target_clean
107         @$(MAKE) -C $(CONFIG) clean
108
109 dirclean: clean
110         rm -rf $(STAMP_DIR)
111         $(MAKE) -C package clean
112         $(MAKE) -C target clean
113         rm -rf $(BUILD_DIR)
114
115 distclean: clean
116         rm -rf $(STAMP_DIR) $(DL_DIR) $(BUILD_DIR) $(TOOL_BUILD_DIR)
117         rm -f .config* .tmpconfig.h
118
119 sourceball: distclean
120         set -e; \
121         cd ..; \
122         rm -f buildroot.tar.bz2; \
123         tar -cvf buildroot.tar buildroot; \
124         bzip2 -9 buildroot.tar; \
125
126 else # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
127
128 all: menuconfig
129
130 # configuration
131 # ---------------------------------------------------------------------------
132
133 $(CONFIG)/conf:
134         $(MAKE) -C $(CONFIG) conf
135         -@if [ ! -f .config ] ; then \
136                 cp $(CONFIG_DEFCONFIG) .config; \
137         fi
138 $(CONFIG)/mconf:
139         $(MAKE) -C $(CONFIG) 
140         -@if [ ! -f .config ] ; then \
141                 cp $(CONFIG_DEFCONFIG) .config; \
142         fi
143
144 menuconfig: $(CONFIG)/mconf
145         -touch .config
146         -cp .config .config.test
147         @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
148         -./scripts/configtest.pl
149
150 config: $(CONFIG)/conf
151         -touch .config
152         -cp .config .config.test
153         @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
154         -./scripts/configtest.pl
155
156 oldconfig: $(CONFIG)/conf
157         -touch .config
158         -cp .config .config.test
159         @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
160         -./scripts/configtest.pl
161
162 randconfig: $(CONFIG)/conf
163         -touch .config
164         -cp .config .config.test
165         @$(CONFIG)/conf -r $(CONFIG_CONFIG_IN)
166         -./scripts/configtest.pl
167
168 allyesconfig: $(CONFIG)/conf
169         #@$(CONFIG)/conf -y $(CONFIG_CONFIG_IN)
170         #sed -i -e "s/^CONFIG_DEBUG.*/# CONFIG_DEBUG is not set/" .config
171         -touch .config
172         -cp .config .config.test
173         @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
174         -./scripts/configtest.pl
175
176 allnoconfig: $(CONFIG)/conf
177         -touch .config
178         -cp .config .config.test
179         @$(CONFIG)/conf -n $(CONFIG_CONFIG_IN)
180         -./scripts/configtest.pl
181
182 defconfig: $(CONFIG)/conf
183         -touch .config
184         -cp .config .config.test
185         @$(CONFIG)/conf -d $(CONFIG_CONFIG_IN)
186         -./scripts/configtest.pl
187
188 endif # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
189
190 .PHONY: dummy subdirs release distclean clean config oldconfig \
191         menuconfig tags check test depend
192