3 # Copyright (C) 2005 by Felix Fietkau <nbd@vd-s.ath.cx>
4 # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
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.
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.
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
21 #--------------------------------------------------------------
22 # Just run 'make menuconfig', configure stuff, then run 'make'.
23 # You shouldn't need to mess with anything beyond this point...
24 #--------------------------------------------------------------
28 CONFIG_CONFIG_IN
= Config.in.devel
30 CONFIG_CONFIG_IN
= Config.in
32 CONFIG_DEFCONFIG
= .defconfig
33 CONFIG
= package
/config
35 noconfig_targets
:= menuconfig config oldconfig randconfig \
36 defconfig allyesconfig allnoconfig release
tags
38 # Pull in the user's configuration file
39 ifeq ($(filter $(noconfig_targets
),$(MAKECMDGOALS
)),)
40 -include $(TOPDIR
)/.config
43 ifeq ($(strip $(BR2_HAVE_DOT_CONFIG
)),y
)
44 include $(TOPDIR
)/rules.mk
50 ##############################################################
54 ##############################################################
56 $(MAKE
) -C toolchain
install
58 ##############################################################
62 ##############################################################
64 package_compile
: target_compile
65 $(MAKE
) -C package compile
67 package_install
: package_compile toolchain
68 $(MAKE
) -C package
install
70 #############################################################
72 # You should probably leave this stuff alone unless you know
75 #############################################################
78 # In this section, we need .config
81 world
: $(DL_DIR
) $(BUILD_DIR
) configtest target_prepare
$(TARGET_DIR
) toolchain_install package_install target_install package_index
83 .PHONY
: all world
clean dirclean
distclean image_clean target_clean source target_prepare target_install toolchain_install package_install configtest
86 -cp .config .config.
test
87 -scripts
/configtest.pl
91 $(STAGING_DIR
)/usr
/bin
/ipkg-make-index .
> Packages \
95 $(MAKE
) -C target prepare
98 $(MAKE
) -C target compile
101 $(MAKE
) -C target
install
107 @mkdir
-p
$(BUILD_DIR
)
109 source
: $(TARGETS_SOURCE
)
111 #############################################################
113 # Cleanup and misc junk
115 #############################################################
117 rm -f
$(STAMP_DIR
)/.
*-compile
118 rm -f
$(STAMP_DIR
)/.
*-install
121 target_clean
: image_clean
125 @
$(MAKE
) -C
$(CONFIG
) clean
131 rm -rf
$(STAMP_DIR
) $(DL_DIR
) $(BUILD_DIR
) $(TOOL_BUILD_DIR
) $(STAGING_DIR
)
132 rm -f .config
* .tmpconfig.h
134 sourceball
: distclean
137 rm -f buildroot.
tar.bz2
; \
138 tar -cvf buildroot.
tar buildroot
; \
139 bzip2
-9 buildroot.
tar; \
141 else # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
146 # ---------------------------------------------------------------------------
149 $(MAKE
) -C
$(CONFIG
) conf
150 -@if
[ ! -f .config
] ; then \
151 cp
$(CONFIG_DEFCONFIG
) .config
; \
155 -@if
[ ! -f .config
] ; then \
156 cp
$(CONFIG_DEFCONFIG
) .config
; \
159 menuconfig
: $(CONFIG
)/mconf
161 -cp .config .config.
test
162 @
$(CONFIG
)/mconf
$(CONFIG_CONFIG_IN
)
163 -.
/scripts
/configtest.pl
165 config
: $(CONFIG
)/conf
167 -cp .config .config.
test
168 @
$(CONFIG
)/conf
$(CONFIG_CONFIG_IN
)
169 -.
/scripts
/configtest.pl
171 oldconfig
: $(CONFIG
)/conf
173 -cp .config .config.
test
174 @
$(CONFIG
)/conf
-o
$(CONFIG_CONFIG_IN
)
175 -.
/scripts
/configtest.pl
177 randconfig
: $(CONFIG
)/conf
179 -cp .config .config.
test
180 @
$(CONFIG
)/conf
-r
$(CONFIG_CONFIG_IN
)
181 -.
/scripts
/configtest.pl
183 allyesconfig
: $(CONFIG
)/conf
184 #@$(CONFIG)/conf -y $(CONFIG_CONFIG_IN)
185 #sed -i -e "s/^CONFIG_DEBUG.*/# CONFIG_DEBUG is not set/" .config
187 -cp .config .config.
test
188 @
$(CONFIG
)/conf
-o
$(CONFIG_CONFIG_IN
)
189 -.
/scripts
/configtest.pl
191 allnoconfig
: $(CONFIG
)/conf
193 -cp .config .config.
test
194 @
$(CONFIG
)/conf
-n
$(CONFIG_CONFIG_IN
)
195 -.
/scripts
/configtest.pl
197 defconfig
: $(CONFIG
)/conf
199 -cp .config .config.
test
200 @
$(CONFIG
)/conf
-d
$(CONFIG_CONFIG_IN
)
201 -.
/scripts
/configtest.pl
203 endif # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
205 .PHONY
: dummy subdirs release
distclean clean config oldconfig \
206 menuconfig
tags check test depend