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 |
Bernhard Reutner-Fischer | 6018225 | 2006-03-29 22:22:37 +0000 | [diff] [blame] | 16 | MINOR_VERSION :=2 |
| 17 | SUBLEVEL_VERSION:=0 |
| 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 |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 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 |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 42 | SED ?= sed |
Bernhard Reutner-Fischer | 8c7a7e6 | 2005-10-13 10:40:18 +0000 | [diff] [blame] | 43 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 44 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 45 | # What OS are you compiling busybox for? This allows you to include |
| 46 | # OS specific things, syscall overrides, etc. |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 47 | TARGET_OS=linux |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 48 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 49 | # Select the compiler needed to build binaries for your development system |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 50 | HOSTCC = gcc |
Robert Griebl | 53f133a | 2002-12-16 21:55:39 +0000 | [diff] [blame] | 51 | HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 52 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 53 | # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. |
Eric Andersen | 85d9d80 | 2003-01-14 09:12:39 +0000 | [diff] [blame] | 54 | LC_ALL:= C |
| 55 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 56 | # If you want to add some simple compiler switches (like -march=i686), |
| 57 | # especially from the command line, use this instead of CFLAGS directly. |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 58 | # For optimization overrides, it's better still to set OPTIMIZATION. |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 59 | CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS))) |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 60 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 61 | # To compile vs some other alternative libc, you may need to use/adjust |
| 62 | # the following lines to meet your needs... |
| 63 | # |
| 64 | # If you are using Red Hat 6.x with the compatible RPMs (for developing under |
| 65 | # Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about |
| 66 | # using the compatible RPMs (compat-*) at http://www.redhat.com ! |
| 67 | #LIBCDIR:=/usr/i386-glibc20-linux |
| 68 | # |
Eric Andersen | 0a14c9f | 2003-07-22 08:56:01 +0000 | [diff] [blame] | 69 | # 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] | 70 | #LDFLAGS+=-nostdlib |
| 71 | #LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc |
Rob Landley | 4a070d1 | 2005-12-01 17:01:43 +0000 | [diff] [blame] | 72 | #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) -funsigned-char |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 73 | #GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") |
| 74 | |
Robert Griebl | 53f133a | 2002-12-16 21:55:39 +0000 | [diff] [blame] | 75 | WARNINGS=-Wall -Wstrict-prototypes -Wshadow |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 76 | CFLAGS+=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 77 | |
Bernhard Reutner-Fischer | 07a79e7 | 2006-03-09 09:03:37 +0000 | [diff] [blame] | 78 | ARFLAGS=cru |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 79 | |
Bernhard Reutner-Fischer | e0b8778 | 2005-12-13 11:52:46 +0000 | [diff] [blame] | 80 | |
| 81 | # gcc centric. Perhaps fiddle with findstring gcc,$(CC) for the rest |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 82 | # get the CC MAJOR/MINOR version |
Bernhard Reutner-Fischer | e0b8778 | 2005-12-13 11:52:46 +0000 | [diff] [blame] | 83 | CC_MAJOR:=$(shell printf "%02d" $(shell echo __GNUC__ | $(CC) -E -xc - | tail -n 1)) |
| 84 | CC_MINOR:=$(shell printf "%02d" $(shell echo __GNUC_MINOR__ | $(CC) -E -xc - | tail -n 1)) |
| 85 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 86 | #-------------------------------------------------------- |
Bernhard Reutner-Fischer | 1c943eb | 2005-09-26 16:01:43 +0000 | [diff] [blame] | 87 | export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 88 | ifeq ($(strip $(TARGET_ARCH)),) |
| 89 | TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \ |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 90 | -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 Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 97 | -e 's/mips-.*/mips/' \ |
| 98 | -e 's/mipsel-.*/mipsel/' \ |
| 99 | -e 's/cris.*/cris/' \ |
| 100 | ) |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 101 | endif |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 102 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 103 | # A nifty macro to make testing gcc features easier |
| 104 | check_gcc=$(shell \ |
| 105 | if [ "$(1)" != "" ]; then \ |
| 106 | if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \ |
| 107 | then echo "$(1)"; else echo "$(2)"; fi \ |
| 108 | fi) |
| 109 | |
| 110 | # A not very robust macro to check for available ld flags |
| 111 | check_ld=$(shell \ |
| 112 | if [ "x$(1)" != "x" ]; then \ |
| 113 | $(LD) --help | grep -q "\$(1)" && echo "-Wl,$(1)" ; \ |
| 114 | fi) |
| 115 | |
| 116 | CFLAGS+=$(call check_gcc,-funsigned-char,) |
| 117 | |
| 118 | CFLAGS+=$(call check_gcc,-mmax-stack-frame=256,) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 119 | |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 120 | #-------------------------------------------------------- |
| 121 | # Arch specific compiler optimization stuff should go here. |
| 122 | # Unless you want to override the defaults, do not set anything |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 123 | # for OPTIMIZATION... |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 124 | |
| 125 | # use '-Os' optimization if available, else use -O2 |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 126 | OPTIMIZATION:=$(call check_gcc,-Os,-O2) |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 127 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 128 | ifeq ($(CONFIG_BUILD_AT_ONCE),y) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 129 | # gcc 2.95 exits with 0 for "unrecognized option" |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 130 | ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0) |
| 131 | CFLAGS_COMBINE:=$(call check_gcc,--combine,) |
| 132 | endif |
| 133 | OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,) |
Bernhard Reutner-Fischer | d1ba916 | 2006-03-21 11:06:43 +0000 | [diff] [blame] | 134 | # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25795 |
| 135 | #PROG_CFLAGS+=$(call check_gcc,-fwhole-program,) |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 136 | endif # CONFIG_BUILD_AT_ONCE |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 137 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 138 | LIB_LDFLAGS:=$(call check_ld,--enable-new-dtags,) |
| 139 | #LIB_LDFLAGS+=$(call check_ld,--reduce-memory-overheads,) |
| 140 | #LIB_LDFLAGS+=$(call check_ld,--as-needed,) |
| 141 | #LIB_LDFLAGS+=$(call check_ld,--warn-shared-textrel,) |
Bernhard Reutner-Fischer | 08a1b50 | 2006-01-27 15:45:56 +0000 | [diff] [blame] | 142 | |
| 143 | |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 144 | # Some nice architecture specific optimizations |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 145 | ifeq ($(strip $(TARGET_ARCH)),arm) |
| 146 | OPTIMIZATION+=-fstrict-aliasing |
| 147 | endif |
| 148 | ifeq ($(strip $(TARGET_ARCH)),i386) |
| 149 | OPTIMIZATION+=$(call check_gcc,-march=i386,) |
Bernhard Reutner-Fischer | d9969ea | 2006-03-03 20:31:33 +0000 | [diff] [blame] | 150 | # gcc-4.0 and older seem to benefit from these |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 151 | #ifneq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0) |
| 152 | OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,) |
| 153 | OPTIMIZATION+=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-loops=1,\ |
| 154 | -malign-functions=0 -malign-jumps=0 -malign-loops=0) |
| 155 | #endif # gcc-4.0 and older |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 156 | |
| 157 | # gcc-4.1 and beyond seem to benefit from these |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 158 | ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0) |
| 159 | # turn off flags which hurt -Os |
| 160 | OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,) |
| 161 | OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,) |
| 162 | OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 163 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 164 | OPTIMIZATION+=$(call check_gcc,-fno-branch-count-reg,) |
| 165 | endif # gcc-4.1 and beyond |
| 166 | endif |
| 167 | OPTIMIZATIONS:=$(OPTIMIZATION) $(call check_gcc,-fomit-frame-pointer,) |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 168 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 169 | # |
| 170 | #-------------------------------------------------------- |
| 171 | # If you're going to do a lot of builds with a non-vanilla configuration, |
| 172 | # it makes sense to adjust parameters above, so you can type "make" |
| 173 | # by itself, instead of following it by the same half-dozen overrides |
| 174 | # every time. The stuff below, on the other hand, is probably less |
| 175 | # prone to casual user adjustment. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 176 | # |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 177 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 178 | ifeq ($(strip $(CONFIG_LFS)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 179 | # For large file summit support |
Eric Andersen | ecfa290 | 2002-09-22 12:09:44 +0000 | [diff] [blame] | 180 | CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 181 | endif |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 182 | ifeq ($(strip $(CONFIG_DMALLOC)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 183 | # For testing mem leaks with dmalloc |
| 184 | CFLAGS+=-DDMALLOC |
| 185 | LIBRARIES:=-ldmalloc |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 186 | else |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 187 | ifeq ($(strip $(CONFIG_EFENCE)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 188 | LIBRARIES:=-lefence |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 189 | endif |
| 190 | endif |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 191 | ifeq ($(strip $(CONFIG_DEBUG)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 192 | CFLAGS +=$(WARNINGS) -g -D_GNU_SOURCE |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 193 | LDFLAGS += $(call check_ld,--warn-common,) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 194 | else |
Eric Andersen | bae7c1a | 2003-03-07 17:27:51 +0000 | [diff] [blame] | 195 | CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 196 | LDFLAGS += $(call check_ld,--warn-common,) |
| 197 | LDFLAGS += $(call check_ld,--sort-common,) |
Mike Frysinger | c70240c | 2006-03-10 23:20:48 +0000 | [diff] [blame] | 198 | endif |
Bernhard Reutner-Fischer | abaef65 | 2006-03-29 22:28:27 +0000 | [diff] [blame] | 199 | # warn a bit more verbosely for non-release versions |
| 200 | ifneq ($(EXTRAVERSION),) |
Bernhard Reutner-Fischer | 7f77810 | 2006-04-02 20:41:55 +0000 | [diff] [blame] | 201 | CFLAGS+=$(call check_gcc,-Wstrict-prototypes,) |
| 202 | CFLAGS+=$(call check_gcc,-Wmissing-prototypes,) |
| 203 | CFLAGS+=$(call check_gcc,-Wmissing-declarations,) |
Bernhard Reutner-Fischer | abaef65 | 2006-03-29 22:28:27 +0000 | [diff] [blame] | 204 | endif |
Rob Landley | ca8d0b0 | 2006-03-22 21:03:21 +0000 | [diff] [blame] | 205 | STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 206 | ifeq ($(strip $(CONFIG_STATIC)),y) |
| 207 | PROG_CFLAGS += $(call check_gcc,-static,) |
| 208 | endif |
| 209 | CFLAGS_SHARED += $(call check_gcc,-shared,) |
Bernhard Reutner-Fischer | 81b9496 | 2006-01-31 11:29:22 +0000 | [diff] [blame] | 210 | LIB_CFLAGS+=$(CFLAGS_SHARED) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 211 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 212 | ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y) |
| 213 | CFLAGS_PIC:= $(call check_gcc,-fPIC,) |
| 214 | LIB_CFLAGS+=$(CFLAGS_PIC) |
| 215 | endif |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 216 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 217 | |
| 218 | ifeq ($(strip $(CONFIG_SELINUX)),y) |
Rob Landley | dbd91af | 2006-03-28 19:40:15 +0000 | [diff] [blame] | 219 | LIBRARIES += -lselinux |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 220 | endif |
| 221 | |
Eric Andersen | 12f834c | 2002-10-26 10:17:24 +0000 | [diff] [blame] | 222 | ifeq ($(strip $(PREFIX)),) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 223 | PREFIX:=`pwd`/_install |
| 224 | endif |
| 225 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 226 | # Additional complications due to support for pristine source dir. |
| 227 | # Include files in the build directory should take precedence over |
| 228 | # the copy in top_srcdir, both during the compilation phase and the |
| 229 | # shell script that finds the list of object files. |
| 230 | # Work in progress by <ldoolitt@recycle.lbl.gov>. |
| 231 | |
| 232 | |
| 233 | OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 234 | CFLAGS += $(CROSS_CFLAGS) |
| 235 | ifdef BB_INIT_SCRIPT |
| 236 | CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"' |
| 237 | endif |
| 238 | |
| 239 | # Put user-supplied flags at the end, where they |
| 240 | # have a chance of winning. |
| 241 | CFLAGS += $(CFLAGS_EXTRA) |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 242 | |
Rob Landley | e0c418e | 2005-12-15 07:25:54 +0000 | [diff] [blame] | 243 | #------------------------------------------------------------ |
| 244 | # Installation options |
| 245 | ifeq ($(strip $(CONFIG_INSTALL_APPLET_HARDLINKS)),y) |
| 246 | INSTALL_OPTS=--hardlinks |
| 247 | endif |
| 248 | ifeq ($(strip $(CONFIG_INSTALL_APPLET_SYMLINKS)),y) |
| 249 | INSTALL_OPTS=--symlinks |
| 250 | endif |
| 251 | ifeq ($(strip $(CONFIG_INSTALL_APPLET_DONT)),y) |
| 252 | INSTALL_OPTS= |
| 253 | endif |
| 254 | |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 255 | #------------------------------------------------------------ |
| 256 | # Make the output nice and tight |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 257 | MAKEFLAGS += --no-print-directory |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 258 | export MAKE_IS_SILENT=n |
| 259 | ifneq ($(findstring s,$(MAKEFLAGS)),) |
| 260 | export MAKE_IS_SILENT=y |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 261 | SECHO := @-false |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 262 | DISP := sil |
| 263 | Q := @ |
| 264 | else |
| 265 | ifneq ($(V)$(VERBOSE),) |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 266 | SECHO := @-false |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 267 | DISP := ver |
| 268 | Q := |
| 269 | else |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 270 | SECHO := @echo |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 271 | DISP := pur |
| 272 | Q := @ |
| 273 | endif |
| 274 | endif |
| 275 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 276 | show_objs = $(subst $(top_builddir)/,,$(subst ../,,$@)) |
| 277 | pur_disp_compile.c = echo " "CC $(show_objs) |
| 278 | pur_disp_compile.h = echo " "HOSTCC $(show_objs) |
| 279 | pur_disp_strip = echo " "STRIP $(show_objs) |
| 280 | pur_disp_link = echo " "LINK $(show_objs) |
| 281 | pur_disp_ar = echo " "AR $(ARFLAGS) $(show_objs) |
| 282 | sil_disp_compile.c = true |
| 283 | sil_disp_compile.h = true |
| 284 | sil_disp_strip = true |
| 285 | sil_disp_link = true |
| 286 | sil_disp_ar = true |
| 287 | ver_disp_compile.c = echo $(cmd_compile.c) |
| 288 | ver_disp_compile.h = echo $(cmd_compile.h) |
| 289 | ver_disp_strip = echo $(cmd_strip) |
| 290 | ver_disp_link = echo $(cmd_link) |
| 291 | ver_disp_ar = echo $(cmd_ar) |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 292 | disp_compile.c = $($(DISP)_disp_compile.c) |
| 293 | disp_compile.h = $($(DISP)_disp_compile.h) |
| 294 | disp_strip = $($(DISP)_disp_strip) |
| 295 | disp_link = $($(DISP)_disp_link) |
| 296 | disp_ar = $($(DISP)_disp_ar) |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 297 | disp_gen = $(SECHO) " "GEN $@ ; true |
| 298 | disp_doc = $(SECHO) " "DOC $(subst docs/,,$@) ; true |
| 299 | cmd_compile.c = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $< |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 300 | cmd_compile.h = $(HOSTCC) $(HOSTCFLAGS) -c -o $@ $< |
| 301 | cmd_strip = $(STRIPCMD) $@ |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 302 | cmd_link = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS) |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 303 | cmd_ar = $(AR) $(ARFLAGS) $@ $^ |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 304 | compile.c = @$(disp_compile.c) ; $(cmd_compile.c) |
| 305 | compile.h = @$(disp_compile.h) ; $(cmd_compile.h) |
| 306 | do_strip = @$(disp_strip) ; $(cmd_strip) |
| 307 | do_link = @$(disp_link) ; $(cmd_link) |
| 308 | do_ar = @$(disp_ar) ; $(cmd_ar) |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 309 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 310 | .PHONY: dummy |