Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 1 | # Rules.make for busybox |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 2 | # |
Mike Frysinger | 5a5d0fa | 2005-11-29 02:53:52 +0000 | [diff] [blame] | 3 | # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 4 | # |
Mike Frysinger | 5a5d0fa | 2005-11-29 02:53:52 +0000 | [diff] [blame] | 5 | # Licensed under GPLv2, see the file LICENSE in this tarball for details. |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 6 | # |
| 7 | |
Mike Frysinger | 004ad11 | 2005-11-29 02:52:25 +0000 | [diff] [blame] | 8 | # Pull in the user's busybox configuration |
| 9 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) |
| 10 | -include $(top_builddir)/.config |
| 11 | endif |
| 12 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 13 | #-------------------------------------------------------- |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 14 | PROG := busybox |
Bernhard Reutner-Fischer | 8c7a7e6 | 2005-10-13 10:40:18 +0000 | [diff] [blame] | 15 | MAJOR_VERSION :=1 |
| 16 | MINOR_VERSION :=1 |
Bernhard Reutner-Fischer | b565a12 | 2006-01-19 09:22:39 +0000 | [diff] [blame] | 17 | SUBLEVEL_VERSION:=1 |
| 18 | EXTRAVERSION :=-pre0 |
Bernhard Reutner-Fischer | 8c7a7e6 | 2005-10-13 10:40:18 +0000 | [diff] [blame] | 19 | VERSION :=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)$(EXTRAVERSION) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 20 | BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z") |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 21 | |
| 22 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 23 | #-------------------------------------------------------- |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 24 | # With a modern GNU make(1) (highly recommended, that's what all the |
| 25 | # developers use), all of the following configuration values can be |
| 26 | # overridden at the command line. For example: |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 27 | # make CROSS=powerpc-linux- top_srcdir="$HOME/busybox" PREFIX=/mnt/app |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 28 | #-------------------------------------------------------- |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 29 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 30 | # If you are running a cross compiler, you will want to set 'CROSS' |
| 31 | # to something more interesting... Target architecture is determined |
| 32 | # by asking the CC compiler what arch it compiles things for, so unless |
| 33 | # your compiler is broken, you should not need to specify TARGET_ARCH |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 34 | CROSS =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX))) |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 35 | CC = $(CROSS)gcc |
| 36 | AR = $(CROSS)ar |
| 37 | AS = $(CROSS)as |
| 38 | LD = $(CROSS)ld |
| 39 | NM = $(CROSS)nm |
| 40 | STRIP = $(CROSS)strip |
| 41 | CPP = $(CC) -E |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 42 | # MAKEFILES = $(top_builddir)/.config |
Bernhard Reutner-Fischer | 8c7a7e6 | 2005-10-13 10:40:18 +0000 | [diff] [blame] | 43 | RM = rm |
| 44 | RM_F = $(RM) -f |
| 45 | LN = ln |
| 46 | LN_S = $(LN) -s |
| 47 | MKDIR = mkdir |
| 48 | MKDIR_P = $(MKDIR) -p |
| 49 | MV = mv |
| 50 | CP = cp |
| 51 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 52 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 53 | # What OS are you compiling busybox for? This allows you to include |
| 54 | # OS specific things, syscall overrides, etc. |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 55 | TARGET_OS=linux |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 56 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 57 | # Select the compiler needed to build binaries for your development system |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 58 | HOSTCC = gcc |
Robert Griebl | 53f133a | 2002-12-16 21:55:39 +0000 | [diff] [blame] | 59 | HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 60 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 61 | # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. |
Eric Andersen | 85d9d80 | 2003-01-14 09:12:39 +0000 | [diff] [blame] | 62 | LC_ALL:= C |
| 63 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 64 | # If you want to add some simple compiler switches (like -march=i686), |
| 65 | # especially from the command line, use this instead of CFLAGS directly. |
| 66 | # For optimization overrides, it's better still to set OPTIMIZATION. |
| 67 | CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS))) |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 68 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 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 Andersen | 0a14c9f | 2003-07-22 08:56:01 +0000 | [diff] [blame] | 77 | # For other libraries, you are on your own. But these may (or may not) help... |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 78 | #LDFLAGS+=-nostdlib |
| 79 | #LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc |
Rob Landley | 4a070d1 | 2005-12-01 17:01:43 +0000 | [diff] [blame] | 80 | #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) -funsigned-char |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 81 | #GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") |
| 82 | |
Robert Griebl | 53f133a | 2002-12-16 21:55:39 +0000 | [diff] [blame] | 83 | WARNINGS=-Wall -Wstrict-prototypes -Wshadow |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 84 | CFLAGS+=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) |
| 85 | |
Mike Frysinger | 4d00896 | 2005-07-27 01:09:24 +0000 | [diff] [blame] | 86 | ARFLAGS=cru |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 87 | |
Bernhard Reutner-Fischer | e0b8778 | 2005-12-13 11:52:46 +0000 | [diff] [blame] | 88 | |
| 89 | # gcc centric. Perhaps fiddle with findstring gcc,$(CC) for the rest |
| 90 | # get the CC MAJOR/MINOR version |
| 91 | CC_MAJOR:=$(shell printf "%02d" $(shell echo __GNUC__ | $(CC) -E -xc - | tail -n 1)) |
| 92 | CC_MINOR:=$(shell printf "%02d" $(shell echo __GNUC_MINOR__ | $(CC) -E -xc - | tail -n 1)) |
| 93 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 94 | #-------------------------------------------------------- |
Bernhard Reutner-Fischer | 1c943eb | 2005-09-26 16:01:43 +0000 | [diff] [blame] | 95 | export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 96 | ifeq ($(strip $(TARGET_ARCH)),) |
Rob Landley | 088ee41 | 2005-07-28 19:38:52 +0000 | [diff] [blame] | 97 | TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \ |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 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/' \ |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 105 | -e 's/mips-.*/mips/' \ |
| 106 | -e 's/mipsel-.*/mipsel/' \ |
| 107 | -e 's/cris.*/cris/' \ |
| 108 | ) |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 109 | endif |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 110 | |
Eric Andersen | 1b6eb9b | 2002-10-30 06:55:37 +0000 | [diff] [blame] | 111 | # A nifty macro to make testing gcc features easier |
Mike Frysinger | b3b756d | 2005-07-28 22:26:25 +0000 | [diff] [blame] | 112 | check_gcc=$(shell \ |
| 113 | if [ "$(1)" != "" ]; then \ |
| 114 | if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \ |
| 115 | then echo "$(1)"; else echo "$(2)"; fi \ |
| 116 | fi) |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 117 | |
Bernhard Reutner-Fischer | 08a1b50 | 2006-01-27 15:45:56 +0000 | [diff] [blame] | 118 | # A not very robust macro to check for available ld flags |
| 119 | check_ld=$(shell \ |
Bernhard Reutner-Fischer | 08a1b50 | 2006-01-27 15:45:56 +0000 | [diff] [blame] | 120 | if [ "x$(1)" != "x" ]; then \ |
| 121 | $(LD) --help | grep -q \\$(1) && echo "-Wl,$(1)$(2)" ; \ |
| 122 | fi) |
| 123 | |
| 124 | # A not very robust macro to check for available as flags |
| 125 | check_as=$(shell \ |
| 126 | if [ "x$(1)" != "x" ]; then \ |
| 127 | $(AS) --help | grep -q "\\$(1)" && echo "-Wa,$(1)$(2)" ; \ |
| 128 | fi) |
| 129 | |
| 130 | |
Mike Frysinger | c99e2c5 | 2005-07-28 22:14:35 +0000 | [diff] [blame] | 131 | # Setup some shortcuts so that silent mode is silent like it should be |
| 132 | ifeq ($(subst s,,$(MAKEFLAGS)),$(MAKEFLAGS)) |
| 133 | export MAKE_IS_SILENT=n |
| 134 | SECHO=@echo |
| 135 | else |
| 136 | export MAKE_IS_SILENT=y |
| 137 | SECHO=-@false |
| 138 | endif |
| 139 | |
Rob Landley | dd53c24 | 2006-01-30 01:27:08 +0000 | [diff] [blame^] | 140 | CFLAGS+=$(call check_gcc,-funsigned-char,) |
Bernhard Reutner-Fischer | e0b8778 | 2005-12-13 11:52:46 +0000 | [diff] [blame] | 141 | |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 142 | CFLAGS+=$(call check_gcc,-mmax-stack-frame=256,) |
| 143 | |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 144 | #-------------------------------------------------------- |
| 145 | # Arch specific compiler optimization stuff should go here. |
| 146 | # Unless you want to override the defaults, do not set anything |
| 147 | # for OPTIMIZATION... |
| 148 | |
| 149 | # use '-Os' optimization if available, else use -O2 |
Mike Frysinger | b3b756d | 2005-07-28 22:26:25 +0000 | [diff] [blame] | 150 | OPTIMIZATION:=$(call check_gcc,-Os,-O2) |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 151 | |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 152 | ifeq ($(CONFIG_BUILD_AT_ONCE),y) |
| 153 | # gcc 2.95 exits with 0 for "unrecognized option" |
| 154 | ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0) |
Bernhard Reutner-Fischer | f64ff68 | 2006-01-24 18:25:51 +0000 | [diff] [blame] | 155 | OPTIMIZATION+=$(call check_gcc,--combine,) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 156 | endif |
| 157 | OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,) |
| 158 | PROG_CFLAGS+=$(call check_gcc,-fwhole-program,) |
| 159 | endif # CONFIG_BUILD_AT_ONCE |
| 160 | |
Bernhard Reutner-Fischer | 08a1b50 | 2006-01-27 15:45:56 +0000 | [diff] [blame] | 161 | LIB_LDFLAGS:=$(call check_ld,--enable-new-dtags,) |
| 162 | #LIB_LDFLAGS+=$(call check_ld,--reduce-memory-overheads,) |
| 163 | #LIB_LDFLAGS+=$(call check_ld,--as-needed,) |
| 164 | #LIB_LDFLAGS+=$(call check_ld,--warn-shared-textrel,) |
| 165 | |
| 166 | |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 167 | # Some nice architecture specific optimizations |
| 168 | ifeq ($(strip $(TARGET_ARCH)),arm) |
| 169 | OPTIMIZATION+=-fstrict-aliasing |
| 170 | endif |
| 171 | ifeq ($(strip $(TARGET_ARCH)),i386) |
Eric Andersen | 0a14c9f | 2003-07-22 08:56:01 +0000 | [diff] [blame] | 172 | OPTIMIZATION+=$(call check_gcc,-march=i386,) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 173 | # gcc-4.0 and older seem to suffer from these |
| 174 | ifneq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0) |
Eric Andersen | 1b6eb9b | 2002-10-30 06:55:37 +0000 | [diff] [blame] | 175 | OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,) |
| 176 | OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\ |
| 177 | -malign-functions=0 -malign-jumps=0 -malign-loops=0) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 178 | endif # gcc-4.0 and older |
| 179 | |
| 180 | # gcc-4.1 and beyond seem to benefit from these |
| 181 | ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0) |
| 182 | # turn off flags which hurt -Os |
| 183 | OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,) |
| 184 | OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,) |
| 185 | OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,) |
| 186 | |
| 187 | OPTIMIZATION+=$(call check_gcc,-fno-branch-count-reg,) |
| 188 | endif # gcc-4.1 and beyond |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 189 | endif |
Bernhard Reutner-Fischer | 08a1b50 | 2006-01-27 15:45:56 +0000 | [diff] [blame] | 190 | OPTIMIZATIONS:=$(OPTIMIZATION) $(call check_gcc,-fomit-frame-pointer,) |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 191 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 192 | # |
| 193 | #-------------------------------------------------------- |
| 194 | # If you're going to do a lot of builds with a non-vanilla configuration, |
| 195 | # it makes sense to adjust parameters above, so you can type "make" |
| 196 | # by itself, instead of following it by the same half-dozen overrides |
| 197 | # every time. The stuff below, on the other hand, is probably less |
| 198 | # prone to casual user adjustment. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 199 | # |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 200 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 201 | ifeq ($(strip $(CONFIG_LFS)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 202 | # For large file summit support |
Eric Andersen | ecfa290 | 2002-09-22 12:09:44 +0000 | [diff] [blame] | 203 | CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 204 | endif |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 205 | ifeq ($(strip $(CONFIG_DMALLOC)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 206 | # For testing mem leaks with dmalloc |
| 207 | CFLAGS+=-DDMALLOC |
| 208 | LIBRARIES:=-ldmalloc |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 209 | else |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 210 | ifeq ($(strip $(CONFIG_EFENCE)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 211 | LIBRARIES:=-lefence |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 212 | endif |
| 213 | endif |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 214 | ifeq ($(strip $(CONFIG_DEBUG)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 215 | CFLAGS +=$(WARNINGS) -g -D_GNU_SOURCE |
Bernhard Reutner-Fischer | 08a1b50 | 2006-01-27 15:45:56 +0000 | [diff] [blame] | 216 | LDFLAGS += $(call check_ld,-warn-common,) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 217 | STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging |
| 218 | else |
Eric Andersen | bae7c1a | 2003-03-07 17:27:51 +0000 | [diff] [blame] | 219 | CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG |
Bernhard Reutner-Fischer | 08a1b50 | 2006-01-27 15:45:56 +0000 | [diff] [blame] | 220 | LDFLAGS += $(call check_ld,-warn-common,) |
| 221 | LDFLAGS += $(call check_ld,--sort-common,) |
Mike Frysinger | 1c1655a | 2005-07-31 22:11:33 +0000 | [diff] [blame] | 222 | STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 223 | endif |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 224 | ifeq ($(strip $(CONFIG_STATIC)),y) |
Bernhard Reutner-Fischer | 08a1b50 | 2006-01-27 15:45:56 +0000 | [diff] [blame] | 225 | LDFLAGS += $(call check_ld,--static,) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 226 | #else |
| 227 | # LIBRARIES += -ldl |
| 228 | endif |
| 229 | |
| 230 | ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y) |
Bernhard Reutner-Fischer | 08a1b50 | 2006-01-27 15:45:56 +0000 | [diff] [blame] | 231 | CFLAGS_PIC:= $(call check_gcc,-fPIC,) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 232 | endif |
| 233 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 234 | ifeq ($(strip $(CONFIG_SELINUX)),y) |
| 235 | LIBRARIES += -lselinux |
| 236 | endif |
| 237 | |
Eric Andersen | 12f834c | 2002-10-26 10:17:24 +0000 | [diff] [blame] | 238 | ifeq ($(strip $(PREFIX)),) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 239 | PREFIX:=`pwd`/_install |
| 240 | endif |
| 241 | |
| 242 | # Additional complications due to support for pristine source dir. |
| 243 | # Include files in the build directory should take precedence over |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 244 | # the copy in top_srcdir, both during the compilation phase and the |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 245 | # shell script that finds the list of object files. |
| 246 | # Work in progress by <ldoolitt@recycle.lbl.gov>. |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 247 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 248 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 249 | OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o |
| 250 | CFLAGS += $(CROSS_CFLAGS) |
| 251 | ifdef BB_INIT_SCRIPT |
| 252 | CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"' |
| 253 | endif |
| 254 | |
| 255 | # Put user-supplied flags at the end, where they |
| 256 | # have a chance of winning. |
| 257 | CFLAGS += $(CFLAGS_EXTRA) |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 258 | |
Rob Landley | e0c418e | 2005-12-15 07:25:54 +0000 | [diff] [blame] | 259 | #------------------------------------------------------------ |
| 260 | # Installation options |
| 261 | ifeq ($(strip $(CONFIG_INSTALL_APPLET_HARDLINKS)),y) |
| 262 | INSTALL_OPTS=--hardlinks |
| 263 | endif |
| 264 | ifeq ($(strip $(CONFIG_INSTALL_APPLET_SYMLINKS)),y) |
| 265 | INSTALL_OPTS=--symlinks |
| 266 | endif |
| 267 | ifeq ($(strip $(CONFIG_INSTALL_APPLET_DONT)),y) |
| 268 | INSTALL_OPTS= |
| 269 | endif |
| 270 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 271 | .PHONY: dummy |