blob: 34c9be69e5b455df9a5751dc9af76447634ab947 [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Rules.make for busybox
Eric Andersen4bcdd722001-10-24 05:26:42 +00002#
Mike Frysinger5a5d0fa2005-11-29 02:53:52 +00003# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
Eric Andersen85208e22002-04-12 12:05:57 +00004#
Mike Frysinger5a5d0fa2005-11-29 02:53:52 +00005# Licensed under GPLv2, see the file LICENSE in this tarball for details.
Eric Andersen4bcdd722001-10-24 05:26:42 +00006#
7
Mike Frysinger004ad112005-11-29 02:52:25 +00008# Pull in the user's busybox configuration
9ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
10-include $(top_builddir)/.config
11endif
12
Eric Andersenc9f20d92002-12-05 08:41:41 +000013#--------------------------------------------------------
Eric Andersen85208e22002-04-12 12:05:57 +000014PROG := busybox
Bernhard Reutner-Fischer8c7a7e62005-10-13 10:40:18 +000015MAJOR_VERSION :=1
16MINOR_VERSION :=1
Bernhard Reutner-Fischerb565a122006-01-19 09:22:39 +000017SUBLEVEL_VERSION:=1
18EXTRAVERSION :=-pre0
Bernhard Reutner-Fischer8c7a7e62005-10-13 10:40:18 +000019VERSION :=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)$(EXTRAVERSION)
Eric Andersen85208e22002-04-12 12:05:57 +000020BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
Eric Andersen4bcdd722001-10-24 05:26:42 +000021
22
Eric Andersenc9f20d92002-12-05 08:41:41 +000023#--------------------------------------------------------
Eric Andersen85208e22002-04-12 12:05:57 +000024# 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:
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000027# make CROSS=powerpc-linux- top_srcdir="$HOME/busybox" PREFIX=/mnt/app
Eric Andersenc9f20d92002-12-05 08:41:41 +000028#--------------------------------------------------------
Eric Andersen4bcdd722001-10-24 05:26:42 +000029
Eric Andersenc9f20d92002-12-05 08:41:41 +000030# 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
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000033# your compiler is broken, you should not need to specify TARGET_ARCH
Eric Andersen5912acb2003-11-05 11:34:26 +000034CROSS =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
Eric Andersen5912acb2003-11-05 11:34:26 +000035CC = $(CROSS)gcc
36AR = $(CROSS)ar
37AS = $(CROSS)as
38LD = $(CROSS)ld
39NM = $(CROSS)nm
40STRIP = $(CROSS)strip
41CPP = $(CC) -E
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +000042SED ?= sed
Bernhard Reutner-Fischer8c7a7e62005-10-13 10:40:18 +000043
Eric Andersen85208e22002-04-12 12:05:57 +000044
Eric Andersenc9f20d92002-12-05 08:41:41 +000045# What OS are you compiling busybox for? This allows you to include
46# OS specific things, syscall overrides, etc.
Eric Andersen5912acb2003-11-05 11:34:26 +000047TARGET_OS=linux
Eric Andersen85208e22002-04-12 12:05:57 +000048
Eric Andersenc9f20d92002-12-05 08:41:41 +000049# Select the compiler needed to build binaries for your development system
Eric Andersen5912acb2003-11-05 11:34:26 +000050HOSTCC = gcc
Robert Griebl53f133a2002-12-16 21:55:39 +000051HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
Eric Andersenc9f20d92002-12-05 08:41:41 +000052
Eric Andersenc7bda1c2004-03-15 08:29:22 +000053# Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
Eric Andersen85d9d802003-01-14 09:12:39 +000054LC_ALL:= C
55
Eric Andersenc9f20d92002-12-05 08:41:41 +000056# If you want to add some simple compiler switches (like -march=i686),
57# especially from the command line, use this instead of CFLAGS directly.
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000058# For optimization overrides, it's better still to set OPTIMIZATION.
Eric Andersenc9f20d92002-12-05 08:41:41 +000059CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
Eric Andersenc7bda1c2004-03-15 08:29:22 +000060
Eric Andersen85208e22002-04-12 12:05:57 +000061# To compile vs some other alternative libc, you may need to use/adjust
62# the following lines to meet your needs...
63#
64# If you are using Red Hat 6.x with the compatible RPMs (for developing under
65# Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about
66# using the compatible RPMs (compat-*) at http://www.redhat.com !
67#LIBCDIR:=/usr/i386-glibc20-linux
68#
Eric Andersen0a14c9f2003-07-22 08:56:01 +000069# For other libraries, you are on your own. But these may (or may not) help...
Eric Andersen85208e22002-04-12 12:05:57 +000070#LDFLAGS+=-nostdlib
71#LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
Rob Landley4a070d12005-12-01 17:01:43 +000072#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) -funsigned-char
Eric Andersen85208e22002-04-12 12:05:57 +000073#GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
74
Robert Griebl53f133a2002-12-16 21:55:39 +000075WARNINGS=-Wall -Wstrict-prototypes -Wshadow
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000076CFLAGS+=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +000077
Bernhard Reutner-Fischer07a79e72006-03-09 09:03:37 +000078ARFLAGS=cru
Eric Andersen85208e22002-04-12 12:05:57 +000079
Bernhard Reutner-Fischere0b87782005-12-13 11:52:46 +000080
81# gcc centric. Perhaps fiddle with findstring gcc,$(CC) for the rest
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000082# get the CC MAJOR/MINOR version
Bernhard Reutner-Fischere0b87782005-12-13 11:52:46 +000083CC_MAJOR:=$(shell printf "%02d" $(shell echo __GNUC__ | $(CC) -E -xc - | tail -n 1))
84CC_MINOR:=$(shell printf "%02d" $(shell echo __GNUC_MINOR__ | $(CC) -E -xc - | tail -n 1))
85
Eric Andersenc9f20d92002-12-05 08:41:41 +000086#--------------------------------------------------------
Bernhard Reutner-Fischer1c943eb2005-09-26 16:01:43 +000087export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000088ifeq ($(strip $(TARGET_ARCH)),)
89TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
Eric Andersen5b0f9e42002-06-23 04:50:49 +000090 -e 's/i.86/i386/' \
91 -e 's/sparc.*/sparc/' \
92 -e 's/arm.*/arm/g' \
93 -e 's/m68k.*/m68k/' \
94 -e 's/ppc/powerpc/g' \
95 -e 's/v850.*/v850/g' \
96 -e 's/sh[234]/sh/' \
Eric Andersenc9f20d92002-12-05 08:41:41 +000097 -e 's/mips-.*/mips/' \
98 -e 's/mipsel-.*/mipsel/' \
99 -e 's/cris.*/cris/' \
100 )
Eric Andersen5912acb2003-11-05 11:34:26 +0000101endif
Eric Andersenc9f20d92002-12-05 08:41:41 +0000102
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000103# A nifty macro to make testing gcc features easier
104check_gcc=$(shell \
105 if [ "$(1)" != "" ]; then \
106 if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
107 then echo "$(1)"; else echo "$(2)"; fi \
108 fi)
109
110# A not very robust macro to check for available ld flags
111check_ld=$(shell \
112 if [ "x$(1)" != "x" ]; then \
113 $(LD) --help | grep -q "\$(1)" && echo "-Wl,$(1)" ; \
114 fi)
115
116CFLAGS+=$(call check_gcc,-funsigned-char,)
117
118CFLAGS+=$(call check_gcc,-mmax-stack-frame=256,)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000119
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000120#--------------------------------------------------------
121# Arch specific compiler optimization stuff should go here.
122# Unless you want to override the defaults, do not set anything
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000123# for OPTIMIZATION...
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000124
125# use '-Os' optimization if available, else use -O2
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000126OPTIMIZATION:=$(call check_gcc,-Os,-O2)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000127
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000128ifeq ($(CONFIG_BUILD_AT_ONCE),y)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000129# gcc 2.95 exits with 0 for "unrecognized option"
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000130ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0)
131 CFLAGS_COMBINE:=$(call check_gcc,--combine,)
132endif
133OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
134PROG_CFLAGS+=$(call check_gcc,-fwhole-program,)
135endif # CONFIG_BUILD_AT_ONCE
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000136
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000137LIB_LDFLAGS:=$(call check_ld,--enable-new-dtags,)
138#LIB_LDFLAGS+=$(call check_ld,--reduce-memory-overheads,)
139#LIB_LDFLAGS+=$(call check_ld,--as-needed,)
140#LIB_LDFLAGS+=$(call check_ld,--warn-shared-textrel,)
Bernhard Reutner-Fischer08a1b502006-01-27 15:45:56 +0000141
142
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000143# Some nice architecture specific optimizations
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000144ifeq ($(strip $(TARGET_ARCH)),arm)
145 OPTIMIZATION+=-fstrict-aliasing
146endif
147ifeq ($(strip $(TARGET_ARCH)),i386)
148 OPTIMIZATION+=$(call check_gcc,-march=i386,)
Bernhard Reutner-Fischerd9969ea2006-03-03 20:31:33 +0000149# gcc-4.0 and older seem to benefit from these
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000150#ifneq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
151 OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
152 OPTIMIZATION+=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-loops=1,\
153 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
154#endif # gcc-4.0 and older
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000155
156# gcc-4.1 and beyond seem to benefit from these
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000157ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
158 # turn off flags which hurt -Os
159 OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,)
160 OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,)
161 OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000162
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000163 OPTIMIZATION+=$(call check_gcc,-fno-branch-count-reg,)
164endif # gcc-4.1 and beyond
165endif
166OPTIMIZATIONS:=$(OPTIMIZATION) $(call check_gcc,-fomit-frame-pointer,)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000167
Eric Andersen85208e22002-04-12 12:05:57 +0000168#
169#--------------------------------------------------------
170# If you're going to do a lot of builds with a non-vanilla configuration,
171# it makes sense to adjust parameters above, so you can type "make"
172# by itself, instead of following it by the same half-dozen overrides
173# every time. The stuff below, on the other hand, is probably less
174# prone to casual user adjustment.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000175#
Eric Andersen85208e22002-04-12 12:05:57 +0000176
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000177ifeq ($(strip $(CONFIG_LFS)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000178 # For large file summit support
Eric Andersenecfa2902002-09-22 12:09:44 +0000179 CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
Eric Andersen85208e22002-04-12 12:05:57 +0000180endif
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000181ifeq ($(strip $(CONFIG_DMALLOC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000182 # For testing mem leaks with dmalloc
183 CFLAGS+=-DDMALLOC
184 LIBRARIES:=-ldmalloc
Eric Andersen85208e22002-04-12 12:05:57 +0000185else
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000186 ifeq ($(strip $(CONFIG_EFENCE)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000187 LIBRARIES:=-lefence
Eric Andersen85208e22002-04-12 12:05:57 +0000188 endif
189endif
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000190ifeq ($(strip $(CONFIG_DEBUG)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000191 CFLAGS +=$(WARNINGS) -g -D_GNU_SOURCE
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000192 LDFLAGS += $(call check_ld,--warn-common,)
Eric Andersen85208e22002-04-12 12:05:57 +0000193else
Eric Andersenbae7c1a2003-03-07 17:27:51 +0000194 CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000195 LDFLAGS += $(call check_ld,--warn-common,)
196 LDFLAGS += $(call check_ld,--sort-common,)
Mike Frysingerc70240c2006-03-10 23:20:48 +0000197endif
198ifeq ($(CONFIG_STRIP_BINARIES),y)
Mike Frysinger1c1655a2005-07-31 22:11:33 +0000199 STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
Mike Frysingerc70240c2006-03-10 23:20:48 +0000200else
201 STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging
Eric Andersen85208e22002-04-12 12:05:57 +0000202endif
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000203ifeq ($(strip $(CONFIG_STATIC)),y)
204 PROG_CFLAGS += $(call check_gcc,-static,)
205endif
206CFLAGS_SHARED += $(call check_gcc,-shared,)
Bernhard Reutner-Fischer81b94962006-01-31 11:29:22 +0000207LIB_CFLAGS+=$(CFLAGS_SHARED)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000208
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000209ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
210 CFLAGS_PIC:= $(call check_gcc,-fPIC,)
211 LIB_CFLAGS+=$(CFLAGS_PIC)
212endif
Eric Andersen85208e22002-04-12 12:05:57 +0000213
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000214
215ifeq ($(strip $(CONFIG_SELINUX)),y)
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000216 LIBRARIES += -lselinux
217endif
218
Eric Andersen12f834c2002-10-26 10:17:24 +0000219ifeq ($(strip $(PREFIX)),)
Eric Andersen85208e22002-04-12 12:05:57 +0000220 PREFIX:=`pwd`/_install
221endif
222
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000223# Additional complications due to support for pristine source dir.
224# Include files in the build directory should take precedence over
225# the copy in top_srcdir, both during the compilation phase and the
226# shell script that finds the list of object files.
227# Work in progress by <ldoolitt@recycle.lbl.gov>.
228
229
230OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
Eric Andersen85208e22002-04-12 12:05:57 +0000231CFLAGS += $(CROSS_CFLAGS)
232ifdef BB_INIT_SCRIPT
233 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
234endif
235
236# Put user-supplied flags at the end, where they
237# have a chance of winning.
238CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen4bcdd722001-10-24 05:26:42 +0000239
Rob Landleye0c418e2005-12-15 07:25:54 +0000240#------------------------------------------------------------
241# Installation options
242ifeq ($(strip $(CONFIG_INSTALL_APPLET_HARDLINKS)),y)
243INSTALL_OPTS=--hardlinks
244endif
245ifeq ($(strip $(CONFIG_INSTALL_APPLET_SYMLINKS)),y)
246INSTALL_OPTS=--symlinks
247endif
248ifeq ($(strip $(CONFIG_INSTALL_APPLET_DONT)),y)
249INSTALL_OPTS=
250endif
251
Mike Frysingerb38673f2006-02-02 01:41:53 +0000252#------------------------------------------------------------
253# Make the output nice and tight
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000254MAKEFLAGS += --no-print-directory
Mike Frysingerb38673f2006-02-02 01:41:53 +0000255export MAKE_IS_SILENT=n
256ifneq ($(findstring s,$(MAKEFLAGS)),)
257export MAKE_IS_SILENT=y
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000258SECHO := @-false
Mike Frysingerb38673f2006-02-02 01:41:53 +0000259DISP := sil
260Q := @
261else
262ifneq ($(V)$(VERBOSE),)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000263SECHO := @-false
Mike Frysingerb38673f2006-02-02 01:41:53 +0000264DISP := ver
265Q :=
266else
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000267SECHO := @echo
Mike Frysingerb38673f2006-02-02 01:41:53 +0000268DISP := pur
269Q := @
270endif
271endif
272
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000273show_objs = $(subst $(top_builddir)/,,$(subst ../,,$@))
274pur_disp_compile.c = echo " "CC $(show_objs)
275pur_disp_compile.h = echo " "HOSTCC $(show_objs)
276pur_disp_strip = echo " "STRIP $(show_objs)
277pur_disp_link = echo " "LINK $(show_objs)
278pur_disp_ar = echo " "AR $(ARFLAGS) $(show_objs)
279sil_disp_compile.c = true
280sil_disp_compile.h = true
281sil_disp_strip = true
282sil_disp_link = true
283sil_disp_ar = true
284ver_disp_compile.c = echo $(cmd_compile.c)
285ver_disp_compile.h = echo $(cmd_compile.h)
286ver_disp_strip = echo $(cmd_strip)
287ver_disp_link = echo $(cmd_link)
288ver_disp_ar = echo $(cmd_ar)
Mike Frysingerb38673f2006-02-02 01:41:53 +0000289disp_compile.c = $($(DISP)_disp_compile.c)
290disp_compile.h = $($(DISP)_disp_compile.h)
291disp_strip = $($(DISP)_disp_strip)
292disp_link = $($(DISP)_disp_link)
293disp_ar = $($(DISP)_disp_ar)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000294disp_gen = $(SECHO) " "GEN $@ ; true
295disp_doc = $(SECHO) " "DOC $(subst docs/,,$@) ; true
296cmd_compile.c = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
Mike Frysingerb38673f2006-02-02 01:41:53 +0000297cmd_compile.h = $(HOSTCC) $(HOSTCFLAGS) -c -o $@ $<
298cmd_strip = $(STRIPCMD) $@
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000299cmd_link = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS)
Mike Frysingerb38673f2006-02-02 01:41:53 +0000300cmd_ar = $(AR) $(ARFLAGS) $@ $^
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000301compile.c = @$(disp_compile.c) ; $(cmd_compile.c)
302compile.h = @$(disp_compile.h) ; $(cmd_compile.h)
303do_strip = @$(disp_strip) ; $(cmd_strip)
304do_link = @$(disp_link) ; $(cmd_link)
305do_ar = @$(disp_ar) ; $(cmd_ar)
Mike Frysingerb38673f2006-02-02 01:41:53 +0000306
Eric Andersen85208e22002-04-12 12:05:57 +0000307.PHONY: dummy