- Pull r15593:
[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    :=
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_COMPILE=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_COMPILE
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 CC             = $(CROSS_COMPILE)gcc
35 AR             = $(CROSS_COMPILE)ar
36 AS             = $(CROSS_COMPILE)as
37 LD             = $(CROSS_COMPILE)ld
38 NM             = $(CROSS_COMPILE)nm
39 STRIP          = $(CROSS_COMPILE)strip
40 ELF2FLT        = $(CROSS_COMPILE)elf2flt
41 CPP            = $(CC) -E
42 SED           ?= sed
43 BZIP2         ?= bzip2
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 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
51 LC_ALL:= C
52
53 # This must bind late because srcdir is reset for every source subdirectory.
54 INCS:=-I$(top_builddir)/include -I$(top_srcdir)/include
55 CFLAGS=$(INCS) -I$(srcdir) -D_GNU_SOURCE
56 CFLAGS+=$(CHECKED_CFLAGS)
57 ARFLAGS=cru
58
59 # gcc centric. Perhaps fiddle with findstring gcc,$(CC) for the rest
60 # get the CC MAJOR/MINOR version
61 CC_MAJOR:=$(shell printf "%02d" $(shell echo __GNUC__ | $(CC) -E -xc - | tail -n 1))
62 CC_MINOR:=$(shell printf "%02d" $(shell echo __GNUC_MINOR__ | $(CC) -E -xc - | tail -n 1))
63
64 #--------------------------------------------------------
65 export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS_COMPILE CC AR AS LD NM STRIP CPP
66 ifeq ($(strip $(TARGET_ARCH)),)
67 TARGET_ARCH:=$(shell $(CC) -dumpmachine | $(SED) -e s'/-.*//' \
68                 -e 's/i.86/i386/' \
69                 -e 's/sparc.*/sparc/' \
70                 -e 's/arm.*/arm/g' \
71                 -e 's/m68k.*/m68k/' \
72                 -e 's/ppc/powerpc/g' \
73                 -e 's/v850.*/v850/g' \
74                 -e 's/sh[234]/sh/' \
75                 -e 's/mips-.*/mips/' \
76                 -e 's/mipsel-.*/mipsel/' \
77                 -e 's/cris.*/cris/' \
78                 )
79 endif
80
81 # A nifty macro to make testing gcc features easier, but note that everything
82 # that uses this _must_ use := or it will be re-evaluated everytime it is
83 # referenced.
84 ifeq ($(strip $(BUILD_VERBOSE)),2)
85 VERBOSE_CHECK_CC=echo CC=\"$(1)\" check_cc $(2) >&2;
86 endif
87 check_cc=$(shell \
88         $(VERBOSE_CHECK_CC) \
89         if [ "x$(1)" != "x" ] && [ "x$(2)" != "x" ]; then \
90                 echo "int i;" > ./conftest.c; \
91                 if $(1) $(2) -c -o conftest.o conftest.c > /dev/null 2>&1; \
92                 then echo "$(2)"; else echo "$(3)"; fi ; \
93                 rm -f conftest.c conftest.o; \
94         fi)
95
96 ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),)
97 check_cc:=
98 endif
99
100 # A not very robust macro to check for available ld flags
101 ifeq ($(strip $(BUILD_VERBOSE)),2)
102 VERBOSE_CHECK_LD=echo LD=\"$(1)\" check_ld $(2) >&2;
103 endif
104 check_ld=$(shell \
105         $(VERBOSE_CHECK_LD) \
106         if [ "x$(1)" != "x" ] && [ "x$(2)" != "x" ]; then \
107                 $(1) -o /dev/null -b binary /dev/null > /dev/null 2>&1 && \
108                 echo "-Wl,$(2)" ; \
109         fi)
110
111 ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),)
112 check_ld:=
113 endif
114
115 # A not very robust macro to check for available strip flags
116 ifeq ($(strip $(BUILD_VERBOSE)),2)
117 VERBOSE_CHECK_STRIP=echo STRIPCMD=\"$(1)\" check_strip $(2) >&2;
118 endif
119 check_strip=$(shell \
120         $(VERBOSE_CHECK_STRIP) \
121         if [ "x$(1)" != "x" ] && [ "x$(2)" != "x" ]; then \
122                 echo "int i;" > ./conftest.c ; \
123                 $(CC) -c -o conftest.o conftest.c > /dev/null 2>&1 ; \
124                 $(1) $(2) conftest.o > /dev/null 2>&1 && \
125                 echo "$(1) $(2)" || echo "$(3)"; \
126                 rm -f conftest.c conftest.o > /dev/null 2>&1 ; \
127         fi)
128
129 ifneq ($(filter $(nocheck_targets),$(MAKECMDGOALS)),)
130 check_strip:=
131 endif
132
133
134 # Select the compiler needed to build binaries for your development system
135 HOSTCC     = gcc
136 HOSTCFLAGS:=$(call check_cc,$(HOSTCC),-Wall,)
137 HOSTCFLAGS+=$(call check_cc,$(HOSTCC),-Wstrict-prototypes,)
138 HOSTCFLAGS+=$(call check_cc,$(HOSTCC),-O2,)
139 HOSTCFLAGS+=$(call check_cc,$(HOSTCC),-fomit-frame-pointer,)
140
141 LD_WHOLE_ARCHIVE:=$(shell echo "int i;" > conftest.c ; \
142         $(CC) -c -o conftest.o conftest.c ; \
143         echo "int main(void){return 0;}" > conftest_main.c ; \
144         $(CC) -c -o conftest_main.o conftest_main.c ; \
145         $(AR) $(ARFLAGS) conftest.a conftest.o ; \
146         $(CC) -Wl,--whole-archive conftest.a -Wl,--no-whole-archive \
147          conftest_main.o -o conftest > /dev/null 2>&1 \
148          && echo "-Wl,--whole-archive" ; \
149         rm conftest_main.o conftest_main.c conftest.o conftest.c \
150          conftest.a conftest > /dev/null 2>&1 ; )
151 ifneq ($(findstring whole-archive,$(LD_WHOLE_ARCHIVE)),)
152 LD_NO_WHOLE_ARCHIVE:= -Wl,--no-whole-archive
153 endif
154
155 LD_START_GROUP:=$(shell echo "int bar(void){return 0;}" > conftest.c ; \
156         $(CC) -c -o conftest.o conftest.c ; \
157         echo "int main(void){return bar();}" > conftest_main.c ; \
158         $(CC) -c -o conftest_main.o conftest_main.c ; \
159         $(AR) $(ARFLAGS) conftest.a conftest.o ; \
160         $(CC) -Wl,--start-group conftest.a conftest_main.o -Wl,--end-group \
161          -o conftest > /dev/null 2>&1 && echo "-Wl,--start-group" ; \
162         rm conftest_main.o conftest_main.c conftest.o conftest.c \
163          conftest.a conftest > /dev/null 2>&1 ; )
164 ifneq ($(findstring start-group,$(LD_START_GROUP)),)
165 LD_END_GROUP:= -Wl,--end-group
166 endif
167
168 CHECKED_LDFLAGS := $(call check_ld,$(LD),--warn-common,)
169
170 # Pin CHECKED_CFLAGS with := so it's only evaluated once.
171 CHECKED_CFLAGS:=$(call check_cc,$(CC),-Wall,)
172 CHECKED_CFLAGS+=$(call check_cc,$(CC),-Wstrict-prototypes,)
173 CHECKED_CFLAGS+=$(call check_cc,$(CC),-Wshadow,)
174 CHECKED_CFLAGS+=$(call check_cc,$(CC),-funsigned-char,)
175 CHECKED_CFLAGS+=$(call check_cc,$(CC),-mmax-stack-frame=256,)
176 CHECKED_CFLAGS+=$(call check_cc,$(CC),-fno-builtin-strlen)
177
178 # Preemptively pin this too.
179 PROG_CFLAGS:=
180
181
182 #--------------------------------------------------------
183 # Arch specific compiler optimization stuff should go here.
184 # Unless you want to override the defaults, do not set anything
185 # for OPTIMIZATION...
186
187 # use '-Os' optimization if available, else use -O2
188 OPTIMIZATION:=$(call check_cc,$(CC),-Os,-O2)
189
190 ifeq ($(CONFIG_BUILD_AT_ONCE),y)
191 # gcc 2.95 exits with 0 for "unrecognized option"
192 ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0)
193         CFLAGS_COMBINE:=$(call check_cc,$(CC),--combine,)
194 endif
195 OPTIMIZATION+=$(call check_cc,$(CC),-funit-at-a-time,)
196 OPTIMIZATION+=$(call check_cc,$(CC),-fgcse-after-reload,)
197 ifneq ($(CONFIG_BUILD_LIBBUSYBOX),y)
198 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25795
199 # This prevents us from using -fwhole-program when we build the lib
200 PROG_CFLAGS+=$(call check_cc,$(CC),-fwhole-program,)
201 endif # CONFIG_BUILD_LIBBUSYBOX
202 endif # CONFIG_BUILD_AT_ONCE
203
204 LIB_LDFLAGS:=$(call check_ld,$(LD),--enable-new-dtags,)
205 #LIB_LDFLAGS+=$(call check_ld,$(LD),--reduce-memory-overheads,)
206 #LIB_LDFLAGS+=$(call check_ld,$(LD),--as-needed,)
207 #LIB_LDFLAGS+=$(call check_ld,$(LD),--warn-shared-textrel,)
208
209
210 # Some nice architecture specific optimizations
211 ifeq ($(strip $(TARGET_ARCH)),arm)
212         OPTIMIZATION+=-fstrict-aliasing
213 endif
214 ifeq ($(strip $(TARGET_ARCH)),i386)
215         OPTIMIZATION+=$(call check_cc,$(CC),-march=i386,)
216 # gcc-4.0 and older seem to benefit from these
217 #ifneq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
218         OPTIMIZATION+=$(call check_cc,$(CC),-mpreferred-stack-boundary=2,)
219         OPTIMIZATION+=$(call check_cc,$(CC),-falign-functions=1 -falign-jumps=1 -falign-loops=1,\
220                 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
221 #endif # gcc-4.0 and older
222
223 # gcc-4.1 and beyond seem to benefit from these
224 ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
225         # turn off flags which hurt -Os
226         OPTIMIZATION+=$(call check_cc,$(CC),-fno-tree-loop-optimize,)
227         OPTIMIZATION+=$(call check_cc,$(CC),-fno-tree-dominator-opts,)
228         OPTIMIZATION+=$(call check_cc,$(CC),-fno-strength-reduce,)
229
230         OPTIMIZATION+=$(call check_cc,$(CC),-fno-branch-count-reg,)
231 endif # gcc-4.1 and beyond
232 endif
233 OPTIMIZATION+=$(call check_cc,$(CC),-fomit-frame-pointer,)
234 OPTIMIZATION+=$(call check_cc,$(CC),-ffunction-sections -fdata-sections,)
235
236 #
237 #--------------------------------------------------------
238 # If you're going to do a lot of builds with a non-vanilla configuration,
239 # it makes sense to adjust parameters above, so you can type "make"
240 # by itself, instead of following it by the same half-dozen overrides
241 # every time.  The stuff below, on the other hand, is probably less
242 # prone to casual user adjustment.
243 #
244
245 ifeq ($(strip $(CONFIG_LFS)),y)
246     # For large file summit support
247     CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
248 endif
249 ifeq ($(strip $(CONFIG_DMALLOC)),y)
250     # For testing mem leaks with dmalloc
251     CFLAGS+=-DDMALLOC
252     LIBRARIES:=-ldmalloc
253 else
254     ifeq ($(strip $(CONFIG_EFENCE)),y)
255         LIBRARIES:=-lefence
256     endif
257 endif
258
259 # Debugging info
260
261 ifeq ($(strip $(CONFIG_DEBUG)),y)
262     CFLAGS +=-g
263 else
264     CFLAGS +=-DNDEBUG
265     CHECKED_LDFLAGS += $(call check_ld,$(LD),--sort-common,)
266     CHECKED_LDFLAGS += $(call check_ld,--gc-sections,)
267 endif
268
269 ifneq ($(strip $(CONFIG_DEBUG_PESSIMIZE)),y)
270     CFLAGS += $(OPTIMIZATION)
271 endif
272
273 # warn a bit more verbosely for non-release versions
274 ifneq ($(EXTRAVERSION),)
275     CHECKED_CFLAGS+=$(call check_cc,$(CC),-Wstrict-prototypes,)
276     CHECKED_CFLAGS+=$(call check_cc,$(CC),-Wmissing-prototypes,)
277     CHECKED_CFLAGS+=$(call check_cc,$(CC),-Wmissing-declarations,)
278     CHECKED_CFLAGS+=$(call check_cc,$(CC),-Wunused,)
279     CHECKED_CFLAGS+=$(call check_cc,$(CC),-Winit-self,)
280     CHECKED_CFLAGS+=$(call check_cc,$(CC),-Wshadow,)
281     CHECKED_CFLAGS+=$(call check_cc,$(CC),-Wcast-align,)
282 endif
283 STRIPCMD:=$(call check_strip,$(STRIP),-s --remove-section=.note --remove-section=.comment,$(STRIP))
284 ifeq ($(strip $(CONFIG_STATIC)),y)
285     PROG_CFLAGS += $(call check_cc,$(CC),-static,)
286 endif
287 CFLAGS_SHARED := $(call check_cc,$(CC),-shared,)
288 LIB_CFLAGS+=$(CFLAGS_SHARED)
289
290 ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
291     CFLAGS_PIC:= $(call check_cc,$(CC),-fPIC,)
292     LIB_CFLAGS+=$(CFLAGS_PIC)
293 endif
294
295 ifeq ($(strip $(CONFIG_SELINUX)),y)
296     LIBRARIES += -lselinux
297 endif
298
299 ifeq ($(strip $(PREFIX)),)
300     PREFIX:=`pwd`/_install
301 endif
302
303 ifneq ($(strip $(CONFIG_GETOPT_LONG)),y)
304     CFLAGS += -D__need_getopt
305 endif
306
307 # Additional complications due to support for pristine source dir.
308 # Include files in the build directory should take precedence over
309 # the copy in top_srcdir, both during the compilation phase and the
310 # shell script that finds the list of object files.
311 # Work in progress by <ldoolitt@recycle.lbl.gov>.
312
313
314 OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
315 CFLAGS  += $(CHECKED_CFLAGS) $(CROSS_CFLAGS)
316 LDFLAGS += $(CHECKED_LDFLAGS)
317
318 ifdef BB_INIT_SCRIPT
319     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
320 endif
321
322 # Put user-supplied flags at the end, where they
323 # have a chance of winning.
324 -include $(top_builddir)/.config.mak
325
326 #------------------------------------------------------------
327 # Installation options
328 ifeq ($(strip $(CONFIG_INSTALL_APPLET_HARDLINKS)),y)
329 INSTALL_OPTS=--hardlinks
330 endif
331 ifeq ($(strip $(CONFIG_INSTALL_APPLET_SYMLINKS)),y)
332 INSTALL_OPTS=--symlinks
333 endif
334 ifeq ($(strip $(CONFIG_INSTALL_APPLET_DONT)),y)
335 INSTALL_OPTS=
336 endif
337
338 #------------------------------------------------------------
339 # Make the output nice and tight
340 MAKEFLAGS += --no-print-directory
341 export MAKE_IS_SILENT=n
342 ifneq ($(findstring s,$(MAKEFLAGS)),)
343 export MAKE_IS_SILENT=y
344 SECHO := @-false
345 DISP  := sil
346 Q     := @
347 else
348 ifneq ($(BUILD_VERBOSE),)
349 SECHO := @-false
350 DISP  := ver
351 Q     := 
352 else
353 SECHO := @echo
354 DISP  := pur
355 Q     := @
356 endif
357 endif
358
359 show_objs = $(subst $(top_builddir)/,,$(subst ../,,$@))
360 pur_disp_compile.c = echo "  "CC $(show_objs)
361 pur_disp_compile.h = echo "  "HOSTCC $(show_objs)
362 pur_disp_strip     = echo "  "STRIP $(show_objs)
363 pur_disp_link      = echo "  "LINK $(show_objs)
364 pur_disp_link.h    = echo "  "HOSTLINK $(show_objs)
365 pur_disp_ar        = echo "  "AR $(ARFLAGS) $(show_objs)
366 pur_disp_elf2flt   = echo "  "ELF2FLT $(ELF2FLTFLAGS) $(show_objs)
367 sil_disp_compile.c = true
368 sil_disp_compile.h = true
369 sil_disp_strip     = true
370 sil_disp_link      = true
371 sil_disp_link.h    = true
372 sil_disp_ar        = true
373 sil_disp_elf2flt   = true
374 ver_disp_compile.c = echo $(cmd_compile.c)
375 ver_disp_compile.h = echo $(cmd_compile.h)
376 ver_disp_strip     = echo $(cmd_strip)
377 ver_disp_link      = echo $(cmd_link)
378 ver_disp_link.h    = echo $(cmd_link.h)
379 ver_disp_ar        = echo $(cmd_ar)
380 ver_disp_elf2flt   = echo $(cmd_elf2flt)
381 disp_compile.c     = $($(DISP)_disp_compile.c)
382 disp_compile.h     = $($(DISP)_disp_compile.h)
383 disp_strip         = $($(DISP)_disp_strip)
384 disp_link          = $($(DISP)_disp_link)
385 disp_link.h        = $($(DISP)_disp_link.h)
386 disp_ar            = $($(DISP)_disp_ar)
387 disp_gen           = $(SECHO) "  "GEN $@ ; true
388 disp_doc           = $(SECHO) "  "DOC $(subst docs/,,$@) ; true
389 disp_elf2flt       = $($(DISP)_disp_elf2flt)
390 cmd_compile.c      = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
391 cmd_compile.h      = $(HOSTCC) $(HOSTCFLAGS) $(INCS) -c -o $@ $<
392 cmd_strip          = $(STRIPCMD) $@
393 cmd_link           = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS) \
394                         $(PROG_CFLAGS) $(PROG_LDFLAGS) $(CFLAGS_COMBINE) \
395                         -o $@ $(LD_START_GROUP)  \
396                         $(APPLETS_DEFINE) $(APPLET_SRC) \
397                         $(BUSYBOX_DEFINE) $(BUSYBOX_SRC) $(libraries-y) \
398                         $(LDBUSYBOX) $(LIBRARIES) \
399                         $(LD_END_GROUP)
400 cmd_link.so        = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS) \
401                         $(LIB_CFLAGS) $(CFLAGS_COMBINE) $(LIB_LDFLAGS) \
402                         -o $(@) $(LD_START_GROUP) $(LD_WHOLE_ARCHIVE) \
403                         $(LIBRARY_DEFINE) $(^) \
404                         $(LD_NO_WHOLE_ARCHIVE) $(LD_END_GROUP)
405 cmd_link.h         = $(HOSTCC) $(HOSTCFLAGS) $(INCS) $< -o $@
406 cmd_ar             = $(AR) $(ARFLAGS) $@ $^
407 cmd_elf2flt        = $(ELF2FLT) $(ELF2FLTFLAGS) $< -o $@
408 compile.c          = @$(disp_compile.c) ; $(cmd_compile.c)
409 compile.h          = @$(disp_compile.h) ; $(cmd_compile.h)
410 do_strip           = @$(disp_strip)     ; $(cmd_strip)
411 do_link            = @$(disp_link)      ; $(cmd_link)
412 do_link.so         = @$(disp_link)      ; $(cmd_link.so)
413 do_link.h          = @$(disp_link.h)    ; $(cmd_link.h)
414 do_ar              = @$(disp_ar)        ; $(cmd_ar)
415 do_elf2flt         = @$(disp_elf2flt)   ; $(cmd_elf2flt)
416
417 uppercase = $(shell echo $1 | $(SED) -e "y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/")
418 %.a:
419         @if test -z "$($(call uppercase,$*)_DIR)" ; then \
420                 echo "Invalid target $@" ; \
421                 exit 1 ; \
422         fi
423         $(Q)$(MAKE) $($(call uppercase,$*)_DIR)$@
424
425 .PHONY: dummy