blob: 6fd0fb2d7b8b22ca512cf3cf73d5d847128d7827 [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
33# 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
Eric Andersen7daa0762004-10-08 07:46:08 +000042# MAKEFILES = $(top_builddir)/.config
Bernhard Reutner-Fischer8c7a7e62005-10-13 10:40:18 +000043RM = rm
44RM_F = $(RM) -f
45LN = ln
46LN_S = $(LN) -s
47MKDIR = mkdir
48MKDIR_P = $(MKDIR) -p
49MV = mv
50CP = cp
51
Eric Andersen85208e22002-04-12 12:05:57 +000052
Eric Andersenc9f20d92002-12-05 08:41:41 +000053# What OS are you compiling busybox for? This allows you to include
54# OS specific things, syscall overrides, etc.
Eric Andersen5912acb2003-11-05 11:34:26 +000055TARGET_OS=linux
Eric Andersen85208e22002-04-12 12:05:57 +000056
Eric Andersenc9f20d92002-12-05 08:41:41 +000057# Select the compiler needed to build binaries for your development system
Eric Andersen5912acb2003-11-05 11:34:26 +000058HOSTCC = gcc
Robert Griebl53f133a2002-12-16 21:55:39 +000059HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
Eric Andersenc9f20d92002-12-05 08:41:41 +000060
Eric Andersenc7bda1c2004-03-15 08:29:22 +000061# Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
Eric Andersen85d9d802003-01-14 09:12:39 +000062LC_ALL:= C
63
Eric Andersenc9f20d92002-12-05 08:41:41 +000064# If you want to add some simple compiler switches (like -march=i686),
65# especially from the command line, use this instead of CFLAGS directly.
66# For optimization overrides, it's better still to set OPTIMIZATION.
67CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
Eric Andersenc7bda1c2004-03-15 08:29:22 +000068
Eric Andersen85208e22002-04-12 12:05:57 +000069# To compile vs some other alternative libc, you may need to use/adjust
70# the following lines to meet your needs...
71#
72# If you are using Red Hat 6.x with the compatible RPMs (for developing under
73# Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about
74# using the compatible RPMs (compat-*) at http://www.redhat.com !
75#LIBCDIR:=/usr/i386-glibc20-linux
76#
Eric Andersen0a14c9f2003-07-22 08:56:01 +000077# For other libraries, you are on your own. But these may (or may not) help...
Eric Andersen85208e22002-04-12 12:05:57 +000078#LDFLAGS+=-nostdlib
79#LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
Rob Landley4a070d12005-12-01 17:01:43 +000080#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) -funsigned-char
Eric Andersen85208e22002-04-12 12:05:57 +000081#GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
82
Robert Griebl53f133a2002-12-16 21:55:39 +000083WARNINGS=-Wall -Wstrict-prototypes -Wshadow
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +000084CFLAGS+=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir)
85
Mike Frysinger4d008962005-07-27 01:09:24 +000086ARFLAGS=cru
Eric Andersen85208e22002-04-12 12:05:57 +000087
Bernhard Reutner-Fischere0b87782005-12-13 11:52:46 +000088
89# gcc centric. Perhaps fiddle with findstring gcc,$(CC) for the rest
90# get the CC MAJOR/MINOR version
91CC_MAJOR:=$(shell printf "%02d" $(shell echo __GNUC__ | $(CC) -E -xc - | tail -n 1))
92CC_MINOR:=$(shell printf "%02d" $(shell echo __GNUC_MINOR__ | $(CC) -E -xc - | tail -n 1))
93
Eric Andersenc9f20d92002-12-05 08:41:41 +000094#--------------------------------------------------------
Bernhard Reutner-Fischer1c943eb2005-09-26 16:01:43 +000095export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
Eric Andersen5912acb2003-11-05 11:34:26 +000096ifeq ($(strip $(TARGET_ARCH)),)
Rob Landley088ee412005-07-28 19:38:52 +000097TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
Eric Andersen5b0f9e42002-06-23 04:50:49 +000098 -e 's/i.86/i386/' \
99 -e 's/sparc.*/sparc/' \
100 -e 's/arm.*/arm/g' \
101 -e 's/m68k.*/m68k/' \
102 -e 's/ppc/powerpc/g' \
103 -e 's/v850.*/v850/g' \
104 -e 's/sh[234]/sh/' \
Eric Andersenc9f20d92002-12-05 08:41:41 +0000105 -e 's/mips-.*/mips/' \
106 -e 's/mipsel-.*/mipsel/' \
107 -e 's/cris.*/cris/' \
108 )
Eric Andersen5912acb2003-11-05 11:34:26 +0000109endif
Eric Andersenc9f20d92002-12-05 08:41:41 +0000110
Eric Andersen1b6eb9b2002-10-30 06:55:37 +0000111# A nifty macro to make testing gcc features easier
Mike Frysingerb3b756d2005-07-28 22:26:25 +0000112check_gcc=$(shell \
113 if [ "$(1)" != "" ]; then \
114 if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
115 then echo "$(1)"; else echo "$(2)"; fi \
116 fi)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000117
Mike Frysingerc99e2c52005-07-28 22:14:35 +0000118# Setup some shortcuts so that silent mode is silent like it should be
119ifeq ($(subst s,,$(MAKEFLAGS)),$(MAKEFLAGS))
120export MAKE_IS_SILENT=n
121SECHO=@echo
122else
123export MAKE_IS_SILENT=y
124SECHO=-@false
125endif
126
Bernhard Reutner-Fischere0b87782005-12-13 11:52:46 +0000127CFLAGS+=$(call check_gcc,-funsigned-char,)
128
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000129CFLAGS+=$(call check_gcc,-mmax-stack-frame=256,)
130
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000131#--------------------------------------------------------
132# Arch specific compiler optimization stuff should go here.
133# Unless you want to override the defaults, do not set anything
134# for OPTIMIZATION...
135
136# use '-Os' optimization if available, else use -O2
Mike Frysingerb3b756d2005-07-28 22:26:25 +0000137OPTIMIZATION:=$(call check_gcc,-Os,-O2)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000138
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000139ifeq ($(CONFIG_BUILD_AT_ONCE),y)
140# gcc 2.95 exits with 0 for "unrecognized option"
141ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0)
142 OPTIMIZATION+=$(call check_gcc,-combine,)
143endif
144OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
145PROG_CFLAGS+=$(call check_gcc,-fwhole-program,)
146endif # CONFIG_BUILD_AT_ONCE
147
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000148# Some nice architecture specific optimizations
149ifeq ($(strip $(TARGET_ARCH)),arm)
150 OPTIMIZATION+=-fstrict-aliasing
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000151 OPTIMIZATION+=$(call check_gcc,-msingle-pic-base,)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000152endif
153ifeq ($(strip $(TARGET_ARCH)),i386)
Eric Andersen0a14c9f2003-07-22 08:56:01 +0000154 OPTIMIZATION+=$(call check_gcc,-march=i386,)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000155# gcc-4.0 and older seem to suffer from these
156ifneq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
Eric Andersen1b6eb9b2002-10-30 06:55:37 +0000157 OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
158 OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\
159 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000160endif # gcc-4.0 and older
161
162# gcc-4.1 and beyond seem to benefit from these
163ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
164 # turn off flags which hurt -Os
165 OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,)
166 OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,)
167 OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,)
168
169 OPTIMIZATION+=$(call check_gcc,-fno-branch-count-reg,)
170endif # gcc-4.1 and beyond
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000171endif
Mike Frysingerb3b756d2005-07-28 22:26:25 +0000172OPTIMIZATIONS:=$(OPTIMIZATION) -fomit-frame-pointer
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000173
Eric Andersen85208e22002-04-12 12:05:57 +0000174#
175#--------------------------------------------------------
176# If you're going to do a lot of builds with a non-vanilla configuration,
177# it makes sense to adjust parameters above, so you can type "make"
178# by itself, instead of following it by the same half-dozen overrides
179# every time. The stuff below, on the other hand, is probably less
180# prone to casual user adjustment.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000181#
Eric Andersen85208e22002-04-12 12:05:57 +0000182
Eric Andersene5272072003-07-22 22:15:21 +0000183ifeq ($(strip $(CONFIG_LFS)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000184 # For large file summit support
Eric Andersenecfa2902002-09-22 12:09:44 +0000185 CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
Eric Andersen85208e22002-04-12 12:05:57 +0000186endif
Eric Andersene5272072003-07-22 22:15:21 +0000187ifeq ($(strip $(CONFIG_DMALLOC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000188 # For testing mem leaks with dmalloc
189 CFLAGS+=-DDMALLOC
190 LIBRARIES:=-ldmalloc
Eric Andersen85208e22002-04-12 12:05:57 +0000191else
Eric Andersene5272072003-07-22 22:15:21 +0000192 ifeq ($(strip $(CONFIG_EFENCE)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000193 LIBRARIES:=-lefence
Eric Andersen85208e22002-04-12 12:05:57 +0000194 endif
195endif
Eric Andersene5272072003-07-22 22:15:21 +0000196ifeq ($(strip $(CONFIG_DEBUG)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000197 CFLAGS +=$(WARNINGS) -g -D_GNU_SOURCE
198 LDFLAGS +=-Wl,-warn-common
199 STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging
200else
Eric Andersenbae7c1a2003-03-07 17:27:51 +0000201 CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000202 LDFLAGS += -Wl,-warn-common -Wl,--sort-common
Mike Frysinger1c1655a2005-07-31 22:11:33 +0000203 STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
Eric Andersen85208e22002-04-12 12:05:57 +0000204endif
Eric Andersene5272072003-07-22 22:15:21 +0000205ifeq ($(strip $(CONFIG_STATIC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000206 LDFLAGS += --static
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000207#else
208# LIBRARIES += -ldl
209endif
210
211ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
212 CFLAGS_PIC:= -fPIC #-DPIC
Eric Andersen85208e22002-04-12 12:05:57 +0000213endif
214
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000215ifeq ($(strip $(CONFIG_SELINUX)),y)
216 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
223# Additional complications due to support for pristine source dir.
224# Include files in the build directory should take precedence over
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000225# the copy in top_srcdir, both during the compilation phase and the
Eric Andersen85208e22002-04-12 12:05:57 +0000226# shell script that finds the list of object files.
227# Work in progress by <ldoolitt@recycle.lbl.gov>.
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000228
Eric Andersen85208e22002-04-12 12:05:57 +0000229
Eric Andersen85208e22002-04-12 12:05:57 +0000230OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
231CFLAGS += $(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
Eric Andersen85208e22002-04-12 12:05:57 +0000252.PHONY: dummy