blob: 442f0fba06acf281165d1b3e1cf9f5536dcd15bd [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Rules.make for busybox
Eric Andersen4bcdd722001-10-24 05:26:42 +00002#
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen85208e22002-04-12 12:05:57 +00004#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Eric Andersen4bcdd722001-10-24 05:26:42 +000018#
19
Eric Andersenc9f20d92002-12-05 08:41:41 +000020#--------------------------------------------------------
Eric Andersen85208e22002-04-12 12:05:57 +000021PROG := busybox
Eric Andersen90d33172004-10-08 10:52:33 +000022VERSION := 1.00
Eric Andersen85208e22002-04-12 12:05:57 +000023BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
Eric Andersen4bcdd722001-10-24 05:26:42 +000024
25
Eric Andersenc9f20d92002-12-05 08:41:41 +000026#--------------------------------------------------------
Eric Andersen85208e22002-04-12 12:05:57 +000027# With a modern GNU make(1) (highly recommended, that's what all the
28# developers use), all of the following configuration values can be
29# overridden at the command line. For example:
30# make CROSS=powerpc-linux- BB_SRC_DIR=$HOME/busybox PREFIX=/mnt/app
Eric Andersenc9f20d92002-12-05 08:41:41 +000031#--------------------------------------------------------
Eric Andersen4bcdd722001-10-24 05:26:42 +000032
Eric Andersenc9f20d92002-12-05 08:41:41 +000033# If you are running a cross compiler, you will want to set 'CROSS'
34# to something more interesting... Target architecture is determined
35# by asking the CC compiler what arch it compiles things for, so unless
36# your compiler is broken, you should not need to specify TARGET_ARCH
Eric Andersen5912acb2003-11-05 11:34:26 +000037CROSS =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
Eric Andersen5912acb2003-11-05 11:34:26 +000038CC = $(CROSS)gcc
39AR = $(CROSS)ar
40AS = $(CROSS)as
41LD = $(CROSS)ld
42NM = $(CROSS)nm
43STRIP = $(CROSS)strip
44CPP = $(CC) -E
Eric Andersen7daa0762004-10-08 07:46:08 +000045# MAKEFILES = $(top_builddir)/.config
Eric Andersen85208e22002-04-12 12:05:57 +000046
Eric Andersenc9f20d92002-12-05 08:41:41 +000047# What OS are you compiling busybox for? This allows you to include
48# OS specific things, syscall overrides, etc.
Eric Andersen5912acb2003-11-05 11:34:26 +000049TARGET_OS=linux
Eric Andersen85208e22002-04-12 12:05:57 +000050
Eric Andersenc9f20d92002-12-05 08:41:41 +000051# Select the compiler needed to build binaries for your development system
Eric Andersen5912acb2003-11-05 11:34:26 +000052HOSTCC = gcc
Robert Griebl53f133a2002-12-16 21:55:39 +000053HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
Eric Andersenc9f20d92002-12-05 08:41:41 +000054
Eric Andersenc7bda1c2004-03-15 08:29:22 +000055# Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
Eric Andersen85d9d802003-01-14 09:12:39 +000056LC_ALL:= C
57
Eric Andersenc9f20d92002-12-05 08:41:41 +000058# If you want to add some simple compiler switches (like -march=i686),
59# especially from the command line, use this instead of CFLAGS directly.
60# For optimization overrides, it's better still to set OPTIMIZATION.
61CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
Eric Andersenc7bda1c2004-03-15 08:29:22 +000062
Eric Andersenc9f20d92002-12-05 08:41:41 +000063# If you have a "pristine" source directory, point BB_SRC_DIR to it.
64# Experimental and incomplete; tell the mailing list
65# <busybox@busybox.net> if you do or don't like it so far.
Robert Griebl53f133a2002-12-16 21:55:39 +000066BB_SRC_DIR=
Eric Andersen85208e22002-04-12 12:05:57 +000067
68# To compile vs some other alternative libc, you may need to use/adjust
69# the following lines to meet your needs...
70#
71# If you are using Red Hat 6.x with the compatible RPMs (for developing under
72# Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about
73# using the compatible RPMs (compat-*) at http://www.redhat.com !
74#LIBCDIR:=/usr/i386-glibc20-linux
75#
Eric Andersen0a14c9f2003-07-22 08:56:01 +000076# For other libraries, you are on your own. But these may (or may not) help...
Eric Andersen85208e22002-04-12 12:05:57 +000077#LDFLAGS+=-nostdlib
78#LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
79#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
80#GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
81
Robert Griebl53f133a2002-12-16 21:55:39 +000082WARNINGS=-Wall -Wstrict-prototypes -Wshadow
Eric Andersen7daa0762004-10-08 07:46:08 +000083CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir)
Mike Frysinger4d008962005-07-27 01:09:24 +000084ARFLAGS=cru
Eric Andersen85208e22002-04-12 12:05:57 +000085
Eric Andersenc9f20d92002-12-05 08:41:41 +000086#--------------------------------------------------------
87export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
Eric Andersen5912acb2003-11-05 11:34:26 +000088ifeq ($(strip $(TARGET_ARCH)),)
Rob Landley088ee412005-07-28 19:38:52 +000089TARGET_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
Glenn L McGrath3bff6662003-08-29 12:23:09 +0000103# Pull in the user's busybox configuration
Eric Andersenc9f20d92002-12-05 08:41:41 +0000104ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
Eric Andersen7daa0762004-10-08 07:46:08 +0000105-include $(top_builddir)/.config
Eric Andersenc9f20d92002-12-05 08:41:41 +0000106endif
107
Eric Andersen1b6eb9b2002-10-30 06:55:37 +0000108# A nifty macro to make testing gcc features easier
Mike Frysingerb3b756d2005-07-28 22:26:25 +0000109check_gcc=$(shell \
110 if [ "$(1)" != "" ]; then \
111 if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
112 then echo "$(1)"; else echo "$(2)"; fi \
113 fi)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000114
Mike Frysingerc99e2c52005-07-28 22:14:35 +0000115# Setup some shortcuts so that silent mode is silent like it should be
116ifeq ($(subst s,,$(MAKEFLAGS)),$(MAKEFLAGS))
117export MAKE_IS_SILENT=n
118SECHO=@echo
119else
120export MAKE_IS_SILENT=y
121SECHO=-@false
122endif
123
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000124#--------------------------------------------------------
125# Arch specific compiler optimization stuff should go here.
126# Unless you want to override the defaults, do not set anything
127# for OPTIMIZATION...
128
129# use '-Os' optimization if available, else use -O2
Mike Frysingerb3b756d2005-07-28 22:26:25 +0000130OPTIMIZATION:=$(call check_gcc,-Os,-O2)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000131
132# Some nice architecture specific optimizations
133ifeq ($(strip $(TARGET_ARCH)),arm)
134 OPTIMIZATION+=-fstrict-aliasing
135endif
136ifeq ($(strip $(TARGET_ARCH)),i386)
Eric Andersen0a14c9f2003-07-22 08:56:01 +0000137 OPTIMIZATION+=$(call check_gcc,-march=i386,)
Eric Andersen1b6eb9b2002-10-30 06:55:37 +0000138 OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
139 OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\
140 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000141endif
Mike Frysingerb3b756d2005-07-28 22:26:25 +0000142OPTIMIZATIONS:=$(OPTIMIZATION) -fomit-frame-pointer
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000143
Eric Andersen85208e22002-04-12 12:05:57 +0000144#
145#--------------------------------------------------------
146# If you're going to do a lot of builds with a non-vanilla configuration,
147# it makes sense to adjust parameters above, so you can type "make"
148# by itself, instead of following it by the same half-dozen overrides
149# every time. The stuff below, on the other hand, is probably less
150# prone to casual user adjustment.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000151#
Eric Andersen85208e22002-04-12 12:05:57 +0000152
Eric Andersene5272072003-07-22 22:15:21 +0000153ifeq ($(strip $(CONFIG_LFS)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000154 # For large file summit support
Eric Andersenecfa2902002-09-22 12:09:44 +0000155 CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
Eric Andersen85208e22002-04-12 12:05:57 +0000156endif
Eric Andersene5272072003-07-22 22:15:21 +0000157ifeq ($(strip $(CONFIG_DMALLOC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000158 # For testing mem leaks with dmalloc
159 CFLAGS+=-DDMALLOC
160 LIBRARIES:=-ldmalloc
Eric Andersen85208e22002-04-12 12:05:57 +0000161else
Eric Andersene5272072003-07-22 22:15:21 +0000162 ifeq ($(strip $(CONFIG_EFENCE)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000163 LIBRARIES:=-lefence
Eric Andersen85208e22002-04-12 12:05:57 +0000164 endif
165endif
Eric Andersene5272072003-07-22 22:15:21 +0000166ifeq ($(strip $(CONFIG_DEBUG)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000167 CFLAGS +=$(WARNINGS) -g -D_GNU_SOURCE
168 LDFLAGS +=-Wl,-warn-common
169 STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging
170else
Eric Andersenbae7c1a2003-03-07 17:27:51 +0000171 CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG
Rob Landleyc7a3e1b2005-07-31 04:25:00 +0000172 LDFLAGS += -Wl,-warn-common
Mike Frysinger1c1655a2005-07-31 22:11:33 +0000173 STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
Eric Andersen85208e22002-04-12 12:05:57 +0000174endif
Eric Andersene5272072003-07-22 22:15:21 +0000175ifeq ($(strip $(CONFIG_STATIC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000176 LDFLAGS += --static
177endif
178
Eric Andersen12f834c2002-10-26 10:17:24 +0000179ifeq ($(strip $(PREFIX)),)
Eric Andersen85208e22002-04-12 12:05:57 +0000180 PREFIX:=`pwd`/_install
181endif
182
183# Additional complications due to support for pristine source dir.
184# Include files in the build directory should take precedence over
185# the copy in BB_SRC_DIR, both during the compilation phase and the
186# shell script that finds the list of object files.
187# Work in progress by <ldoolitt@recycle.lbl.gov>.
188#
189ifneq ($(strip $(BB_SRC_DIR)),)
190 VPATH:=$(BB_SRC_DIR)
191endif
192
Eric Andersen85208e22002-04-12 12:05:57 +0000193OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
194CFLAGS += $(CROSS_CFLAGS)
195ifdef BB_INIT_SCRIPT
196 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
197endif
198
199# Put user-supplied flags at the end, where they
200# have a chance of winning.
201CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen4bcdd722001-10-24 05:26:42 +0000202
Eric Andersen85208e22002-04-12 12:05:57 +0000203.PHONY: dummy
Eric Andersen4bcdd722001-10-24 05:26:42 +0000204
Eric Andersen4bcdd722001-10-24 05:26:42 +0000205
Eric Andersen85208e22002-04-12 12:05:57 +0000206.EXPORT_ALL_VARIABLES:
Eric Andersen4bcdd722001-10-24 05:26:42 +0000207