]> Git Repo - buildroot-mgba.git/blob - Makefile
Remove some unwanted white space in Makefile
[buildroot-mgba.git] / Makefile
1 # Makefile for buildroot2
2 #
3 # Copyright (C) 1999-2005 by Erik Andersen <[email protected]>
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 #--------------------------------------------------------------
21 # Just run 'make menuconfig', configure stuff, then run 'make'.
22 # You shouldn't need to mess with anything beyond this point...
23 #--------------------------------------------------------------
24 TOPDIR=./
25 CONFIG_CONFIG_IN = Config.in
26 CONFIG_DEFCONFIG = .defconfig
27 CONFIG = package/config
28
29 noconfig_targets := menuconfig config oldconfig randconfig \
30         defconfig allyesconfig allnoconfig release tags    \
31         source-check
32
33 #       $(shell find . -name *_defconfig |sed 's/.*\///')
34
35 # Pull in the user's configuration file
36 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
37 -include $(TOPDIR).config
38 endif
39
40 # To put more focus on warnings, be less verbose as default
41 # Use 'make V=1' to see the full commands
42 ifdef V
43   ifeq ("$(origin V)", "command line")
44     KBUILD_VERBOSE = $(V)
45   endif
46 endif
47 ifndef KBUILD_VERBOSE
48   KBUILD_VERBOSE = 0
49 endif
50
51 ifeq ($(KBUILD_VERBOSE),1)
52   quiet=
53   Q =
54 else
55   quiet=quiet_
56   Q = @
57 endif
58
59 CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \
60         else if [ -x /bin/bash ]; then echo /bin/bash; \
61         else echo sh; fi ; fi)
62
63 export CONFIG_SHELL quiet Q KBUILD_VERBOSE
64
65 ifndef HOSTAR
66 HOSTAR:=ar
67 endif
68 ifndef HOSTAS
69 HOSTAS:=as
70 endif
71 ifndef HOSTCC
72 HOSTCC:=gcc
73 else
74 endif
75 ifndef HOSTCXX
76 HOSTCXX:=g++
77 endif
78 ifndef HOSTLD
79 HOSTLD:=ld
80 endif
81 HOSTAR:=$(shell $(CONFIG_SHELL) which $(HOSTAR) || type -p $(HOSTAR) || echo ar)
82 HOSTAS:=$(shell $(CONFIG_SHELL) which $(HOSTAS) || type -p $(HOSTAS) || echo as)
83 HOSTCC:=$(shell $(CONFIG_SHELL) which $(HOSTCC) || type -p $(HOSTCC) || echo gcc)
84 HOSTCXX:=$(shell $(CONFIG_SHELL) which $(HOSTCXX) || type -p $(HOSTCXX) || echo g++)
85 HOSTLD:=$(shell $(CONFIG_SHELL) which $(HOSTLD) || type -p $(HOSTLD) || echo ld)
86 ifndef CFLAGS_FOR_BUILD
87 CFLAGS_FOR_BUILD:="-g -O2"
88 endif
89 export HOSTAR HOSTAS HOSTCC HOSTCXX HOSTLD
90
91
92 ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
93
94 # cc-option
95 # Usage: cflags-y += $(call cc-option, -march=winchip-c6, -march=i586)
96 # sets -march=winchip-c6 if supported else falls back to -march=i586
97 # without checking the latter.
98 cc-option = $(shell if $(TARGET_CC) $(TARGET_CFLAGS) $(1) -S -o /dev/null -xc /dev/null \
99         > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi ;)
100
101 #############################################################
102 #
103 # Hide troublesome environment variables from sub processes
104 #
105 #############################################################
106 unexport CROSS_COMPILE
107 unexport ARCH
108
109 #############################################################
110 #
111 # Setup the proper filename extensions for the host
112 #
113 ##############################################################
114 ifneq ($(findstring linux,$(BR2_GNU_BUILD_SUFFIX)),)
115 HOST_EXEEXT:=
116 HOST_LIBEXT:=.a
117 HOST_SHREXT:=.so
118 endif
119 ifneq ($(findstring apple,$(BR2_GNU_BUILD_SUFFIX)),)
120 HOST_EXEEXT:=
121 HOST_LIBEXT:=.a
122 HOST_SHREXT:=.dylib
123 endif
124 ifneq ($(findstring cygwin,$(BR2_GNU_BUILD_SUFFIX)),)
125 HOST_EXEEXT:=.exe
126 HOST_LIBEXT:=.lib
127 HOST_SHREXT:=.dll
128 endif
129 ifneq ($(findstring mingw,$(BR2_GNU_BUILD_SUFFIX)),)
130 HOST_EXEEXT:=.exe
131 HOST_LIBEXT:=.lib
132 HOST_SHREXT:=.dll
133 endif
134
135 # The preferred type of libs we build for the target
136 ifeq ($(BR2_PREFER_STATIC_LIB),y)
137 LIBTGTEXT=.a
138 #PREFERRED_LIB_FLAGS:=--disable-shared --enable-static
139 else
140 LIBTGTEXT=.so
141 #PREFERRED_LIB_FLAGS:=--disable-static --enable-shared
142 endif
143 PREFERRED_LIB_FLAGS:=--enable-static --enable-shared
144
145
146 #############################################################
147 #
148 # The list of stuff to build for the target toolchain
149 # along with the packages to build for the target.
150 #
151 ##############################################################
152 ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
153 TARGETS:=uclibc-configured binutils gcc uclibc-target-utils
154 else
155 TARGETS:=uclibc
156 endif
157 include toolchain/Makefile.in
158 include package/Makefile.in
159
160 #############################################################
161 #
162 # You should probably leave this stuff alone unless you know
163 # what you are doing.
164 #
165 #############################################################
166
167 all:   world
168
169 # In this section, we need .config
170 include .config.cmd
171
172 # We also need the various per-package makefiles, which also add
173 # each selected package to TARGETS if that package was selected
174 # in the .config file.
175 include toolchain/*/*.mk
176 include package/*/*.mk
177
178 # target stuff is last so it can override anything else
179 include target/Makefile.in
180
181 TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
182 TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS))
183 TARGETS_DIRCLEAN:=$(patsubst %,%-dirclean,$(TARGETS))
184
185 world: $(DL_DIR) $(BUILD_DIR) $(STAGING_DIR) $(TARGET_DIR) $(TARGETS)
186 dirs: $(DL_DIR) $(BUILD_DIR) $(STAGING_DIR)
187
188 .PHONY: all world dirs clean dirclean distclean source $(TARGETS) \
189         $(TARGETS_CLEAN) $(TARGETS_DIRCLEAN) $(TARGETS_SOURCE) \
190         $(DL_DIR) $(BUILD_DIR) $(TOOL_BUILD_DIR) $(STAGING_DIR)
191
192 #############################################################
193 #
194 # staging and target directories do NOT list these as
195 # dependencies anywhere else
196 #
197 #############################################################
198 $(DL_DIR) $(BUILD_DIR) $(TOOL_BUILD_DIR):
199         @mkdir -p $@
200
201 $(STAGING_DIR):
202         @mkdir -p $(STAGING_DIR)/bin
203         @mkdir -p $(STAGING_DIR)/lib
204 ifeq ($(BR2_TOOLCHAIN_SYSROOT),y)
205         @mkdir -p $(STAGING_DIR)/usr/lib
206 else
207         @ln -snf . $(STAGING_DIR)/usr
208         @mkdir -p $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)
209         @ln -snf ../lib $(STAGING_DIR)/usr/lib
210         @ln -snf ../lib $(STAGING_DIR)/usr/$(REAL_GNU_TARGET_NAME)/lib
211 endif
212         @mkdir -p $(STAGING_DIR)/usr/include
213
214 $(TARGET_DIR):
215         mkdir -p $(TARGET_DIR)
216         if [ -d "$(TARGET_SKELETON)" ] ; then \
217                 cp -fa $(TARGET_SKELETON)/* $(TARGET_DIR)/; \
218         fi;
219         touch $(STAGING_DIR)/.fakeroot.00000
220         -find $(TARGET_DIR) -type d -name CVS | xargs rm -rf
221         -find $(TARGET_DIR) -type d -name .svn | xargs rm -rf
222
223 source: $(TARGETS_SOURCE) $(HOST_SOURCE)
224
225 .config.check: dependencies
226         $(SED) '/BR2_WGET/s/\"$$/ --spider\"/g' .config
227         touch $@
228
229 _source-check: .config.check
230         $(MAKE) source
231
232 #############################################################
233 #
234 # Cleanup and misc junk
235 #
236 #############################################################
237 clean: $(TARGETS_CLEAN)
238         rm -rf $(STAGING_DIR) $(TARGET_DIR) $(IMAGE)
239
240 dirclean: $(TARGETS_DIRCLEAN)
241         rm -rf $(STAGING_DIR) $(TARGET_DIR) $(IMAGE)
242
243 distclean:
244 ifeq ($(DL_DIR),$(BASE_DIR)/dl)
245         rm -rf $(DL_DIR)
246 endif
247         rm -rf $(BUILD_DIR) $(LINUX_KERNEL) $(IMAGE)
248         $(MAKE) -C $(CONFIG) clean
249
250 sourceball:
251         rm -rf $(BUILD_DIR)
252         set -e; \
253         cd ..; \
254         rm -f buildroot.tar.bz2; \
255         tar -cvf buildroot.tar buildroot; \
256         bzip2 -9 buildroot.tar; \
257
258
259 else # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
260
261 all: menuconfig
262
263 # configuration
264 # ---------------------------------------------------------------------------
265
266 $(CONFIG)/conf:
267         $(MAKE) CC="$(HOSTCC)" CFLAGS=$(CFLAGS_FOR_BUILD) MAKECMDGOALS="$(MAKECMDGOALS)" \
268                 -C $(CONFIG) conf
269         -@if [ ! -f .config ] ; then \
270                 cp $(CONFIG_DEFCONFIG) .config; \
271         fi
272 $(CONFIG)/mconf:
273         $(MAKE) CC="$(HOSTCC)" CFLAGS=$(CFLAGS_FOR_BUILD) MAKECMDGOALS="$(MAKECMDGOALS)" \
274                 -C $(CONFIG) conf mconf
275         -@if [ ! -f .config ] ; then \
276                 cp $(CONFIG_DEFCONFIG) .config; \
277         fi
278
279 menuconfig: $(CONFIG)/mconf
280         @$(CONFIG)/mconf $(CONFIG_CONFIG_IN)
281
282 config: $(CONFIG)/conf
283         @$(CONFIG)/conf $(CONFIG_CONFIG_IN)
284
285 oldconfig: $(CONFIG)/conf
286         @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
287
288 randconfig: $(CONFIG)/conf
289         @$(CONFIG)/conf -r $(CONFIG_CONFIG_IN)
290
291 allyesconfig: $(CONFIG)/conf
292         cp $(CONFIG_DEFCONFIG) .config
293         @$(CONFIG)/conf -y $(CONFIG_CONFIG_IN)
294         #sed -i -e "s/^CONFIG_DEBUG.*/# CONFIG_DEBUG is not set/" .config
295
296 allnoconfig: $(CONFIG)/conf
297         @$(CONFIG)/conf -n $(CONFIG_CONFIG_IN)
298
299 defconfig: $(CONFIG)/conf
300         @$(CONFIG)/conf -d $(CONFIG_CONFIG_IN)
301
302 # check if download URLs are outdated 
303 source-check: allyesconfig
304         $(MAKE) _source-check
305
306 #############################################################
307 #
308 # Cleanup and misc junk
309 #
310 #############################################################
311 clean:
312         rm -f .config .config.old .config.cmd .tmpconfig.h
313         - $(MAKE) -C $(CONFIG) clean
314
315 distclean: clean
316         rm -rf sources/*
317
318 endif # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
319
320 %_defconfig: $(CONFIG)/conf
321         cp $(shell find ./target/ -name $@) .config
322         @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
323
324
325 .PHONY: dummy subdirs release distclean clean config oldconfig \
326         menuconfig tags check test depend defconfig
327
328
This page took 0.054037 seconds and 4 git commands to generate.