blob: 843bcce28fd31efbc27ef881b72d038fd71e6770 [file] [log] [blame]
Eric Andersen85208e22002-04-12 12:05:57 +00001# Rules.make for busybox
Eric Andersen4bcdd722001-10-24 05:26:42 +00002#
Mike Frysinger5a5d0fa2005-11-29 02:53:52 +00003# Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
Eric Andersen85208e22002-04-12 12:05:57 +00004#
Mike Frysinger5a5d0fa2005-11-29 02:53:52 +00005# Licensed under GPLv2, see the file LICENSE in this tarball for details.
Eric Andersen4bcdd722001-10-24 05:26:42 +00006#
7
Mike Frysinger004ad112005-11-29 02:52:25 +00008# Pull in the user's busybox configuration
9ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
10-include $(top_builddir)/.config
11endif
12
Eric Andersenc9f20d92002-12-05 08:41:41 +000013#--------------------------------------------------------
Eric Andersen85208e22002-04-12 12:05:57 +000014PROG := busybox
Bernhard Reutner-Fischer8c7a7e62005-10-13 10:40:18 +000015MAJOR_VERSION :=1
Bernhard Reutner-Fischer60182252006-03-29 22:22:37 +000016MINOR_VERSION :=2
17SUBLEVEL_VERSION:=0
18EXTRAVERSION :=-pre0
Bernhard Reutner-Fischer8c7a7e62005-10-13 10:40:18 +000019VERSION :=$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)$(EXTRAVERSION)
Eric Andersen85208e22002-04-12 12:05:57 +000020BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
Eric Andersen4bcdd722001-10-24 05:26:42 +000021
22
Eric Andersenc9f20d92002-12-05 08:41:41 +000023#--------------------------------------------------------
Eric Andersen85208e22002-04-12 12:05:57 +000024# 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-Fischer5c071bc2005-10-05 07:40:46 +000027# make CROSS=powerpc-linux- top_srcdir="$HOME/busybox" PREFIX=/mnt/app
Eric Andersenc9f20d92002-12-05 08:41:41 +000028#--------------------------------------------------------
Eric Andersen4bcdd722001-10-24 05:26:42 +000029
Eric Andersenc9f20d92002-12-05 08:41:41 +000030# 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-Fischerdf100942006-03-13 19:04:00 +000033# your compiler is broken, you should not need to specify TARGET_ARCH
Eric Andersen5912acb2003-11-05 11:34:26 +000034CROSS =$(subst ",, $(strip $(CROSS_COMPILER_PREFIX)))
Eric Andersen5912acb2003-11-05 11:34:26 +000035CC = $(CROSS)gcc
36AR = $(CROSS)ar
37AS = $(CROSS)as
38LD = $(CROSS)ld
39NM = $(CROSS)nm
40STRIP = $(CROSS)strip
Mike Frysinger586ea612006-04-21 01:18:07 +000041ELF2FLT = $(CROSS)elf2flt
Eric Andersen5912acb2003-11-05 11:34:26 +000042CPP = $(CC) -E
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +000043SED ?= sed
Bernhard Reutner-Fischer8c7a7e62005-10-13 10:40:18 +000044
Eric Andersen85208e22002-04-12 12:05:57 +000045
Eric Andersenc9f20d92002-12-05 08:41:41 +000046# What OS are you compiling busybox for? This allows you to include
47# OS specific things, syscall overrides, etc.
Eric Andersen5912acb2003-11-05 11:34:26 +000048TARGET_OS=linux
Eric Andersen85208e22002-04-12 12:05:57 +000049
Eric Andersenc9f20d92002-12-05 08:41:41 +000050# Select the compiler needed to build binaries for your development system
Eric Andersen5912acb2003-11-05 11:34:26 +000051HOSTCC = gcc
Robert Griebl53f133a2002-12-16 21:55:39 +000052HOSTCFLAGS= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
Eric Andersenc9f20d92002-12-05 08:41:41 +000053
Eric Andersenc7bda1c2004-03-15 08:29:22 +000054# Ensure consistent sort order, 'gcc -print-search-dirs' behavior, etc.
Eric Andersen85d9d802003-01-14 09:12:39 +000055LC_ALL:= C
56
Eric Andersenc9f20d92002-12-05 08:41:41 +000057# If you want to add some simple compiler switches (like -march=i686),
58# especially from the command line, use this instead of CFLAGS directly.
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000059# For optimization overrides, it's better still to set OPTIMIZATION.
Eric Andersenc9f20d92002-12-05 08:41:41 +000060CFLAGS_EXTRA=$(subst ",, $(strip $(EXTRA_CFLAGS_OPTIONS)))
Eric Andersenc7bda1c2004-03-15 08:29:22 +000061
Eric Andersen85208e22002-04-12 12:05:57 +000062# To compile vs some other alternative libc, you may need to use/adjust
63# the following lines to meet your needs...
64#
65# If you are using Red Hat 6.x with the compatible RPMs (for developing under
66# Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about
67# using the compatible RPMs (compat-*) at http://www.redhat.com !
68#LIBCDIR:=/usr/i386-glibc20-linux
69#
Eric Andersen0a14c9f2003-07-22 08:56:01 +000070# For other libraries, you are on your own. But these may (or may not) help...
Eric Andersen85208e22002-04-12 12:05:57 +000071#LDFLAGS+=-nostdlib
72#LIBRARIES:=$(LIBCDIR)/lib/libc.a -lgcc
Rob Landley4a070d12005-12-01 17:01:43 +000073#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) -funsigned-char
Eric Andersen85208e22002-04-12 12:05:57 +000074#GCCINCDIR:=$(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
75
Rob Landley5076eb42006-04-19 20:32:27 +000076# This must bind late because srcdir is reset for every source subdirectory.
Bernhard Reutner-Fischer45d54582006-05-08 20:20:32 +000077INCS:=-I$(top_builddir)/include -I$(top_srcdir)/include
Rob Landleyc503df52006-05-09 22:08:56 +000078CFLAGS=$(INCS) -I$(srcdir) -D_GNU_SOURCE
Rob Landley5076eb42006-04-19 20:32:27 +000079CFLAGS+=$(CHECKED_CFLAGS)
Bernhard Reutner-Fischer07a79e72006-03-09 09:03:37 +000080ARFLAGS=cru
Eric Andersen85208e22002-04-12 12:05:57 +000081
Rob Landley5076eb42006-04-19 20:32:27 +000082# Warnings
83
Rob Landleyc503df52006-05-09 22:08:56 +000084CFLAGS += -Wall -Wstrict-prototypes -Wshadow
85LDFLAGS += $(call check_ld,--warn-common,)
Bernhard Reutner-Fischere0b87782005-12-13 11:52:46 +000086
87# gcc centric. Perhaps fiddle with findstring gcc,$(CC) for the rest
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000088# get the CC MAJOR/MINOR version
Bernhard Reutner-Fischere0b87782005-12-13 11:52:46 +000089CC_MAJOR:=$(shell printf "%02d" $(shell echo __GNUC__ | $(CC) -E -xc - | tail -n 1))
90CC_MINOR:=$(shell printf "%02d" $(shell echo __GNUC_MINOR__ | $(CC) -E -xc - | tail -n 1))
91
Eric Andersenc9f20d92002-12-05 08:41:41 +000092#--------------------------------------------------------
Bernhard Reutner-Fischer1c943eb2005-09-26 16:01:43 +000093export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000094ifeq ($(strip $(TARGET_ARCH)),)
95TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
Eric Andersen5b0f9e42002-06-23 04:50:49 +000096 -e 's/i.86/i386/' \
97 -e 's/sparc.*/sparc/' \
98 -e 's/arm.*/arm/g' \
99 -e 's/m68k.*/m68k/' \
100 -e 's/ppc/powerpc/g' \
101 -e 's/v850.*/v850/g' \
102 -e 's/sh[234]/sh/' \
Eric Andersenc9f20d92002-12-05 08:41:41 +0000103 -e 's/mips-.*/mips/' \
104 -e 's/mipsel-.*/mipsel/' \
105 -e 's/cris.*/cris/' \
106 )
Eric Andersen5912acb2003-11-05 11:34:26 +0000107endif
Eric Andersenc9f20d92002-12-05 08:41:41 +0000108
Rob Landley5076eb42006-04-19 20:32:27 +0000109# A nifty macro to make testing gcc features easier, but note that everything
110# that uses this _must_ use := or it will be re-evaluated for every file.
111ifeq ($(strip $(V)),2)
112VERBOSE_CHECK_GCC=echo check_gcc $(1) >> /dev/stderr;
113endif
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000114check_gcc=$(shell \
Rob Landley5076eb42006-04-19 20:32:27 +0000115 $(VERBOSE_CHECK_GCC)\
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000116 if [ "$(1)" != "" ]; then \
117 if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
118 then echo "$(1)"; else echo "$(2)"; fi \
119 fi)
120
121# A not very robust macro to check for available ld flags
122check_ld=$(shell \
123 if [ "x$(1)" != "x" ]; then \
124 $(LD) --help | grep -q "\$(1)" && echo "-Wl,$(1)" ; \
125 fi)
126
Rob Landley5076eb42006-04-19 20:32:27 +0000127# Pin CHECKED_CFLAGS with := so it's only evaluated once.
128CHECKED_CFLAGS:=$(call check_gcc,-funsigned-char,)
129CHECKED_CFLAGS+=$(call check_gcc,-mmax-stack-frame=256,)
Rob Landleya3896512006-05-07 20:20:34 +0000130CHECKED_CFLAGS+=$(call check_gcc,-fno-builtin-strlen)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000131
Rob Landley5076eb42006-04-19 20:32:27 +0000132# Preemptively pin this too.
133PROG_CFLAGS:=
134
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000135
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000136#--------------------------------------------------------
137# Arch specific compiler optimization stuff should go here.
138# Unless you want to override the defaults, do not set anything
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000139# for OPTIMIZATION...
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000140
141# use '-Os' optimization if available, else use -O2
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000142OPTIMIZATION:=$(call check_gcc,-Os,-O2)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000143
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000144ifeq ($(CONFIG_BUILD_AT_ONCE),y)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000145# gcc 2.95 exits with 0 for "unrecognized option"
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000146ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0)
147 CFLAGS_COMBINE:=$(call check_gcc,--combine,)
148endif
149OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
Bernhard Reutner-Fischer3737c032006-04-28 20:02:29 +0000150OPTIMIZATION+=$(call check_gcc,-fgcse-after-reload,)
151ifneq ($(CONFIG_BUILD_LIBBUSYBOX),y)
Bernhard Reutner-Fischerd1ba9162006-03-21 11:06:43 +0000152# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25795
Bernhard Reutner-Fischer3737c032006-04-28 20:02:29 +0000153# This prevents us from using -fwhole-program when we build the lib
154PROG_CFLAGS+=$(call check_gcc,-fwhole-program,)
155endif # CONFIG_BUILD_LIBBUSYBOX
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000156endif # CONFIG_BUILD_AT_ONCE
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000157
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000158LIB_LDFLAGS:=$(call check_ld,--enable-new-dtags,)
159#LIB_LDFLAGS+=$(call check_ld,--reduce-memory-overheads,)
160#LIB_LDFLAGS+=$(call check_ld,--as-needed,)
161#LIB_LDFLAGS+=$(call check_ld,--warn-shared-textrel,)
Bernhard Reutner-Fischer08a1b502006-01-27 15:45:56 +0000162
163
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000164# Some nice architecture specific optimizations
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000165ifeq ($(strip $(TARGET_ARCH)),arm)
166 OPTIMIZATION+=-fstrict-aliasing
167endif
168ifeq ($(strip $(TARGET_ARCH)),i386)
169 OPTIMIZATION+=$(call check_gcc,-march=i386,)
Bernhard Reutner-Fischerd9969ea2006-03-03 20:31:33 +0000170# gcc-4.0 and older seem to benefit from these
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000171#ifneq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
172 OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
173 OPTIMIZATION+=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-loops=1,\
174 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
175#endif # gcc-4.0 and older
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000176
177# gcc-4.1 and beyond seem to benefit from these
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000178ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
179 # turn off flags which hurt -Os
180 OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,)
181 OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,)
182 OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000183
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000184 OPTIMIZATION+=$(call check_gcc,-fno-branch-count-reg,)
185endif # gcc-4.1 and beyond
186endif
Rob Landleyc503df52006-05-09 22:08:56 +0000187OPTIMIZATION+=$(call check_gcc,-fomit-frame-pointer,)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000188
Eric Andersen85208e22002-04-12 12:05:57 +0000189#
190#--------------------------------------------------------
191# If you're going to do a lot of builds with a non-vanilla configuration,
192# it makes sense to adjust parameters above, so you can type "make"
193# by itself, instead of following it by the same half-dozen overrides
194# every time. The stuff below, on the other hand, is probably less
195# prone to casual user adjustment.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000196#
Eric Andersen85208e22002-04-12 12:05:57 +0000197
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000198ifeq ($(strip $(CONFIG_LFS)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000199 # For large file summit support
Eric Andersenecfa2902002-09-22 12:09:44 +0000200 CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
Eric Andersen85208e22002-04-12 12:05:57 +0000201endif
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000202ifeq ($(strip $(CONFIG_DMALLOC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000203 # For testing mem leaks with dmalloc
204 CFLAGS+=-DDMALLOC
205 LIBRARIES:=-ldmalloc
Eric Andersen85208e22002-04-12 12:05:57 +0000206else
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000207 ifeq ($(strip $(CONFIG_EFENCE)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000208 LIBRARIES:=-lefence
Eric Andersen85208e22002-04-12 12:05:57 +0000209 endif
210endif
Rob Landleyc503df52006-05-09 22:08:56 +0000211
212# Debugging info
213
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000214ifeq ($(strip $(CONFIG_DEBUG)),y)
Rob Landleyc503df52006-05-09 22:08:56 +0000215 CFLAGS +=-g
Eric Andersen85208e22002-04-12 12:05:57 +0000216else
Rob Landleyc503df52006-05-09 22:08:56 +0000217 CFLAGS +=-DNDEBUG
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000218 LDFLAGS += $(call check_ld,--sort-common,)
Mike Frysingerc70240c2006-03-10 23:20:48 +0000219endif
Rob Landleyc503df52006-05-09 22:08:56 +0000220
221ifneq ($(strip $(CONFIG_DEBUG_PESSIMIZE)),y)
222else
223 CFLAGS += $(OPTIMIZATION)
224endif
225
Bernhard Reutner-Fischerabaef652006-03-29 22:28:27 +0000226# warn a bit more verbosely for non-release versions
227ifneq ($(EXTRAVERSION),)
Rob Landley5076eb42006-04-19 20:32:27 +0000228 CHECKED_CFLAGS+=$(call check_gcc,-Wstrict-prototypes,)
229 CHECKED_CFLAGS+=$(call check_gcc,-Wmissing-prototypes,)
230 CHECKED_CFLAGS+=$(call check_gcc,-Wmissing-declarations,)
Bernhard Reutner-Fischer3737c032006-04-28 20:02:29 +0000231 CHECKED_CFLAGS+=$(call check_gcc,-Wunused,)
232 CHECKED_CFLAGS+=$(call check_gcc,-Winit-self,)
233 CHECKED_CFLAGS+=$(call check_gcc,-Wshadow,)
234 CHECKED_CFLAGS+=$(call check_gcc,-Wcast-align,)
Bernhard Reutner-Fischerabaef652006-03-29 22:28:27 +0000235endif
Rob Landleyca8d0b02006-03-22 21:03:21 +0000236STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000237ifeq ($(strip $(CONFIG_STATIC)),y)
238 PROG_CFLAGS += $(call check_gcc,-static,)
239endif
Rob Landley5076eb42006-04-19 20:32:27 +0000240CFLAGS_SHARED := $(call check_gcc,-shared,)
Bernhard Reutner-Fischer81b94962006-01-31 11:29:22 +0000241LIB_CFLAGS+=$(CFLAGS_SHARED)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000242
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000243ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
244 CFLAGS_PIC:= $(call check_gcc,-fPIC,)
245 LIB_CFLAGS+=$(CFLAGS_PIC)
246endif
Eric Andersen85208e22002-04-12 12:05:57 +0000247
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000248
249ifeq ($(strip $(CONFIG_SELINUX)),y)
Rob Landleydbd91af2006-03-28 19:40:15 +0000250 LIBRARIES += -lselinux
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000251endif
252
Eric Andersen12f834c2002-10-26 10:17:24 +0000253ifeq ($(strip $(PREFIX)),)
Eric Andersen85208e22002-04-12 12:05:57 +0000254 PREFIX:=`pwd`/_install
255endif
256
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000257# Additional complications due to support for pristine source dir.
258# Include files in the build directory should take precedence over
259# the copy in top_srcdir, both during the compilation phase and the
260# shell script that finds the list of object files.
261# Work in progress by <ldoolitt@recycle.lbl.gov>.
262
263
264OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
Rob Landley5076eb42006-04-19 20:32:27 +0000265CFLAGS += $(CHECKED_CFLAGS) $(CROSS_CFLAGS)
Eric Andersen85208e22002-04-12 12:05:57 +0000266ifdef BB_INIT_SCRIPT
267 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
268endif
269
270# Put user-supplied flags at the end, where they
271# have a chance of winning.
272CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen4bcdd722001-10-24 05:26:42 +0000273
Rob Landleye0c418e2005-12-15 07:25:54 +0000274#------------------------------------------------------------
275# Installation options
276ifeq ($(strip $(CONFIG_INSTALL_APPLET_HARDLINKS)),y)
277INSTALL_OPTS=--hardlinks
278endif
279ifeq ($(strip $(CONFIG_INSTALL_APPLET_SYMLINKS)),y)
280INSTALL_OPTS=--symlinks
281endif
282ifeq ($(strip $(CONFIG_INSTALL_APPLET_DONT)),y)
283INSTALL_OPTS=
284endif
285
Mike Frysingerb38673f2006-02-02 01:41:53 +0000286#------------------------------------------------------------
287# Make the output nice and tight
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000288MAKEFLAGS += --no-print-directory
Mike Frysingerb38673f2006-02-02 01:41:53 +0000289export MAKE_IS_SILENT=n
290ifneq ($(findstring s,$(MAKEFLAGS)),)
291export MAKE_IS_SILENT=y
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000292SECHO := @-false
Mike Frysingerb38673f2006-02-02 01:41:53 +0000293DISP := sil
294Q := @
295else
296ifneq ($(V)$(VERBOSE),)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000297SECHO := @-false
Mike Frysingerb38673f2006-02-02 01:41:53 +0000298DISP := ver
299Q :=
300else
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000301SECHO := @echo
Mike Frysingerb38673f2006-02-02 01:41:53 +0000302DISP := pur
303Q := @
304endif
305endif
306
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000307show_objs = $(subst $(top_builddir)/,,$(subst ../,,$@))
308pur_disp_compile.c = echo " "CC $(show_objs)
309pur_disp_compile.h = echo " "HOSTCC $(show_objs)
310pur_disp_strip = echo " "STRIP $(show_objs)
311pur_disp_link = echo " "LINK $(show_objs)
Bernhard Reutner-Fischer45d54582006-05-08 20:20:32 +0000312pur_disp_link.h = echo " "HOSTLINK $(show_objs)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000313pur_disp_ar = echo " "AR $(ARFLAGS) $(show_objs)
Mike Frysinger586ea612006-04-21 01:18:07 +0000314pur_disp_elf2flt = echo " "ELF2FLT $(ELF2FLTFLAGS) $(show_objs)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000315sil_disp_compile.c = true
316sil_disp_compile.h = true
317sil_disp_strip = true
318sil_disp_link = true
Bernhard Reutner-Fischer45d54582006-05-08 20:20:32 +0000319sil_disp_link.h = true
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000320sil_disp_ar = true
Mike Frysinger586ea612006-04-21 01:18:07 +0000321sil_disp_elf2flt = true
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000322ver_disp_compile.c = echo $(cmd_compile.c)
323ver_disp_compile.h = echo $(cmd_compile.h)
324ver_disp_strip = echo $(cmd_strip)
325ver_disp_link = echo $(cmd_link)
Bernhard Reutner-Fischer45d54582006-05-08 20:20:32 +0000326ver_disp_link.h = echo $(cmd_link.h)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000327ver_disp_ar = echo $(cmd_ar)
Mike Frysinger586ea612006-04-21 01:18:07 +0000328ver_disp_elf2flt = echo $(cmd_elf2flt)
Mike Frysingerb38673f2006-02-02 01:41:53 +0000329disp_compile.c = $($(DISP)_disp_compile.c)
330disp_compile.h = $($(DISP)_disp_compile.h)
331disp_strip = $($(DISP)_disp_strip)
332disp_link = $($(DISP)_disp_link)
Bernhard Reutner-Fischer45d54582006-05-08 20:20:32 +0000333disp_link.h = $($(DISP)_disp_link.h)
Mike Frysingerb38673f2006-02-02 01:41:53 +0000334disp_ar = $($(DISP)_disp_ar)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000335disp_gen = $(SECHO) " "GEN $@ ; true
336disp_doc = $(SECHO) " "DOC $(subst docs/,,$@) ; true
Mike Frysinger586ea612006-04-21 01:18:07 +0000337disp_elf2flt = $($(DISP)_disp_elf2flt)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000338cmd_compile.c = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
Bernhard Reutner-Fischer45d54582006-05-08 20:20:32 +0000339cmd_compile.h = $(HOSTCC) $(HOSTCFLAGS) $(INCS) -c -o $@ $<
Mike Frysingerb38673f2006-02-02 01:41:53 +0000340cmd_strip = $(STRIPCMD) $@
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000341cmd_link = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS)
Bernhard Reutner-Fischer45d54582006-05-08 20:20:32 +0000342cmd_link.h = $(HOSTCC) $(HOSTCFLAGS) $(INCS) $< -o $@
Mike Frysingerb38673f2006-02-02 01:41:53 +0000343cmd_ar = $(AR) $(ARFLAGS) $@ $^
Mike Frysinger586ea612006-04-21 01:18:07 +0000344cmd_elf2flt = $(ELF2FLT) $(ELF2FLTFLAGS) $< -o $@
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000345compile.c = @$(disp_compile.c) ; $(cmd_compile.c)
346compile.h = @$(disp_compile.h) ; $(cmd_compile.h)
347do_strip = @$(disp_strip) ; $(cmd_strip)
348do_link = @$(disp_link) ; $(cmd_link)
Bernhard Reutner-Fischer45d54582006-05-08 20:20:32 +0000349do_link.h = @$(disp_link.h) ; $(cmd_link.h)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000350do_ar = @$(disp_ar) ; $(cmd_ar)
Mike Frysinger586ea612006-04-21 01:18:07 +0000351do_elf2flt = @$(disp_elf2flt) ; $(cmd_elf2flt)
Mike Frysingerb38673f2006-02-02 01:41:53 +0000352
Mike Frysinger6143c072006-05-10 18:12:16 +0000353uppercase = $(shell echo $1 | tr '[:lower:]' '[:upper:]')
354%.a:
355 @if test -z "$($(call uppercase,$*)_DIR)" ; then \
356 echo "Invalid target $@" ; \
357 exit 1 ; \
358 fi
359 $(Q)$(MAKE) $($(call uppercase,$*)_DIR)$@
360
Eric Andersen85208e22002-04-12 12:05:57 +0000361.PHONY: dummy