Yet more preparation to make a release...
[oweals/busybox.git] / Rules.mak
1 # Rules.make for busybox
2 #
3 # Copyright (C) 2001-2003 Erik Andersen <andersen@codepoet.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
18 #
19
20 #--------------------------------------------------------
21 PROG      := busybox
22 VERSION   := 1.00-pre1
23 BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
24
25
26 #--------------------------------------------------------
27 # 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
31 #--------------------------------------------------------
32
33 # 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
37 CROSS           =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
38 #CROSS           =/usr/i386-linux-uclibc/bin/i386-uclibc-
39 CC             = $(CROSS)gcc
40 AR             = $(CROSS)ar
41 AS             = $(CROSS)as
42 LD             = $(CROSS)ld
43 NM             = $(CROSS)nm
44 STRIP          = $(CROSS)strip
45 CPP            = $(CC) -E
46 MAKEFILES      = $(TOPDIR).config
47
48 # What OS are you compiling busybox for?  This allows you to include
49 # OS specific things, syscall overrides, etc.
50 TARGET_OS=linux
51
52 # Select the compiler needed to build binaries for your development system
53 HOSTCC    = gcc
54 HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
55
56 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. 
57 LC_ALL:= C
58
59 # 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.
62 CFLAGS_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.
67 BB_SRC_DIR=
68
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 #
77 # The following is used for libc5 (if you install altgcc and libc5-altdev
78 # on a Debian system).  
79 #LIBCDIR:=/usr/i486-linuxlibc1
80 #
81 # For other libraries, you are on your own...
82 #LDFLAGS+=-nostdlib
83 #LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
84 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
85 #GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
86
87 WARNINGS=-Wall -Wstrict-prototypes -Wshadow
88 CFLAGS=-I$(TOPDIR)include
89 ARFLAGS=-r
90
91 #--------------------------------------------------------
92 export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
93 ifeq ($(strip $(TARGET_ARCH)),)
94 TARGET_ARCH=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
95                 -e 's/i.86/i386/' \
96                 -e 's/sparc.*/sparc/' \
97                 -e 's/arm.*/arm/g' \
98                 -e 's/m68k.*/m68k/' \
99                 -e 's/ppc/powerpc/g' \
100                 -e 's/v850.*/v850/g' \
101                 -e 's/sh[234]/sh/' \
102                 -e 's/mips-.*/mips/' \
103                 -e 's/mipsel-.*/mipsel/' \
104                 -e 's/cris.*/cris/' \
105                 )
106 endif
107
108 # Pull in the user's uClibc configuration
109 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
110 -include $(TOPDIR).config
111 endif
112
113 # A nifty macro to make testing gcc features easier
114 check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
115         then echo "$(1)"; else echo "$(2)"; fi)
116
117 #--------------------------------------------------------
118 # Arch specific compiler optimization stuff should go here.
119 # Unless you want to override the defaults, do not set anything
120 # for OPTIMIZATION...
121
122 # use '-Os' optimization if available, else use -O2
123 OPTIMIZATION=
124 OPTIMIZATION=${call check_gcc,-Os,-O2}
125
126 # Some nice architecture specific optimizations
127 ifeq ($(strip $(TARGET_ARCH)),arm)
128         OPTIMIZATION+=-fstrict-aliasing
129 endif
130 ifeq ($(strip $(TARGET_ARCH)),i386)
131         OPTIMIZATION+=-march=i386
132         OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
133         OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\
134                 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
135 endif
136 OPTIMIZATIONS=$(OPTIMIZATION) -fomit-frame-pointer
137
138 #
139 #--------------------------------------------------------
140 # If you're going to do a lot of builds with a non-vanilla configuration,
141 # it makes sense to adjust parameters above, so you can type "make"
142 # by itself, instead of following it by the same half-dozen overrides
143 # every time.  The stuff below, on the other hand, is probably less
144 # prone to casual user adjustment.
145
146
147 ifeq ($(strip $(DOLFS)),y)
148     # For large file summit support
149     CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
150 endif
151 ifeq ($(strip $(DODMALLOC)),y)
152     # For testing mem leaks with dmalloc
153     CFLAGS+=-DDMALLOC
154     LIBRARIES:=-ldmalloc
155 else
156     ifeq ($(strip $(DOEFENCE)),y)
157         LIBRARIES:=-lefence
158     endif
159 endif
160 ifeq ($(strip $(DODEBUG)),y)
161     CFLAGS  +=$(WARNINGS) -g -D_GNU_SOURCE
162     LDFLAGS +=-Wl,-warn-common
163     STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging
164 else
165     CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG
166     LDFLAGS += -s -Wl,-warn-common
167     STRIPCMD:=$(STRIP) --remove-section=.note --remove-section=.comment
168 endif
169 ifeq ($(strip $(DOSTATIC)),y)
170     LDFLAGS += --static
171 endif
172
173 ifeq ($(strip $(PREFIX)),)
174     PREFIX:=`pwd`/_install
175 endif
176
177 # Additional complications due to support for pristine source dir.
178 # Include files in the build directory should take precedence over
179 # the copy in BB_SRC_DIR, both during the compilation phase and the
180 # shell script that finds the list of object files.
181 # Work in progress by <ldoolitt@recycle.lbl.gov>.
182 #
183 ifneq ($(strip $(BB_SRC_DIR)),)
184     VPATH:=$(BB_SRC_DIR)
185 endif
186
187 OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
188 CFLAGS    += $(CROSS_CFLAGS)
189 ifdef BB_INIT_SCRIPT
190     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
191 endif
192
193 # Put user-supplied flags at the end, where they
194 # have a chance of winning.
195 CFLAGS += $(CFLAGS_EXTRA)
196
197 %.o: %.c
198         $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
199
200 ifdef _FASTDEP_ALL_SUB_DIRS
201 fastdep: dummy
202         $(TOPDIR)scripts/mkdep $(CFLAGS) $(EXTRA_CFLAGS_nostdinc) -- $(wildcard *.[chS]) > .depend
203 ifdef ALL_SUB_DIRS
204         $(MAKE) $(patsubst %,_sfdep_%,$(ALL_SUB_DIRS)) _FASTDEP_ALL_SUB_DIRS="$(ALL_SUB_DIRS)"
205 endif
206
207 $(patsubst %,_sfdep_%,$(_FASTDEP_ALL_SUB_DIRS)):
208         $(MAKE) -C $(patsubst _sfdep_%,%,$@) fastdep
209 endif
210
211 .PHONY: dummy
212
213
214
215 .EXPORT_ALL_VARIABLES:
216