blob: 95a6714bdba78c8912f3f9d7532e89246d793bbe [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.
77CFLAGS=-I$(top_builddir)/include -I$(top_srcdir)/include -I$(srcdir)
78CFLAGS+=$(CHECKED_CFLAGS)
Bernhard Reutner-Fischer07a79e72006-03-09 09:03:37 +000079ARFLAGS=cru
Eric Andersen85208e22002-04-12 12:05:57 +000080
Rob Landley5076eb42006-04-19 20:32:27 +000081# Warnings
82
83CFLAGS+=-Wall -Wstrict-prototypes -Wshadow
Bernhard Reutner-Fischere0b87782005-12-13 11:52:46 +000084
85# gcc centric. Perhaps fiddle with findstring gcc,$(CC) for the rest
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000086# get the CC MAJOR/MINOR version
Bernhard Reutner-Fischere0b87782005-12-13 11:52:46 +000087CC_MAJOR:=$(shell printf "%02d" $(shell echo __GNUC__ | $(CC) -E -xc - | tail -n 1))
88CC_MINOR:=$(shell printf "%02d" $(shell echo __GNUC_MINOR__ | $(CC) -E -xc - | tail -n 1))
89
Eric Andersenc9f20d92002-12-05 08:41:41 +000090#--------------------------------------------------------
Bernhard Reutner-Fischer1c943eb2005-09-26 16:01:43 +000091export VERSION BUILDTIME HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000092ifeq ($(strip $(TARGET_ARCH)),)
93TARGET_ARCH:=$(shell $(CC) -dumpmachine | sed -e s'/-.*//' \
Eric Andersen5b0f9e42002-06-23 04:50:49 +000094 -e 's/i.86/i386/' \
95 -e 's/sparc.*/sparc/' \
96 -e 's/arm.*/arm/g' \
97 -e 's/m68k.*/m68k/' \
98 -e 's/ppc/powerpc/g' \
99 -e 's/v850.*/v850/g' \
100 -e 's/sh[234]/sh/' \
Eric Andersenc9f20d92002-12-05 08:41:41 +0000101 -e 's/mips-.*/mips/' \
102 -e 's/mipsel-.*/mipsel/' \
103 -e 's/cris.*/cris/' \
104 )
Eric Andersen5912acb2003-11-05 11:34:26 +0000105endif
Eric Andersenc9f20d92002-12-05 08:41:41 +0000106
Rob Landley5076eb42006-04-19 20:32:27 +0000107# A nifty macro to make testing gcc features easier, but note that everything
108# that uses this _must_ use := or it will be re-evaluated for every file.
109ifeq ($(strip $(V)),2)
110VERBOSE_CHECK_GCC=echo check_gcc $(1) >> /dev/stderr;
111endif
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000112check_gcc=$(shell \
Rob Landley5076eb42006-04-19 20:32:27 +0000113 $(VERBOSE_CHECK_GCC)\
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000114 if [ "$(1)" != "" ]; then \
115 if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
116 then echo "$(1)"; else echo "$(2)"; fi \
117 fi)
118
119# A not very robust macro to check for available ld flags
120check_ld=$(shell \
121 if [ "x$(1)" != "x" ]; then \
122 $(LD) --help | grep -q "\$(1)" && echo "-Wl,$(1)" ; \
123 fi)
124
Rob Landley5076eb42006-04-19 20:32:27 +0000125# Pin CHECKED_CFLAGS with := so it's only evaluated once.
126CHECKED_CFLAGS:=$(call check_gcc,-funsigned-char,)
127CHECKED_CFLAGS+=$(call check_gcc,-mmax-stack-frame=256,)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000128
Rob Landley5076eb42006-04-19 20:32:27 +0000129# Preemptively pin this too.
130PROG_CFLAGS:=
131
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000132
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000133#--------------------------------------------------------
134# Arch specific compiler optimization stuff should go here.
135# Unless you want to override the defaults, do not set anything
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000136# for OPTIMIZATION...
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000137
138# use '-Os' optimization if available, else use -O2
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000139OPTIMIZATION:=$(call check_gcc,-Os,-O2)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000140
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000141ifeq ($(CONFIG_BUILD_AT_ONCE),y)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000142# gcc 2.95 exits with 0 for "unrecognized option"
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000143ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 3 ] ; echo $$?)),0)
144 CFLAGS_COMBINE:=$(call check_gcc,--combine,)
145endif
146OPTIMIZATION+=$(call check_gcc,-funit-at-a-time,)
Bernhard Reutner-Fischer3737c032006-04-28 20:02:29 +0000147OPTIMIZATION+=$(call check_gcc,-fgcse-after-reload,)
148ifneq ($(CONFIG_BUILD_LIBBUSYBOX),y)
Bernhard Reutner-Fischerd1ba9162006-03-21 11:06:43 +0000149# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25795
Bernhard Reutner-Fischer3737c032006-04-28 20:02:29 +0000150# This prevents us from using -fwhole-program when we build the lib
151PROG_CFLAGS+=$(call check_gcc,-fwhole-program,)
152endif # CONFIG_BUILD_LIBBUSYBOX
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000153endif # CONFIG_BUILD_AT_ONCE
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000154
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000155LIB_LDFLAGS:=$(call check_ld,--enable-new-dtags,)
156#LIB_LDFLAGS+=$(call check_ld,--reduce-memory-overheads,)
157#LIB_LDFLAGS+=$(call check_ld,--as-needed,)
158#LIB_LDFLAGS+=$(call check_ld,--warn-shared-textrel,)
Bernhard Reutner-Fischer08a1b502006-01-27 15:45:56 +0000159
160
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000161# Some nice architecture specific optimizations
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000162ifeq ($(strip $(TARGET_ARCH)),arm)
163 OPTIMIZATION+=-fstrict-aliasing
164endif
165ifeq ($(strip $(TARGET_ARCH)),i386)
166 OPTIMIZATION+=$(call check_gcc,-march=i386,)
Bernhard Reutner-Fischerd9969ea2006-03-03 20:31:33 +0000167# gcc-4.0 and older seem to benefit from these
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000168#ifneq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
169 OPTIMIZATION+=$(call check_gcc,-mpreferred-stack-boundary=2,)
170 OPTIMIZATION+=$(call check_gcc,-falign-functions=1 -falign-jumps=1 -falign-loops=1,\
171 -malign-functions=0 -malign-jumps=0 -malign-loops=0)
172#endif # gcc-4.0 and older
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000173
174# gcc-4.1 and beyond seem to benefit from these
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000175ifeq ($(strip $(shell [ $(CC_MAJOR) -ge 4 -a $(CC_MINOR) -ge 1 ] ; echo $$?)),0)
176 # turn off flags which hurt -Os
177 OPTIMIZATION+=$(call check_gcc,-fno-tree-loop-optimize,)
178 OPTIMIZATION+=$(call check_gcc,-fno-tree-dominator-opts,)
179 OPTIMIZATION+=$(call check_gcc,-fno-strength-reduce,)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000180
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000181 OPTIMIZATION+=$(call check_gcc,-fno-branch-count-reg,)
182endif # gcc-4.1 and beyond
183endif
184OPTIMIZATIONS:=$(OPTIMIZATION) $(call check_gcc,-fomit-frame-pointer,)
Eric Andersen5b0f9e42002-06-23 04:50:49 +0000185
Eric Andersen85208e22002-04-12 12:05:57 +0000186#
187#--------------------------------------------------------
188# If you're going to do a lot of builds with a non-vanilla configuration,
189# it makes sense to adjust parameters above, so you can type "make"
190# by itself, instead of following it by the same half-dozen overrides
191# every time. The stuff below, on the other hand, is probably less
192# prone to casual user adjustment.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000193#
Eric Andersen85208e22002-04-12 12:05:57 +0000194
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000195ifeq ($(strip $(CONFIG_LFS)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000196 # For large file summit support
Eric Andersenecfa2902002-09-22 12:09:44 +0000197 CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
Eric Andersen85208e22002-04-12 12:05:57 +0000198endif
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000199ifeq ($(strip $(CONFIG_DMALLOC)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000200 # For testing mem leaks with dmalloc
201 CFLAGS+=-DDMALLOC
202 LIBRARIES:=-ldmalloc
Eric Andersen85208e22002-04-12 12:05:57 +0000203else
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000204 ifeq ($(strip $(CONFIG_EFENCE)),y)
Eric Andersen85208e22002-04-12 12:05:57 +0000205 LIBRARIES:=-lefence
Eric Andersen85208e22002-04-12 12:05:57 +0000206 endif
207endif
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000208ifeq ($(strip $(CONFIG_DEBUG)),y)
Rob Landley5076eb42006-04-19 20:32:27 +0000209 CFLAGS +=-g -D_GNU_SOURCE
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000210 LDFLAGS += $(call check_ld,--warn-common,)
Eric Andersen85208e22002-04-12 12:05:57 +0000211else
Rob Landley5076eb42006-04-19 20:32:27 +0000212 CFLAGS+=$(OPTIMIZATIONS) -D_GNU_SOURCE -DNDEBUG
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000213 LDFLAGS += $(call check_ld,--warn-common,)
214 LDFLAGS += $(call check_ld,--sort-common,)
Mike Frysingerc70240c2006-03-10 23:20:48 +0000215endif
Bernhard Reutner-Fischerabaef652006-03-29 22:28:27 +0000216# warn a bit more verbosely for non-release versions
217ifneq ($(EXTRAVERSION),)
Rob Landley5076eb42006-04-19 20:32:27 +0000218 CHECKED_CFLAGS+=$(call check_gcc,-Wstrict-prototypes,)
219 CHECKED_CFLAGS+=$(call check_gcc,-Wmissing-prototypes,)
220 CHECKED_CFLAGS+=$(call check_gcc,-Wmissing-declarations,)
Bernhard Reutner-Fischer3737c032006-04-28 20:02:29 +0000221 CHECKED_CFLAGS+=$(call check_gcc,-Wunused,)
222 CHECKED_CFLAGS+=$(call check_gcc,-Winit-self,)
223 CHECKED_CFLAGS+=$(call check_gcc,-Wshadow,)
224 CHECKED_CFLAGS+=$(call check_gcc,-Wcast-align,)
Bernhard Reutner-Fischerabaef652006-03-29 22:28:27 +0000225endif
Rob Landleyca8d0b02006-03-22 21:03:21 +0000226STRIPCMD:=$(STRIP) -s --remove-section=.note --remove-section=.comment
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000227ifeq ($(strip $(CONFIG_STATIC)),y)
228 PROG_CFLAGS += $(call check_gcc,-static,)
229endif
Rob Landley5076eb42006-04-19 20:32:27 +0000230CFLAGS_SHARED := $(call check_gcc,-shared,)
Bernhard Reutner-Fischer81b94962006-01-31 11:29:22 +0000231LIB_CFLAGS+=$(CFLAGS_SHARED)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000232
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000233ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
234 CFLAGS_PIC:= $(call check_gcc,-fPIC,)
235 LIB_CFLAGS+=$(CFLAGS_PIC)
236endif
Eric Andersen85208e22002-04-12 12:05:57 +0000237
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000238
239ifeq ($(strip $(CONFIG_SELINUX)),y)
Rob Landleydbd91af2006-03-28 19:40:15 +0000240 LIBRARIES += -lselinux
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000241endif
242
Eric Andersen12f834c2002-10-26 10:17:24 +0000243ifeq ($(strip $(PREFIX)),)
Eric Andersen85208e22002-04-12 12:05:57 +0000244 PREFIX:=`pwd`/_install
245endif
246
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000247# Additional complications due to support for pristine source dir.
248# Include files in the build directory should take precedence over
249# the copy in top_srcdir, both during the compilation phase and the
250# shell script that finds the list of object files.
251# Work in progress by <ldoolitt@recycle.lbl.gov>.
252
253
254OBJECTS:=$(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
Rob Landley5076eb42006-04-19 20:32:27 +0000255CFLAGS += $(CHECKED_CFLAGS) $(CROSS_CFLAGS)
Eric Andersen85208e22002-04-12 12:05:57 +0000256ifdef BB_INIT_SCRIPT
257 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
258endif
259
260# Put user-supplied flags at the end, where they
261# have a chance of winning.
262CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen4bcdd722001-10-24 05:26:42 +0000263
Rob Landleye0c418e2005-12-15 07:25:54 +0000264#------------------------------------------------------------
265# Installation options
266ifeq ($(strip $(CONFIG_INSTALL_APPLET_HARDLINKS)),y)
267INSTALL_OPTS=--hardlinks
268endif
269ifeq ($(strip $(CONFIG_INSTALL_APPLET_SYMLINKS)),y)
270INSTALL_OPTS=--symlinks
271endif
272ifeq ($(strip $(CONFIG_INSTALL_APPLET_DONT)),y)
273INSTALL_OPTS=
274endif
275
Mike Frysingerb38673f2006-02-02 01:41:53 +0000276#------------------------------------------------------------
277# Make the output nice and tight
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000278MAKEFLAGS += --no-print-directory
Mike Frysingerb38673f2006-02-02 01:41:53 +0000279export MAKE_IS_SILENT=n
280ifneq ($(findstring s,$(MAKEFLAGS)),)
281export MAKE_IS_SILENT=y
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000282SECHO := @-false
Mike Frysingerb38673f2006-02-02 01:41:53 +0000283DISP := sil
284Q := @
285else
286ifneq ($(V)$(VERBOSE),)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000287SECHO := @-false
Mike Frysingerb38673f2006-02-02 01:41:53 +0000288DISP := ver
289Q :=
290else
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000291SECHO := @echo
Mike Frysingerb38673f2006-02-02 01:41:53 +0000292DISP := pur
293Q := @
294endif
295endif
296
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000297show_objs = $(subst $(top_builddir)/,,$(subst ../,,$@))
298pur_disp_compile.c = echo " "CC $(show_objs)
299pur_disp_compile.h = echo " "HOSTCC $(show_objs)
300pur_disp_strip = echo " "STRIP $(show_objs)
301pur_disp_link = echo " "LINK $(show_objs)
Mike Frysinger12ef09b2006-04-29 04:19:10 +0000302pur_disp_link.h = echo " "HOSTLINK $(show_objs)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000303pur_disp_ar = echo " "AR $(ARFLAGS) $(show_objs)
Mike Frysinger586ea612006-04-21 01:18:07 +0000304pur_disp_elf2flt = echo " "ELF2FLT $(ELF2FLTFLAGS) $(show_objs)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000305sil_disp_compile.c = true
306sil_disp_compile.h = true
307sil_disp_strip = true
308sil_disp_link = true
Mike Frysinger12ef09b2006-04-29 04:19:10 +0000309sil_disp_link.h = true
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000310sil_disp_ar = true
Mike Frysinger586ea612006-04-21 01:18:07 +0000311sil_disp_elf2flt = true
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000312ver_disp_compile.c = echo $(cmd_compile.c)
313ver_disp_compile.h = echo $(cmd_compile.h)
314ver_disp_strip = echo $(cmd_strip)
315ver_disp_link = echo $(cmd_link)
Mike Frysinger12ef09b2006-04-29 04:19:10 +0000316ver_disp_link.h = echo $(cmd_link.h)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000317ver_disp_ar = echo $(cmd_ar)
Mike Frysinger586ea612006-04-21 01:18:07 +0000318ver_disp_elf2flt = echo $(cmd_elf2flt)
Mike Frysingerb38673f2006-02-02 01:41:53 +0000319disp_compile.c = $($(DISP)_disp_compile.c)
320disp_compile.h = $($(DISP)_disp_compile.h)
321disp_strip = $($(DISP)_disp_strip)
322disp_link = $($(DISP)_disp_link)
Mike Frysinger12ef09b2006-04-29 04:19:10 +0000323disp_link.h = $($(DISP)_disp_link.h)
Mike Frysingerb38673f2006-02-02 01:41:53 +0000324disp_ar = $($(DISP)_disp_ar)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000325disp_gen = $(SECHO) " "GEN $@ ; true
326disp_doc = $(SECHO) " "DOC $(subst docs/,,$@) ; true
Mike Frysinger586ea612006-04-21 01:18:07 +0000327disp_elf2flt = $($(DISP)_disp_elf2flt)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000328cmd_compile.c = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
Mike Frysingerb38673f2006-02-02 01:41:53 +0000329cmd_compile.h = $(HOSTCC) $(HOSTCFLAGS) -c -o $@ $<
330cmd_strip = $(STRIPCMD) $@
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000331cmd_link = $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS)
Mike Frysinger12ef09b2006-04-29 04:19:10 +0000332cmd_link.h = $(HOSTCC) $(HOSTCFLAGS) $< -o $@
Mike Frysingerb38673f2006-02-02 01:41:53 +0000333cmd_ar = $(AR) $(ARFLAGS) $@ $^
Mike Frysinger586ea612006-04-21 01:18:07 +0000334cmd_elf2flt = $(ELF2FLT) $(ELF2FLTFLAGS) $< -o $@
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000335compile.c = @$(disp_compile.c) ; $(cmd_compile.c)
336compile.h = @$(disp_compile.h) ; $(cmd_compile.h)
337do_strip = @$(disp_strip) ; $(cmd_strip)
338do_link = @$(disp_link) ; $(cmd_link)
Mike Frysinger12ef09b2006-04-29 04:19:10 +0000339do_link.h = @$(disp_link.h) ; $(cmd_link.h)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000340do_ar = @$(disp_ar) ; $(cmd_ar)
Mike Frysinger586ea612006-04-21 01:18:07 +0000341do_elf2flt = @$(disp_elf2flt) ; $(cmd_elf2flt)
Mike Frysingerb38673f2006-02-02 01:41:53 +0000342
Eric Andersen85208e22002-04-12 12:05:57 +0000343.PHONY: dummy