whitespace between if and (
[oweals/busybox.git] / Rules.mak
1 # Rules.make for busybox
2 #
3 # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
4 #
5 # Licensed under GPLv2, see the file LICENSE in this tarball for details.
6 #
7
8 # Pull in the user's busybox configuration
9 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
10 -include $(top_builddir)/.config
11 endif
12
13 #--------------------------------------------------------
14 PROG      := busybox
15 MAJOR_VERSION   :=1
16 MINOR_VERSION   :=2
17 SUBLEVEL_VERSION:=0
18 EXTRAVERSION    :=-pre0
19 VERSION   :=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)$(EXTRAVERSION)
20 BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
21
22
23 #--------------------------------------------------------
24 # With a modern GNU make(1) (highly recommended, that's what all the
25 # developers use), all of the following configuration values can be
26 # overridden at the command line.  For example:
27 #   make CROSS=powerpc-linux- top_srcdir="$HOME/busybox" PREFIX=/mnt/app
28 #--------------------------------------------------------
29
30 # If you are running a cross compiler, you will want to set 'CROSS'
31 # to something more interesting...  Target architecture is determined
32 # by asking the CC compiler what arch it compiles things for, so unless
33 # your compiler is broken, you should not need to specify TARGET_ARCH
34 CROSS           =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
35 CC             = $(CROSS)gcc
36 AR             = $(CROSS)ar
37 AS             = $(CROSS)as
38 LD             = $(CROSS)ld
39 NM             = $(CROSS)nm
40 STRIP          = $(CROSS)strip
41 ELF2FLT        = $(CROSS)elf2flt
42 CPP            = $(CC) -E
43 SED           ?= sed
44
45
46 # What OS are you compiling busybox for?  This allows you to include
47 # OS specific things, syscall overrides, etc.
48 TARGET_OS=linux
49
50 # Select the compiler needed to build binaries for your development system
51 HOSTCC    = gcc
52 HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
53
54 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
55 LC_ALL:= C
56
57 # If you want to add some simple compiler switches (like -march=i686),
58 # especially from the command line, use this instead of CFLAGS directly.
59 # For optimization overrides, it's better still to set OPTIMIZATION.
60 CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
61
62 # To compile vs some other alternative libc, you may need to use/adjust
63 # the following lines to meet your needs...
64 #
65 # If you are using Red Hat 6.x with the compatible RPMs (for developing under
66 # Red Hat 5.x and glibc 2.0) uncomment the following.  Be sure to read about
67 # using the compatible RPMs (compat-*) at http://www.redhat.com !
68 #LIBCDIR:=/usr/i386-glibc20-linux
69 #
70 # For other libraries, you are on your own.  But these may (or may not) help...
71 #LDFLAGS+=-nostdlib
72 #LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
73 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) -funsigned-char
74 #GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
75
76 # This must bind late because srcdir is reset for every source subdirectory.
77 INCS:=-I$(top_builddir)/include -I$(top_srcdir)/include
78 CFLAGS=$(INCS) -I$(srcdir) -D_GNU_SOURCE
79 CFLAGS+=$(CHECKED_CFLAGS)
80 ARFLAGS=cru
81
82 # Warnings
83
84 CFLAGS += -Wall -Wstrict-prototypes -Wshadow
85 LDFLAGS += $(call check_ld,--warn-common,)
86
87 # gcc centric. Perhaps fiddle with findstring gcc,$(CC) for the rest
88 # get the CC MAJOR/MINOR version
89 CC_MAJOR:=$(shell printf "%02d" $(shell echo __GNUC__ | $(CC) -E -xc - | tail -n 1))
90 CC_MINOR:=$(shell printf "%02d" $(shell echo __GNUC_MINOR__ | $(CC) -E -xc - | tail -n 1))
91
92 #--------------------------------------------------------
93 export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
94 ifeq ($(strip $(TARGET_ARCH)),)
95 TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
96                 -e 's/i.86/i386/' \
97                 -e 's/sparc.*/sparc/' \
98                 -e 's/arm.*/arm/g' \
99                 -e 's/m68k.*/m68k/' \
100                 -e 's/ppc/powerpc/g' \
101                 -e 's/v850.*/v850/g' \
102                 -e 's/sh[234]/sh/' \
103                 -e 's/mips-.*/mips/' \
104                 -e 's/mipsel-.*/mipsel/' \
105                 -e 's/cris.*/cris/' \
106                 )
107 endif
108
109 # A nifty macro to make testing gcc features easier, but note that everything
110 # that uses this _must_ use := or it will be re-evaluated for every file.
111 ifeq ($(strip $(V)),2)
112 VERBOSE_CHECK_GCC=echo check_gcc $(1) >> /dev/stderr;
113 endif
114 check_gcc=$(shell \
115         $(VERBOSE_CHECK_GCC)\
116         if [ "$(1)" != "" ]; then \
117                 if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
118                 then echo "$(1)"; else echo "$(2)"; fi \
119         fi)
120
121 # A not very robust macro to check for available ld flags
122 check_ld=$(shell \
123         if [ "x$(1)" != "x" ]; then \
124                 $(LD) --help | grep -q "\$(1)" && echo "-Wl,$(1)" ; \
125         fi)
126
127 # Pin CHECKED_CFLAGS with := so it's only evaluated once.
128 CHECKED_CFLAGS:=$(call check_gcc,-funsigned-char,)
129 CHECKED_CFLAGS+=$(call check_gcc,-mmax-stack-frame=256,)
130 CHECKED_CFLAGS+=$(call check_gcc,-fno-builtin-strlen)
131
132 # Preemptively pin this too.
133 PROG_CFLAGS:=
134
135
136 #--------------------------------------------------------
137 # Arch specific compiler optimization stuff should go here.
138 # Unless you want to override the defaults, do not set anything
139 # for OPTIMIZATION...
140
141 # use '-Os' optimization if available, else use -O2
142 OPTIMIZATION:=$(call check_gcc,-Os,-O2)
143
144 ifeq ($(CONFIG_BUILD_AT_ONCE),y)
145 # gcc 2.95 exits with 0 for "unrecognized option"
146 ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0)
147         CFLAGS_COMBINE:=$(call check_gcc,--combine,)
148 endif
149 OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
150 OPTIMIZATION+=$(call check_gcc,-fgcse-after-reload,)
151 ifneq ($(CONFIG_BUILD_LIBBUSYBOX),y)
152 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25795
153 # This prevents us from using -fwhole-program when we build the lib
154 PROG_CFLAGS+=$(call check_gcc,-fwhole-program,)
155 endif # CONFIG_BUILD_LIBBUSYBOX
156 endif # CONFIG_BUILD_AT_ONCE
157
158 LIB_LDFLAGS:=$(call check_ld,--enable-new-dtags,)
159 #LIB_LDFLAGS+=$(call check_ld,--reduce-memory-overheads,)
160 #LIB_LDFLAGS+=$(call check_ld,--as-needed,)
161 #LIB_LDFLAGS+=$(call check_ld,--warn-shared-textrel,)
162
163
164 # Some nice architecture specific optimizations
165 ifeq ($(strip $(TARGET_ARCH)),arm)
166         OPTIMIZATION+=-fstrict-aliasing
167 endif
168 ifeq ($(strip $(TARGET_ARCH)),i386)
169         OPTIMIZATION+=$(call check_gcc,-march=i386,)
170 # gcc-4.0 and older seem to benefit from these
171 #ifneq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
172         OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
173         OPTIMIZATION+=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-loops=1,\
174                 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
175 #endif # gcc-4.0 and older
176
177 # gcc-4.1 and beyond seem to benefit from these
178 ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
179         # turn off flags which hurt -Os
180         OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,)
181         OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,)
182         OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,)
183
184         OPTIMIZATION+=$(call check_gcc,-fno-branch-count-reg,)
185 endif # gcc-4.1 and beyond
186 endif
187 OPTIMIZATION+=$(call check_gcc,-fomit-frame-pointer,)
188
189 #
190 #--------------------------------------------------------
191 # If you're going to do a lot of builds with a non-vanilla configuration,
192 # it makes sense to adjust parameters above, so you can type "make"
193 # by itself, instead of following it by the same half-dozen overrides
194 # every time.  The stuff below, on the other hand, is probably less
195 # prone to casual user adjustment.
196 #
197
198 ifeq ($(strip $(CONFIG_LFS)),y)
199     # For large file summit support
200     CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
201 endif
202 ifeq ($(strip $(CONFIG_DMALLOC)),y)
203     # For testing mem leaks with dmalloc
204     CFLAGS+=-DDMALLOC
205     LIBRARIES:=-ldmalloc
206 else
207     ifeq ($(strip $(CONFIG_EFENCE)),y)
208         LIBRARIES:=-lefence
209     endif
210 endif
211
212 # Debugging info
213
214 ifeq ($(strip $(CONFIG_DEBUG)),y)
215     CFLAGS +=-g
216 else
217     CFLAGS +=-DNDEBUG
218     LDFLAGS += $(call check_ld,--sort-common,)
219 endif
220
221 ifneq ($(strip $(CONFIG_DEBUG_PESSIMIZE)),y)
222 else
223     CFLAGS += $(OPTIMIZATION)
224 endif
225
226 # warn a bit more verbosely for non-release versions
227 ifneq ($(EXTRAVERSION),)
228     CHECKED_CFLAGS+=$(call check_gcc,-Wstrict-prototypes,)
229     CHECKED_CFLAGS+=$(call check_gcc,-Wmissing-prototypes,)
230     CHECKED_CFLAGS+=$(call check_gcc,-Wmissing-declarations,)
231     CHECKED_CFLAGS+=$(call check_gcc,-Wunused,)
232     CHECKED_CFLAGS+=$(call check_gcc,-Winit-self,)
233     CHECKED_CFLAGS+=$(call check_gcc,-Wshadow,)
234     CHECKED_CFLAGS+=$(call check_gcc,-Wcast-align,)
235 endif
236 STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
237 ifeq ($(strip $(CONFIG_STATIC)),y)
238     PROG_CFLAGS += $(call check_gcc,-static,)
239 endif
240 CFLAGS_SHARED := $(call check_gcc,-shared,)
241 LIB_CFLAGS+=$(CFLAGS_SHARED)
242
243 ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
244     CFLAGS_PIC:= $(call check_gcc,-fPIC,)
245     LIB_CFLAGS+=$(CFLAGS_PIC)
246 endif
247
248
249 ifeq ($(strip $(CONFIG_SELINUX)),y)
250     LIBRARIES += -lselinux
251 endif
252
253 ifeq ($(strip $(PREFIX)),)
254     PREFIX:=`pwd`/_install
255 endif
256
257 # Additional complications due to support for pristine source dir.
258 # Include files in the build directory should take precedence over
259 # the copy in top_srcdir, both during the compilation phase and the
260 # shell script that finds the list of object files.
261 # Work in progress by <ldoolitt@recycle.lbl.gov>.
262
263
264 OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
265 CFLAGS    += $(CHECKED_CFLAGS) $(CROSS_CFLAGS)
266 ifdef BB_INIT_SCRIPT
267     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
268 endif
269
270 # Put user-supplied flags at the end, where they
271 # have a chance of winning.
272 CFLAGS += $(CFLAGS_EXTRA)
273
274 #------------------------------------------------------------
275 # Installation options
276 ifeq ($(strip $(CONFIG_INSTALL_APPLET_HARDLINKS)),y)
277 INSTALL_OPTS=--hardlinks
278 endif
279 ifeq ($(strip $(CONFIG_INSTALL_APPLET_SYMLINKS)),y)
280 INSTALL_OPTS=--symlinks
281 endif
282 ifeq ($(strip $(CONFIG_INSTALL_APPLET_DONT)),y)
283 INSTALL_OPTS=
284 endif
285
286 #------------------------------------------------------------
287 # Make the output nice and tight
288 MAKEFLAGS += --no-print-directory
289 export MAKE_IS_SILENT=n
290 ifneq ($(findstring s,$(MAKEFLAGS)),)
291 export MAKE_IS_SILENT=y
292 SECHO := @-false
293 DISP  := sil
294 Q     := @
295 else
296 ifneq ($(V)$(VERBOSE),)
297 SECHO := @-false
298 DISP  := ver
299 Q     := 
300 else
301 SECHO := @echo
302 DISP  := pur
303 Q     := @
304 endif
305 endif
306
307 show_objs = $(subst $(top_builddir)/,,$(subst ../,,$@))
308 pur_disp_compile.c = echo "  "CC $(show_objs)
309 pur_disp_compile.h = echo "  "HOSTCC $(show_objs)
310 pur_disp_strip     = echo "  "STRIP $(show_objs)
311 pur_disp_link      = echo "  "LINK $(show_objs)
312 pur_disp_link.h    = echo "  "HOSTLINK $(show_objs)
313 pur_disp_ar        = echo "  "AR $(ARFLAGS) $(show_objs)
314 pur_disp_elf2flt   = echo "  "ELF2FLT $(ELF2FLTFLAGS) $(show_objs)
315 sil_disp_compile.c = true
316 sil_disp_compile.h = true
317 sil_disp_strip     = true
318 sil_disp_link      = true
319 sil_disp_link.h    = true
320 sil_disp_ar        = true
321 sil_disp_elf2flt   = true
322 ver_disp_compile.c = echo $(cmd_compile.c)
323 ver_disp_compile.h = echo $(cmd_compile.h)
324 ver_disp_strip     = echo $(cmd_strip)
325 ver_disp_link      = echo $(cmd_link)
326 ver_disp_link.h    = echo $(cmd_link.h)
327 ver_disp_ar        = echo $(cmd_ar)
328 ver_disp_elf2flt   = echo $(cmd_elf2flt)
329 disp_compile.c     = $($(DISP)_disp_compile.c)
330 disp_compile.h     = $($(DISP)_disp_compile.h)
331 disp_strip         = $($(DISP)_disp_strip)
332 disp_link          = $($(DISP)_disp_link)
333 disp_link.h        = $($(DISP)_disp_link.h)
334 disp_ar            = $($(DISP)_disp_ar)
335 disp_gen           = $(SECHO) "  "GEN $@ ; true
336 disp_doc           = $(SECHO) "  "DOC $(subst docs/,,$@) ; true
337 disp_elf2flt       = $($(DISP)_disp_elf2flt)
338 cmd_compile.c      = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
339 cmd_compile.h      = $(HOSTCC) $(HOSTCFLAGS) $(INCS) -c -o $@ $<
340 cmd_strip          = $(STRIPCMD) $@
341 cmd_link           = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS)
342 cmd_link.h         = $(HOSTCC) $(HOSTCFLAGS) $(INCS) $< -o $@
343 cmd_ar             = $(AR) $(ARFLAGS) $@ $^
344 cmd_elf2flt        = $(ELF2FLT) $(ELF2FLTFLAGS) $< -o $@
345 compile.c          = @$(disp_compile.c) ; $(cmd_compile.c)
346 compile.h          = @$(disp_compile.h) ; $(cmd_compile.h)
347 do_strip           = @$(disp_strip)     ; $(cmd_strip)
348 do_link            = @$(disp_link)      ; $(cmd_link)
349 do_link.h          = @$(disp_link.h)    ; $(cmd_link.h)
350 do_ar              = @$(disp_ar)        ; $(cmd_ar)
351 do_elf2flt         = @$(disp_elf2flt)   ; $(cmd_elf2flt)
352
353 .PHONY: dummy