36cda55afa1c9d196aa783a5a5adfa441ab81d6b
[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 CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir)
78 CFLAGS+=$(CHECKED_CFLAGS)
79 ARFLAGS=cru
80
81 # Warnings
82
83 CFLAGS+=-Wall -Wstrict-prototypes -Wshadow
84
85 # gcc centric. Perhaps fiddle with findstring gcc,$(CC) for the rest
86 # get the CC MAJOR/MINOR version
87 CC_MAJOR:=$(shell printf "%02d" $(shell echo __GNUC__ | $(CC) -E -xc - | tail -n 1))
88 CC_MINOR:=$(shell printf "%02d" $(shell echo __GNUC_MINOR__ | $(CC) -E -xc - | tail -n 1))
89
90 #--------------------------------------------------------
91 export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
92 ifeq ($(strip $(TARGET_ARCH)),)
93 TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
94                 -e 's/i.86/i386/' \
95                 -e 's/sparc.*/sparc/' \
96                 -e 's/arm.*/arm/g' \
97                 -e 's/m68k.*/m68k/' \
98                 -e 's/ppc/powerpc/g' \
99                 -e 's/v850.*/v850/g' \
100                 -e 's/sh[234]/sh/' \
101                 -e 's/mips-.*/mips/' \
102                 -e 's/mipsel-.*/mipsel/' \
103                 -e 's/cris.*/cris/' \
104                 )
105 endif
106
107 # A nifty macro to make testing gcc features easier, but note that everything
108 # that uses this _must_ use := or it will be re-evaluated for every file.
109 ifeq ($(strip $(V)),2)
110 VERBOSE_CHECK_GCC=echo check_gcc $(1) >> /dev/stderr;
111 endif
112 check_gcc=$(shell \
113         $(VERBOSE_CHECK_GCC)\
114         if [ "$(1)" != "" ]; then \
115                 if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
116                 then echo "$(1)"; else echo "$(2)"; fi \
117         fi)
118
119 # A not very robust macro to check for available ld flags
120 check_ld=$(shell \
121         if [ "x$(1)" != "x" ]; then \
122                 $(LD) --help | grep -q "\$(1)" && echo "-Wl,$(1)" ; \
123         fi)
124
125 # Pin CHECKED_CFLAGS with := so it's only evaluated once.
126 CHECKED_CFLAGS:=$(call check_gcc,-funsigned-char,)
127 CHECKED_CFLAGS+=$(call check_gcc,-mmax-stack-frame=256,)
128
129 # Preemptively pin this too.
130 PROG_CFLAGS:=
131
132
133 #--------------------------------------------------------
134 # Arch specific compiler optimization stuff should go here.
135 # Unless you want to override the defaults, do not set anything
136 # for OPTIMIZATION...
137
138 # use '-Os' optimization if available, else use -O2
139 OPTIMIZATION:=$(call check_gcc,-Os,-O2)
140
141 ifeq ($(CONFIG_BUILD_AT_ONCE),y)
142 # gcc 2.95 exits with 0 for "unrecognized option"
143 ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0)
144         CFLAGS_COMBINE:=$(call check_gcc,--combine,)
145 endif
146 OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
147 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25795
148 #PROG_CFLAGS+=$(call check_gcc,-fwhole-program,)
149 endif # CONFIG_BUILD_AT_ONCE
150
151 LIB_LDFLAGS:=$(call check_ld,--enable-new-dtags,)
152 #LIB_LDFLAGS+=$(call check_ld,--reduce-memory-overheads,)
153 #LIB_LDFLAGS+=$(call check_ld,--as-needed,)
154 #LIB_LDFLAGS+=$(call check_ld,--warn-shared-textrel,)
155
156
157 # Some nice architecture specific optimizations
158 ifeq ($(strip $(TARGET_ARCH)),arm)
159         OPTIMIZATION+=-fstrict-aliasing
160 endif
161 ifeq ($(strip $(TARGET_ARCH)),i386)
162         OPTIMIZATION+=$(call check_gcc,-march=i386,)
163 # gcc-4.0 and older seem to benefit from these
164 #ifneq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
165         OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
166         OPTIMIZATION+=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-loops=1,\
167                 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
168 #endif # gcc-4.0 and older
169
170 # gcc-4.1 and beyond seem to benefit from these
171 ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
172         # turn off flags which hurt -Os
173         OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,)
174         OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,)
175         OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,)
176
177         OPTIMIZATION+=$(call check_gcc,-fno-branch-count-reg,)
178 endif # gcc-4.1 and beyond
179 endif
180 OPTIMIZATIONS:=$(OPTIMIZATION) $(call check_gcc,-fomit-frame-pointer,)
181
182 #
183 #--------------------------------------------------------
184 # If you're going to do a lot of builds with a non-vanilla configuration,
185 # it makes sense to adjust parameters above, so you can type "make"
186 # by itself, instead of following it by the same half-dozen overrides
187 # every time.  The stuff below, on the other hand, is probably less
188 # prone to casual user adjustment.
189 #
190
191 ifeq ($(strip $(CONFIG_LFS)),y)
192     # For large file summit support
193     CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
194 endif
195 ifeq ($(strip $(CONFIG_DMALLOC)),y)
196     # For testing mem leaks with dmalloc
197     CFLAGS+=-DDMALLOC
198     LIBRARIES:=-ldmalloc
199 else
200     ifeq ($(strip $(CONFIG_EFENCE)),y)
201         LIBRARIES:=-lefence
202     endif
203 endif
204 ifeq ($(strip $(CONFIG_DEBUG)),y)
205     CFLAGS  +=-g -D_GNU_SOURCE
206     LDFLAGS += $(call check_ld,--warn-common,)
207 else
208     CFLAGS+=$(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG
209     LDFLAGS += $(call check_ld,--warn-common,)
210     LDFLAGS += $(call check_ld,--sort-common,)
211 endif
212 # warn a bit more verbosely for non-release versions
213 ifneq ($(EXTRAVERSION),)
214     CHECKED_CFLAGS+=$(call check_gcc,-Wstrict-prototypes,)
215     CHECKED_CFLAGS+=$(call check_gcc,-Wmissing-prototypes,)
216     CHECKED_CFLAGS+=$(call check_gcc,-Wmissing-declarations,)
217 endif
218 STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
219 ifeq ($(strip $(CONFIG_STATIC)),y)
220     PROG_CFLAGS += $(call check_gcc,-static,)
221 endif
222 CFLAGS_SHARED := $(call check_gcc,-shared,)
223 LIB_CFLAGS+=$(CFLAGS_SHARED)
224
225 ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
226     CFLAGS_PIC:= $(call check_gcc,-fPIC,)
227     LIB_CFLAGS+=$(CFLAGS_PIC)
228 endif
229
230
231 ifeq ($(strip $(CONFIG_SELINUX)),y)
232     LIBRARIES += -lselinux
233 endif
234
235 ifeq ($(strip $(PREFIX)),)
236     PREFIX:=`pwd`/_install
237 endif
238
239 # Additional complications due to support for pristine source dir.
240 # Include files in the build directory should take precedence over
241 # the copy in top_srcdir, both during the compilation phase and the
242 # shell script that finds the list of object files.
243 # Work in progress by <ldoolitt@recycle.lbl.gov>.
244
245
246 OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
247 CFLAGS    += $(CHECKED_CFLAGS) $(CROSS_CFLAGS)
248 ifdef BB_INIT_SCRIPT
249     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
250 endif
251
252 # Put user-supplied flags at the end, where they
253 # have a chance of winning.
254 CFLAGS += $(CFLAGS_EXTRA)
255
256 #------------------------------------------------------------
257 # Installation options
258 ifeq ($(strip $(CONFIG_INSTALL_APPLET_HARDLINKS)),y)
259 INSTALL_OPTS=--hardlinks
260 endif
261 ifeq ($(strip $(CONFIG_INSTALL_APPLET_SYMLINKS)),y)
262 INSTALL_OPTS=--symlinks
263 endif
264 ifeq ($(strip $(CONFIG_INSTALL_APPLET_DONT)),y)
265 INSTALL_OPTS=
266 endif
267
268 #------------------------------------------------------------
269 # Make the output nice and tight
270 MAKEFLAGS += --no-print-directory
271 export MAKE_IS_SILENT=n
272 ifneq ($(findstring s,$(MAKEFLAGS)),)
273 export MAKE_IS_SILENT=y
274 SECHO := @-false
275 DISP  := sil
276 Q     := @
277 else
278 ifneq ($(V)$(VERBOSE),)
279 SECHO := @-false
280 DISP  := ver
281 Q     := 
282 else
283 SECHO := @echo
284 DISP  := pur
285 Q     := @
286 endif
287 endif
288
289 show_objs = $(subst $(top_builddir)/,,$(subst ../,,$@))
290 pur_disp_compile.c = echo "  "CC $(show_objs)
291 pur_disp_compile.h = echo "  "HOSTCC $(show_objs)
292 pur_disp_strip     = echo "  "STRIP $(show_objs)
293 pur_disp_link      = echo "  "LINK $(show_objs)
294 pur_disp_ar        = echo "  "AR $(ARFLAGS) $(show_objs)
295 pur_disp_elf2flt   = echo "  "ELF2FLT $(ELF2FLTFLAGS) $(show_objs)
296 sil_disp_compile.c = true
297 sil_disp_compile.h = true
298 sil_disp_strip     = true
299 sil_disp_link      = true
300 sil_disp_ar        = true
301 sil_disp_elf2flt   = true
302 ver_disp_compile.c = echo $(cmd_compile.c)
303 ver_disp_compile.h = echo $(cmd_compile.h)
304 ver_disp_strip     = echo $(cmd_strip)
305 ver_disp_link      = echo $(cmd_link)
306 ver_disp_ar        = echo $(cmd_ar)
307 ver_disp_elf2flt   = echo $(cmd_elf2flt)
308 disp_compile.c     = $($(DISP)_disp_compile.c)
309 disp_compile.h     = $($(DISP)_disp_compile.h)
310 disp_strip         = $($(DISP)_disp_strip)
311 disp_link          = $($(DISP)_disp_link)
312 disp_ar            = $($(DISP)_disp_ar)
313 disp_gen           = $(SECHO) "  "GEN $@ ; true
314 disp_doc           = $(SECHO) "  "DOC $(subst docs/,,$@) ; true
315 disp_elf2flt       = $($(DISP)_disp_elf2flt)
316 cmd_compile.c      = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
317 cmd_compile.h      = $(HOSTCC) $(HOSTCFLAGS) -c -o $@ $<
318 cmd_strip          = $(STRIPCMD) $@
319 cmd_link           = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS)
320 cmd_ar             = $(AR) $(ARFLAGS) $@ $^
321 cmd_elf2flt        = $(ELF2FLT) $(ELF2FLTFLAGS) $< -o $@
322 compile.c          = @$(disp_compile.c) ; $(cmd_compile.c)
323 compile.h          = @$(disp_compile.h) ; $(cmd_compile.h)
324 do_strip           = @$(disp_strip)     ; $(cmd_strip)
325 do_link            = @$(disp_link)      ; $(cmd_link)
326 do_ar              = @$(disp_ar)        ; $(cmd_ar)
327 do_elf2flt         = @$(disp_elf2flt)   ; $(cmd_elf2flt)
328
329 .PHONY: dummy