blob: 80f273672ec8f8ebb7b439fb4be9e50675bbde87 [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Rules.make for busybox
Eric Andersen4bcdd722001-10-24 05:26:42 +00002#
Eric Andersen85208e22002-04-12 12:05:57 +00003# Copyright (C) 2002 Erik Andersen <andersee@debian.org>
4#
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
22VERSION := 0.61.pre
23BUILDTIME := $(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
37CROSS =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
38CC = $(CROSS)gcc
Eric Andersen85208e22002-04-12 12:05:57 +000039AR := $(CROSS)ar
40AS := $(CROSS)as
41LD := $(CROSS)ld
42NM := $(CROSS)nm
43STRIP := $(CROSS)strip
44CPP := $(CC) -E
45MAKEFILES := $(TOPDIR).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.
49TARGET_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
52HOSTCC := gcc
53HOSTCFLAGS:= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
54
55# If you want to add some simple compiler switches (like -march=i686),
56# especially from the command line, use this instead of CFLAGS directly.
57# For optimization overrides, it's better still to set OPTIMIZATION.
58CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
59
60# If you have a "pristine" source directory, point BB_SRC_DIR to it.
61# Experimental and incomplete; tell the mailing list
62# <busybox@busybox.net> if you do or don't like it so far.
63BB_SRC_DIR:=
Eric Andersen85208e22002-04-12 12:05:57 +000064
65# To compile vs some other alternative libc, you may need to use/adjust
66# the following lines to meet your needs...
67#
68# If you are using Red Hat 6.x with the compatible RPMs (for developing under
69# Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about
70# using the compatible RPMs (compat-*) at http://www.redhat.com !
71#LIBCDIR:=/usr/i386-glibc20-linux
72#
73# The following is used for libc5 (if you install altgcc and libc5-altdev
74# on a Debian system).
75#LIBCDIR:=/usr/i486-linuxlibc1
76#
77# For other libraries, you are on your own...
78#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
Eric Andersen85208e22002-04-12 12:05:57 +000083WARNINGS:=-Wall -Wstrict-prototypes -Wshadow
84CFLAGS:=-I$(TOPDIR)include
85ARFLAGS:=-r
86
Eric Andersenc9f20d92002-12-05 08:41:41 +000087#--------------------------------------------------------
88export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
89ifeq ($(strip $(TARGET_ARCH)),)
Eric Andersen08c358b2002-12-05 18:28:41 +000090TARGET_ARCH=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
Eric Andersen5b0f9e42002-06-23 04:50:49 +000091 -e 's/i.86/i386/' \
92 -e 's/sparc.*/sparc/' \
93 -e 's/arm.*/arm/g' \
94 -e 's/m68k.*/m68k/' \
95 -e 's/ppc/powerpc/g' \
96 -e 's/v850.*/v850/g' \
97 -e 's/sh[234]/sh/' \
Eric Andersenc9f20d92002-12-05 08:41:41 +000098 -e 's/mips-.*/mips/' \
99 -e 's/mipsel-.*/mipsel/' \
100 -e 's/cris.*/cris/' \
101 )
102endif
103
104# Pull in the user's uClibc configuration
105ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
106include_config := 1
107-include $(TOPDIR).config
108endif
109
Eric Andersen1b6eb9b2002-10-30 06:55:37 +0000110# A nifty macro to make testing gcc features easier
111check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
112 then echo "$(1)"; else echo "$(2)"; fi)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000113
114#--------------------------------------------------------
115# Arch specific compiler optimization stuff should go here.
116# Unless you want to override the defaults, do not set anything
117# for OPTIMIZATION...
118
119# use '-Os' optimization if available, else use -O2
Eric Andersen1b6eb9b2002-10-30 06:55:37 +0000120OPTIMIZATION:=
121OPTIMIZATION+=${call check_gcc,-Os,-O2}
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000122
123# Some nice architecture specific optimizations
124ifeq ($(strip $(TARGET_ARCH)),arm)
125 OPTIMIZATION+=-fstrict-aliasing
126endif
127ifeq ($(strip $(TARGET_ARCH)),i386)
128 OPTIMIZATION+=-march=i386
Eric Andersen1b6eb9b2002-10-30 06:55:37 +0000129 OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
130 OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\
131 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000132endif
133OPTIMIZATIONS:=$(OPTIMIZATION) -fomit-frame-pointer
134
Eric Andersen85208e22002-04-12 12:05:57 +0000135#
136#--------------------------------------------------------
137# If you're going to do a lot of builds with a non-vanilla configuration,
138# it makes sense to adjust parameters above, so you can type "make"
139# by itself, instead of following it by the same half-dozen overrides
140# every time. The stuff below, on the other hand, is probably less
141# prone to casual user adjustment.
142#
143
Eric Andersenc9f20d92002-12-05 08:41:41 +0000144ifeq ($(strip $(DOLFS)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000145 # For large file summit support
Eric Andersenecfa2902002-09-22 12:09:44 +0000146 CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
Eric Andersen85208e22002-04-12 12:05:57 +0000147endif
Eric Andersenc9f20d92002-12-05 08:41:41 +0000148ifeq ($(strip $(DODMALLOC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000149 # For testing mem leaks with dmalloc
150 CFLAGS+=-DDMALLOC
151 LIBRARIES:=-ldmalloc
Eric Andersen85208e22002-04-12 12:05:57 +0000152else
Eric Andersenc9f20d92002-12-05 08:41:41 +0000153 ifeq ($(strip $(DOEFENCE)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000154 LIBRARIES:=-lefence
Eric Andersen85208e22002-04-12 12:05:57 +0000155 endif
156endif
Eric Andersenc9f20d92002-12-05 08:41:41 +0000157ifeq ($(strip $(DODEBUG)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000158 CFLAGS +=$(WARNINGS) -g -D_GNU_SOURCE
159 LDFLAGS +=-Wl,-warn-common
160 STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging
161else
162 CFLAGS += $(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE
163 LDFLAGS += -s -Wl,-warn-common
164 STRIPCMD:=$(STRIP) --remove-section=.note --remove-section=.comment
165endif
Eric Andersenc9f20d92002-12-05 08:41:41 +0000166ifeq ($(strip $(DOSTATIC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000167 LDFLAGS += --static
168endif
169
Eric Andersen12f834c2002-10-26 10:17:24 +0000170ifeq ($(strip $(PREFIX)),)
Eric Andersen85208e22002-04-12 12:05:57 +0000171 PREFIX:=`pwd`/_install
172endif
173
174# Additional complications due to support for pristine source dir.
175# Include files in the build directory should take precedence over
176# the copy in BB_SRC_DIR, both during the compilation phase and the
177# shell script that finds the list of object files.
178# Work in progress by <ldoolitt@recycle.lbl.gov>.
179#
180ifneq ($(strip $(BB_SRC_DIR)),)
181 VPATH:=$(BB_SRC_DIR)
182endif
183
Eric Andersen85208e22002-04-12 12:05:57 +0000184OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
185CFLAGS += $(CROSS_CFLAGS)
186ifdef BB_INIT_SCRIPT
187 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
188endif
189
190# Put user-supplied flags at the end, where they
191# have a chance of winning.
192CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen4bcdd722001-10-24 05:26:42 +0000193
194%.o: %.c
Eric Andersen85208e22002-04-12 12:05:57 +0000195 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
Eric Andersen4bcdd722001-10-24 05:26:42 +0000196
Eric Andersen85208e22002-04-12 12:05:57 +0000197ifdef _FASTDEP_ALL_SUB_DIRS
Eric Andersen4bcdd722001-10-24 05:26:42 +0000198fastdep: dummy
Eric Andersen85208e22002-04-12 12:05:57 +0000199 $(TOPDIR)scripts/mkdep $(CFLAGS) $(EXTRA_CFLAGS_nostdinc) -- $(wildcard *.[chS]) > .depend
Eric Andersen4bcdd722001-10-24 05:26:42 +0000200ifdef ALL_SUB_DIRS
201 $(MAKE) $(patsubst %,_sfdep_%,$(ALL_SUB_DIRS)) _FASTDEP_ALL_SUB_DIRS="$(ALL_SUB_DIRS)"
202endif
203
Eric Andersen4bcdd722001-10-24 05:26:42 +0000204$(patsubst %,_sfdep_%,$(_FASTDEP_ALL_SUB_DIRS)):
205 $(MAKE) -C $(patsubst _sfdep_%,%,$@) fastdep
206endif
207
Eric Andersen85208e22002-04-12 12:05:57 +0000208.PHONY: dummy
Eric Andersen4bcdd722001-10-24 05:26:42 +0000209
Eric Andersen4bcdd722001-10-24 05:26:42 +0000210
Eric Andersen4bcdd722001-10-24 05:26:42 +0000211
Eric Andersen85208e22002-04-12 12:05:57 +0000212.EXPORT_ALL_VARIABLES:
Eric Andersen4bcdd722001-10-24 05:26:42 +0000213