blob: 3ee323527136f3ec5353c81c4786d883a2d5b81a [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Rules.make for busybox
Eric Andersen4bcdd722001-10-24 05:26:42 +00002#
Eric Andersend4fcb802003-07-15 00:28:26 +00003# Copyright (C) 2001-2003 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 Andersen3869f662003-08-06 11:22:36 +000022VERSION := 1.00-pre3
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 Andersenb8b68162003-10-30 07:48:38 +000037CROSS ?=$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
Eric Andersenbae7c1a2003-03-07 17:27:51 +000038#CROSS =/usr/i386-linux-uclibc/bin/i386-uclibc-
Eric Andersenb8b68162003-10-30 07:48:38 +000039CC ?= $(CROSS)gcc
40AR ?= $(CROSS)ar
41AS ?= $(CROSS)as
42LD ?= $(CROSS)ld
43NM ?= $(CROSS)nm
44STRIP ?= $(CROSS)strip
45CPP ?= $(CC) -E
Robert Griebl53f133a2002-12-16 21:55:39 +000046MAKEFILES = $(TOPDIR).config
Eric Andersen85208e22002-04-12 12:05:57 +000047
Eric Andersenc9f20d92002-12-05 08:41:41 +000048# What OS are you compiling busybox for? This allows you to include
49# OS specific things, syscall overrides, etc.
Eric Andersenb8b68162003-10-30 07:48:38 +000050TARGET_OS?=linux
Eric Andersen85208e22002-04-12 12:05:57 +000051
Eric Andersenc9f20d92002-12-05 08:41:41 +000052# Select the compiler needed to build binaries for your development system
Eric Andersenb8b68162003-10-30 07:48:38 +000053HOSTCC ?= gcc
Robert Griebl53f133a2002-12-16 21:55:39 +000054HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
Eric Andersenc9f20d92002-12-05 08:41:41 +000055
Eric Andersen85d9d802003-01-14 09:12:39 +000056# Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
57LC_ALL:= C
58
Eric Andersenc9f20d92002-12-05 08:41:41 +000059# If you want to add some simple compiler switches (like -march=i686),
60# especially from the command line, use this instead of CFLAGS directly.
61# For optimization overrides, it's better still to set OPTIMIZATION.
62CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
63
64# If you have a "pristine" source directory, point BB_SRC_DIR to it.
65# Experimental and incomplete; tell the mailing list
66# <busybox@busybox.net> if you do or don't like it so far.
Robert Griebl53f133a2002-12-16 21:55:39 +000067BB_SRC_DIR=
Eric Andersen85208e22002-04-12 12:05:57 +000068
69# 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
80#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
81#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
84CFLAGS=-I$(TOPDIR)include
85ARFLAGS=-r
Eric Andersen85208e22002-04-12 12:05:57 +000086
Eric Andersenc9f20d92002-12-05 08:41:41 +000087#--------------------------------------------------------
88export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
Eric Andersenb8b68162003-10-30 07:48:38 +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 Andersenc9f20d92002-12-05 08:41:41 +0000101
Glenn L McGrath3bff6662003-08-29 12:23:09 +0000102# Pull in the user's busybox configuration
Eric Andersenc9f20d92002-12-05 08:41:41 +0000103ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000104-include $(TOPDIR).config
105endif
106
Eric Andersen1b6eb9b2002-10-30 06:55:37 +0000107# A nifty macro to make testing gcc features easier
108check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
109 then echo "$(1)"; else echo "$(2)"; fi)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000110
111#--------------------------------------------------------
112# Arch specific compiler optimization stuff should go here.
113# Unless you want to override the defaults, do not set anything
114# for OPTIMIZATION...
115
116# use '-Os' optimization if available, else use -O2
Robert Griebl53f133a2002-12-16 21:55:39 +0000117OPTIMIZATION=
118OPTIMIZATION=${call check_gcc,-Os,-O2}
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000119
120# Some nice architecture specific optimizations
121ifeq ($(strip $(TARGET_ARCH)),arm)
122 OPTIMIZATION+=-fstrict-aliasing
123endif
124ifeq ($(strip $(TARGET_ARCH)),i386)
Eric Andersen0a14c9f2003-07-22 08:56:01 +0000125 OPTIMIZATION+=$(call check_gcc,-march=i386,)
Eric Andersen1b6eb9b2002-10-30 06:55:37 +0000126 OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
127 OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\
128 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000129endif
Robert Griebl53f133a2002-12-16 21:55:39 +0000130OPTIMIZATIONS=$(OPTIMIZATION) -fomit-frame-pointer
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000131
Eric Andersen85208e22002-04-12 12:05:57 +0000132#
133#--------------------------------------------------------
134# If you're going to do a lot of builds with a non-vanilla configuration,
135# it makes sense to adjust parameters above, so you can type "make"
136# by itself, instead of following it by the same half-dozen overrides
137# every time. The stuff below, on the other hand, is probably less
138# prone to casual user adjustment.
139#
140
Eric Andersene5272072003-07-22 22:15:21 +0000141ifeq ($(strip $(CONFIG_LFS)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000142 # For large file summit support
Eric Andersenecfa2902002-09-22 12:09:44 +0000143 CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
Eric Andersen85208e22002-04-12 12:05:57 +0000144endif
Eric Andersene5272072003-07-22 22:15:21 +0000145ifeq ($(strip $(CONFIG_DMALLOC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000146 # For testing mem leaks with dmalloc
147 CFLAGS+=-DDMALLOC
148 LIBRARIES:=-ldmalloc
Eric Andersen85208e22002-04-12 12:05:57 +0000149else
Eric Andersene5272072003-07-22 22:15:21 +0000150 ifeq ($(strip $(CONFIG_EFENCE)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000151 LIBRARIES:=-lefence
Eric Andersen85208e22002-04-12 12:05:57 +0000152 endif
153endif
Eric Andersene5272072003-07-22 22:15:21 +0000154ifeq ($(strip $(CONFIG_DEBUG)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000155 CFLAGS +=$(WARNINGS) -g -D_GNU_SOURCE
156 LDFLAGS +=-Wl,-warn-common
157 STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging
158else
Eric Andersenbae7c1a2003-03-07 17:27:51 +0000159 CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG
Eric Andersen85208e22002-04-12 12:05:57 +0000160 LDFLAGS += -s -Wl,-warn-common
161 STRIPCMD:=$(STRIP) --remove-section=.note --remove-section=.comment
162endif
Eric Andersene5272072003-07-22 22:15:21 +0000163ifeq ($(strip $(CONFIG_STATIC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000164 LDFLAGS += --static
165endif
166
Eric Andersen12f834c2002-10-26 10:17:24 +0000167ifeq ($(strip $(PREFIX)),)
Eric Andersen85208e22002-04-12 12:05:57 +0000168 PREFIX:=`pwd`/_install
169endif
170
171# Additional complications due to support for pristine source dir.
172# Include files in the build directory should take precedence over
173# the copy in BB_SRC_DIR, both during the compilation phase and the
174# shell script that finds the list of object files.
175# Work in progress by <ldoolitt@recycle.lbl.gov>.
176#
177ifneq ($(strip $(BB_SRC_DIR)),)
178 VPATH:=$(BB_SRC_DIR)
179endif
180
Eric Andersen85208e22002-04-12 12:05:57 +0000181OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
182CFLAGS += $(CROSS_CFLAGS)
183ifdef BB_INIT_SCRIPT
184 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
185endif
186
187# Put user-supplied flags at the end, where they
188# have a chance of winning.
189CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen4bcdd722001-10-24 05:26:42 +0000190
191%.o: %.c
Eric Andersen85208e22002-04-12 12:05:57 +0000192 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
Eric Andersen4bcdd722001-10-24 05:26:42 +0000193
Eric Andersen85208e22002-04-12 12:05:57 +0000194ifdef _FASTDEP_ALL_SUB_DIRS
Eric Andersen4bcdd722001-10-24 05:26:42 +0000195fastdep: dummy
Eric Andersen85208e22002-04-12 12:05:57 +0000196 $(TOPDIR)scripts/mkdep $(CFLAGS) $(EXTRA_CFLAGS_nostdinc) -- $(wildcard *.[chS]) > .depend
Eric Andersen4bcdd722001-10-24 05:26:42 +0000197ifdef ALL_SUB_DIRS
198 $(MAKE) $(patsubst %,_sfdep_%,$(ALL_SUB_DIRS)) _FASTDEP_ALL_SUB_DIRS="$(ALL_SUB_DIRS)"
199endif
200
Eric Andersen4bcdd722001-10-24 05:26:42 +0000201$(patsubst %,_sfdep_%,$(_FASTDEP_ALL_SUB_DIRS)):
202 $(MAKE) -C $(patsubst _sfdep_%,%,$@) fastdep
203endif
204
Eric Andersen85208e22002-04-12 12:05:57 +0000205.PHONY: dummy
Eric Andersen4bcdd722001-10-24 05:26:42 +0000206
Eric Andersen4bcdd722001-10-24 05:26:42 +0000207
Eric Andersen4bcdd722001-10-24 05:26:42 +0000208
Eric Andersen85208e22002-04-12 12:05:57 +0000209.EXPORT_ALL_VARIABLES:
Eric Andersen4bcdd722001-10-24 05:26:42 +0000210