Add --no-same-owner and --no-same-permissions options to tar.
[oweals/busybox.git] / Rules.mak
1 # Rules.make for busybox
2 #
3 # Copyright (C) 1999-2004 by 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 MAJOR_VERSION   :=1
23 MINOR_VERSION   :=1
24 SUBLEVEL_VERSION:=0
25 EXTRAVERSION    :=-pre1
26 VERSION   :=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)$(EXTRAVERSION)
27 BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
28
29
30 #--------------------------------------------------------
31 # With a modern GNU make(1) (highly recommended, that's what all the
32 # developers use), all of the following configuration values can be
33 # overridden at the command line.  For example:
34 #   make CROSS=powerpc-linux- top_srcdir="$HOME/busybox" PREFIX=/mnt/app
35 #--------------------------------------------------------
36
37 # If you are running a cross compiler, you will want to set 'CROSS'
38 # to something more interesting...  Target architecture is determined
39 # by asking the CC compiler what arch it compiles things for, so unless
40 # your compiler is broken, you should not need to specify TARGET_ARCH
41 CROSS           =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
42 CC             = $(CROSS)gcc
43 AR             = $(CROSS)ar
44 AS             = $(CROSS)as
45 LD             = $(CROSS)ld
46 NM             = $(CROSS)nm
47 STRIP          = $(CROSS)strip
48 CPP            = $(CC) -E
49 # MAKEFILES      = $(top_builddir)/.config
50 RM             = rm
51 RM_F           = $(RM) -f
52 LN             = ln
53 LN_S           = $(LN) -s
54 MKDIR          = mkdir
55 MKDIR_P        = $(MKDIR) -p
56 MV             = mv
57 CP             = cp
58
59
60 # What OS are you compiling busybox for?  This allows you to include
61 # OS specific things, syscall overrides, etc.
62 TARGET_OS=linux
63
64 # Select the compiler needed to build binaries for your development system
65 HOSTCC    = gcc
66 HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
67
68 # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
69 LC_ALL:= C
70
71 # If you want to add some simple compiler switches (like -march=i686),
72 # especially from the command line, use this instead of CFLAGS directly.
73 # For optimization overrides, it's better still to set OPTIMIZATION.
74 CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
75
76 # To compile vs some other alternative libc, you may need to use/adjust
77 # the following lines to meet your needs...
78 #
79 # If you are using Red Hat 6.x with the compatible RPMs (for developing under
80 # Red Hat 5.x and glibc 2.0) uncomment the following.  Be sure to read about
81 # using the compatible RPMs (compat-*) at http://www.redhat.com !
82 #LIBCDIR:=/usr/i386-glibc20-linux
83 #
84 # For other libraries, you are on your own.  But these may (or may not) help...
85 #LDFLAGS+=-nostdlib
86 #LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
87 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
88 #GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
89
90 WARNINGS=-Wall -Wstrict-prototypes -Wshadow
91 CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir)
92 ARFLAGS=cru
93
94 #--------------------------------------------------------
95 export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
96 ifeq ($(strip $(TARGET_ARCH)),)
97 TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
98                 -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/' \
105                 -e 's/mips-.*/mips/' \
106                 -e 's/mipsel-.*/mipsel/' \
107                 -e 's/cris.*/cris/' \
108                 )
109 endif
110
111 # Pull in the user's busybox configuration
112 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
113 -include $(top_builddir)/.config
114 endif
115
116 # A nifty macro to make testing gcc features easier
117 check_gcc=$(shell \
118         if [ "$(1)" != "" ]; then \
119                 if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
120                 then echo "$(1)"; else echo "$(2)"; fi \
121         fi)
122
123 # Setup some shortcuts so that silent mode is silent like it should be
124 ifeq ($(subst s,,$(MAKEFLAGS)),$(MAKEFLAGS))
125 export MAKE_IS_SILENT=n
126 SECHO=@echo
127 else
128 export MAKE_IS_SILENT=y
129 SECHO=-@false
130 endif
131
132 #--------------------------------------------------------
133 # Arch specific compiler optimization stuff should go here.
134 # Unless you want to override the defaults, do not set anything
135 # for OPTIMIZATION...
136
137 # use '-Os' optimization if available, else use -O2
138 OPTIMIZATION:=$(call check_gcc,-Os,-O2)
139
140 # Some nice architecture specific optimizations
141 ifeq ($(strip $(TARGET_ARCH)),arm)
142         OPTIMIZATION+=-fstrict-aliasing
143 endif
144 ifeq ($(strip $(TARGET_ARCH)),i386)
145         OPTIMIZATION+=$(call check_gcc,-march=i386,)
146         OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
147         OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\
148                 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
149 endif
150 OPTIMIZATIONS:=$(OPTIMIZATION) -fomit-frame-pointer
151
152 #
153 #--------------------------------------------------------
154 # If you're going to do a lot of builds with a non-vanilla configuration,
155 # it makes sense to adjust parameters above, so you can type "make"
156 # by itself, instead of following it by the same half-dozen overrides
157 # every time.  The stuff below, on the other hand, is probably less
158 # prone to casual user adjustment.
159 #
160
161 ifeq ($(strip $(CONFIG_LFS)),y)
162     # For large file summit support
163     CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
164 endif
165 ifeq ($(strip $(CONFIG_DMALLOC)),y)
166     # For testing mem leaks with dmalloc
167     CFLAGS+=-DDMALLOC
168     LIBRARIES:=-ldmalloc
169 else
170     ifeq ($(strip $(CONFIG_EFENCE)),y)
171         LIBRARIES:=-lefence
172     endif
173 endif
174 ifeq ($(strip $(CONFIG_DEBUG)),y)
175     CFLAGS  +=$(WARNINGS) -g -D_GNU_SOURCE
176     LDFLAGS +=-Wl,-warn-common
177     STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging
178 else
179     CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG
180     LDFLAGS += -Wl,-warn-common
181     STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
182 endif
183 ifeq ($(strip $(CONFIG_STATIC)),y)
184     LDFLAGS += --static
185 endif
186
187 ifeq ($(strip $(CONFIG_SELINUX)),y)
188     LIBRARIES += -lselinux
189 endif
190
191 ifeq ($(strip $(PREFIX)),)
192     PREFIX:=`pwd`/_install
193 endif
194
195 # Additional complications due to support for pristine source dir.
196 # Include files in the build directory should take precedence over
197 # the copy in top_srcdir, both during the compilation phase and the
198 # shell script that finds the list of object files.
199 # Work in progress by <ldoolitt@recycle.lbl.gov>.
200
201
202 OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
203 CFLAGS    += $(CROSS_CFLAGS)
204 ifdef BB_INIT_SCRIPT
205     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
206 endif
207
208 # Put user-supplied flags at the end, where they
209 # have a chance of winning.
210 CFLAGS += $(CFLAGS_EXTRA)
211
212 .PHONY: dummy