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 | # |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3 | # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 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 Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 18 | # |
| 19 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 20 | #-------------------------------------------------------- |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 21 | PROG := busybox |
Eric Andersen | 90d3317 | 2004-10-08 10:52:33 +0000 | [diff] [blame] | 22 | VERSION := 1.00 |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 23 | BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z") |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 24 | |
| 25 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 26 | #-------------------------------------------------------- |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 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 |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 31 | #-------------------------------------------------------- |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 32 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 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 |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 37 | CROSS =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX))) |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 38 | CC = $(CROSS)gcc |
| 39 | AR = $(CROSS)ar |
| 40 | AS = $(CROSS)as |
| 41 | LD = $(CROSS)ld |
| 42 | NM = $(CROSS)nm |
| 43 | STRIP = $(CROSS)strip |
| 44 | CPP = $(CC) -E |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 45 | # MAKEFILES = $(top_builddir)/.config |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 46 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 47 | # What OS are you compiling busybox for? This allows you to include |
| 48 | # OS specific things, syscall overrides, etc. |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 49 | TARGET_OS=linux |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 50 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 51 | # Select the compiler needed to build binaries for your development system |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 52 | HOSTCC = gcc |
Robert Griebl | 53f133a | 2002-12-16 21:55:39 +0000 | [diff] [blame] | 53 | HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 54 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 55 | # Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc. |
Eric Andersen | 85d9d80 | 2003-01-14 09:12:39 +0000 | [diff] [blame] | 56 | LC_ALL:= C |
| 57 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 58 | # If you want to add some simple compiler switches (like -march=i686), |
| 59 | # especially from the command line, use this instead of CFLAGS directly. |
| 60 | # For optimization overrides, it's better still to set OPTIMIZATION. |
| 61 | CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS))) |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 62 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 63 | # If you have a "pristine" source directory, point BB_SRC_DIR to it. |
| 64 | # Experimental and incomplete; tell the mailing list |
| 65 | # <busybox@busybox.net> if you do or don't like it so far. |
Robert Griebl | 53f133a | 2002-12-16 21:55:39 +0000 | [diff] [blame] | 66 | BB_SRC_DIR= |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 67 | |
| 68 | # To compile vs some other alternative libc, you may need to use/adjust |
| 69 | # the following lines to meet your needs... |
| 70 | # |
| 71 | # If you are using Red Hat 6.x with the compatible RPMs (for developing under |
| 72 | # Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about |
| 73 | # using the compatible RPMs (compat-*) at http://www.redhat.com ! |
| 74 | #LIBCDIR:=/usr/i386-glibc20-linux |
| 75 | # |
Eric Andersen | 0a14c9f | 2003-07-22 08:56:01 +0000 | [diff] [blame] | 76 | # 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] | 77 | #LDFLAGS+=-nostdlib |
| 78 | #LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc |
| 79 | #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) |
| 80 | #GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") |
| 81 | |
Robert Griebl | 53f133a | 2002-12-16 21:55:39 +0000 | [diff] [blame] | 82 | WARNINGS=-Wall -Wstrict-prototypes -Wshadow |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 83 | CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir) |
Mike Frysinger | 4d00896 | 2005-07-27 01:09:24 +0000 | [diff] [blame] | 84 | ARFLAGS=cru |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 85 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 86 | #-------------------------------------------------------- |
| 87 | export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP |
Eric Andersen | 5912acb | 2003-11-05 11:34:26 +0000 | [diff] [blame] | 88 | ifeq ($(strip $(TARGET_ARCH)),) |
Rob Landley | 088ee41 | 2005-07-28 19:38:52 +0000 | [diff] [blame^] | 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 | |
Glenn L McGrath | 3bff666 | 2003-08-29 12:23:09 +0000 | [diff] [blame] | 103 | # Pull in the user's busybox configuration |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 104 | ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 105 | -include $(top_builddir)/.config |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 106 | endif |
| 107 | |
Eric Andersen | 1b6eb9b | 2002-10-30 06:55:37 +0000 | [diff] [blame] | 108 | # A nifty macro to make testing gcc features easier |
| 109 | check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \ |
| 110 | then echo "$(1)"; else echo "$(2)"; fi) |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 111 | |
| 112 | #-------------------------------------------------------- |
| 113 | # Arch specific compiler optimization stuff should go here. |
| 114 | # Unless you want to override the defaults, do not set anything |
| 115 | # for OPTIMIZATION... |
| 116 | |
| 117 | # use '-Os' optimization if available, else use -O2 |
Rob Landley | 088ee41 | 2005-07-28 19:38:52 +0000 | [diff] [blame^] | 118 | OPTIMIZATION:=${call check_gcc,-Os,-O2} |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 119 | |
| 120 | # Some nice architecture specific optimizations |
| 121 | ifeq ($(strip $(TARGET_ARCH)),arm) |
| 122 | OPTIMIZATION+=-fstrict-aliasing |
| 123 | endif |
| 124 | ifeq ($(strip $(TARGET_ARCH)),i386) |
Eric Andersen | 0a14c9f | 2003-07-22 08:56:01 +0000 | [diff] [blame] | 125 | OPTIMIZATION+=$(call check_gcc,-march=i386,) |
Eric Andersen | 1b6eb9b | 2002-10-30 06:55:37 +0000 | [diff] [blame] | 126 | OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,) |
| 127 | OPTIMIZATION+=$(call check_gcc,-falign-functions=0 -falign-jumps=0 -falign-loops=0,\ |
| 128 | -malign-functions=0 -malign-jumps=0 -malign-loops=0) |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 129 | endif |
Robert Griebl | 53f133a | 2002-12-16 21:55:39 +0000 | [diff] [blame] | 130 | OPTIMIZATIONS=$(OPTIMIZATION) -fomit-frame-pointer |
Eric Andersen | 5b0f9e4 | 2002-06-23 04:50:49 +0000 | [diff] [blame] | 131 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 132 | # |
| 133 | #-------------------------------------------------------- |
| 134 | # If you're going to do a lot of builds with a non-vanilla configuration, |
| 135 | # it makes sense to adjust parameters above, so you can type "make" |
| 136 | # by itself, instead of following it by the same half-dozen overrides |
| 137 | # every time. The stuff below, on the other hand, is probably less |
| 138 | # prone to casual user adjustment. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 139 | # |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 140 | |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 141 | ifeq ($(strip $(CONFIG_LFS)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 142 | # For large file summit support |
Eric Andersen | ecfa290 | 2002-09-22 12:09:44 +0000 | [diff] [blame] | 143 | CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 144 | endif |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 145 | ifeq ($(strip $(CONFIG_DMALLOC)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 146 | # For testing mem leaks with dmalloc |
| 147 | CFLAGS+=-DDMALLOC |
| 148 | LIBRARIES:=-ldmalloc |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 149 | else |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 150 | ifeq ($(strip $(CONFIG_EFENCE)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 151 | LIBRARIES:=-lefence |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 152 | endif |
| 153 | endif |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 154 | ifeq ($(strip $(CONFIG_DEBUG)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 155 | CFLAGS +=$(WARNINGS) -g -D_GNU_SOURCE |
| 156 | LDFLAGS +=-Wl,-warn-common |
| 157 | STRIPCMD:=/bin/true -Not_stripping_since_we_are_debugging |
| 158 | else |
Eric Andersen | bae7c1a | 2003-03-07 17:27:51 +0000 | [diff] [blame] | 159 | CFLAGS+=$(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 160 | LDFLAGS += -s -Wl,-warn-common |
| 161 | STRIPCMD:=$(STRIP) --remove-section=.note --remove-section=.comment |
| 162 | endif |
Eric Andersen | e527207 | 2003-07-22 22:15:21 +0000 | [diff] [blame] | 163 | ifeq ($(strip $(CONFIG_STATIC)),y) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 164 | LDFLAGS += --static |
| 165 | endif |
| 166 | |
Eric Andersen | 12f834c | 2002-10-26 10:17:24 +0000 | [diff] [blame] | 167 | ifeq ($(strip $(PREFIX)),) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 168 | PREFIX:=`pwd`/_install |
| 169 | endif |
| 170 | |
| 171 | # Additional complications due to support for pristine source dir. |
| 172 | # Include files in the build directory should take precedence over |
| 173 | # the copy in BB_SRC_DIR, both during the compilation phase and the |
| 174 | # shell script that finds the list of object files. |
| 175 | # Work in progress by <ldoolitt@recycle.lbl.gov>. |
| 176 | # |
| 177 | ifneq ($(strip $(BB_SRC_DIR)),) |
| 178 | VPATH:=$(BB_SRC_DIR) |
| 179 | endif |
| 180 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 181 | OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o |
| 182 | CFLAGS += $(CROSS_CFLAGS) |
| 183 | ifdef BB_INIT_SCRIPT |
| 184 | CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"' |
| 185 | endif |
| 186 | |
| 187 | # Put user-supplied flags at the end, where they |
| 188 | # have a chance of winning. |
| 189 | CFLAGS += $(CFLAGS_EXTRA) |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 190 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 191 | .PHONY: dummy |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 192 | |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 193 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 194 | .EXPORT_ALL_VARIABLES: |
Eric Andersen | 4bcdd72 | 2001-10-24 05:26:42 +0000 | [diff] [blame] | 195 | |