blob: 82bcca62f67969a70b471ca5ed59800638942ce7 [file] [log] [blame]
Eric Andersenc4996011999-10-20 22:08:37 +00001# Makefile for busybox
2#
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Erik Andersen9ffdaa62000-02-11 21:55:04 +00004#
Rob Landleya7e14db2005-09-11 01:16:47 +00005# Licensed under GPLv2, see the file LICENSE in this tarball for details.
Eric Andersenc4996011999-10-20 22:08:37 +00006#
7
Rob Landleyd9872aa2006-05-27 21:24:16 +00008# You shouldn't have to edit anything in this file for configuration
9# purposes, try "make help" or read http://busybox.net/FAQ.html.
10
11.PHONY: dummy subdirs release distclean clean config oldconfig menuconfig \
12 tags check test depend dep buildtree hosttools _all checkhelp \
13 sizes bloatcheck baseline objsizes
14
Bernhard Reutner-Fischere28d1d62006-05-26 13:22:57 +000015noconfig_targets := menuconfig config oldconfig randconfig hosttools \
Bernhard Reutner-Fischerbe5c1032005-10-08 11:08:28 +000016 defconfig allyesconfig allnoconfig allbareconfig \
Rob Landley19808fe2006-03-13 03:19:46 +000017 clean distclean help \
Eric Andersenbcf27242005-02-13 22:15:59 +000018 release tags
Eric Andersen7daa0762004-10-08 07:46:08 +000019
Bernhard Reutner-Fischere5de3842006-06-10 14:58:33 +000020nocheck_targets := clean distclean help release tags
21
Bernhard Reutner-Fischer1c943eb2005-09-26 16:01:43 +000022# the toplevel sourcedir
Eric Andersen7daa0762004-10-08 07:46:08 +000023ifndef top_srcdir
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000024top_srcdir=$(CURDIR)
Eric Andersen7daa0762004-10-08 07:46:08 +000025endif
Bernhard Reutner-Fischer1c943eb2005-09-26 16:01:43 +000026# toplevel directory of the object-tree
Eric Andersen7daa0762004-10-08 07:46:08 +000027ifndef top_builddir
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000028top_builddir=$(CURDIR)
Eric Andersen7daa0762004-10-08 07:46:08 +000029endif
30
Mike Frysinger9d6e0832005-07-31 22:50:17 +000031export srctree=$(top_srcdir)
Eric Andersen7daa0762004-10-08 07:46:08 +000032vpath %/Config.in $(srctree)
33
Glenn L McGrath3238ea12003-02-15 10:53:40 +000034DIRS:=applets archival archival/libunarchive coreutils console-tools \
35 debianutils editors findutils init miscutils modutils networking \
Mike Frysinger1b4e1da2006-05-08 03:24:36 +000036 networking/libiproute networking/udhcp procps loginutils shell \
Mike Frysingerd89e6292005-04-24 05:07:59 +000037 sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb
Eric Andersenab050f52001-01-27 06:01:43 +000038
Eric Andersen7daa0762004-10-08 07:46:08 +000039SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS))
40
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000041# That's our default target when none is given on the command line
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000042_all:
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000043
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000044CONFIG_CONFIG_IN = $(top_srcdir)/Config.in
Eric Andersen7daa0762004-10-08 07:46:08 +000045
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +000046ifeq ($(BUILD_SRC),)
Eric Andersen7daa0762004-10-08 07:46:08 +000047ifdef O
48 ifeq ("$(origin O)", "command line")
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +000049 BUILD_OUTPUT := $(O)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000050 top_builddir := $(O)
Eric Andersen7daa0762004-10-08 07:46:08 +000051 endif
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000052else
53# If no alternate output-dir was specified, we build in cwd
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +000054# We are using BUILD_OUTPUT nevertheless to make sure that we create
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000055# Rules.mak and the toplevel Makefile, in case they don't exist.
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +000056 BUILD_OUTPUT := $(top_builddir)
57endif
58
59# see if we are in verbose mode
60BUILD_VERBOSE :=
61ifdef V
62 ifeq ("$(origin V)", "command line")
63 BUILD_VERBOSE := $(V)
64 endif
65endif
66ifdef VERBOSE
67 ifeq ("$(origin VERBOSE)", "command line")
68 BUILD_VERBOSE := $(VERBOSE)
69 endif
70endif
71
72ifneq ($(strip $(BUILD_VERBOSE)),)
73 export BUILD_VERBOSE
74 CHECK_VERBOSE := -v
75# ARFLAGS+=v
Eric Andersen7daa0762004-10-08 07:46:08 +000076endif
77
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000078ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
Bernhard Reutner-Fischere5de3842006-06-10 14:58:33 +000079# pull in settings early
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000080-include $(top_srcdir)/Rules.mak
Bernhard Reutner-Fischer07a79e72006-03-09 09:03:37 +000081endif
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +000082
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000083# All object directories.
84OBJ_DIRS := $(DIRS)
85all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include)
86all_tree: $(all_tree)
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +000087$(all_tree):
88 @mkdir -p "$@"
89
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +000090ifneq ($(BUILD_OUTPUT),)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000091# Invoke a second make in the output directory, passing relevant variables
92# Check that the output directory actually exists
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +000093saved-output := $(BUILD_OUTPUT)
94BUILD_OUTPUT := $(shell cd $(BUILD_OUTPUT) && /bin/pwd)
95$(if $(wildcard $(BUILD_OUTPUT)),, \
Eric Andersen7daa0762004-10-08 07:46:08 +000096 $(error output directory "$(saved-output)" does not exist))
97
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +000098.PHONY: $(MAKECMDGOALS)
Eric Andersen7daa0762004-10-08 07:46:08 +000099
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +0000100$(filter-out _all,$(MAKECMDGOALS)) _all: $(BUILD_OUTPUT)/Rules.mak $(BUILD_OUTPUT)/Makefile all_tree
101 $(Q)$(MAKE) -C $(BUILD_OUTPUT) \
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000102 top_srcdir=$(top_srcdir) \
103 top_builddir=$(top_builddir) \
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +0000104 BUILD_SRC=$(top_srcdir) \
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000105 -f $(CURDIR)/Makefile $@
106
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +0000107$(BUILD_OUTPUT)/Rules.mak:
Eric Andersen7daa0762004-10-08 07:46:08 +0000108 @echo > $@
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000109 @echo top_srcdir=$(top_srcdir) >> $@
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +0000110 @echo top_builddir=$(BUILD_OUTPUT) >> $@
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000111 @echo include $(top_srcdir)/Rules.mak >> $@
Eric Andersen7daa0762004-10-08 07:46:08 +0000112
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +0000113$(BUILD_OUTPUT)/Makefile:
Eric Andersen7daa0762004-10-08 07:46:08 +0000114 @echo > $@
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000115 @echo top_srcdir=$(top_srcdir) >> $@
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +0000116 @echo top_builddir=$(BUILD_OUTPUT) >> $@
117 @echo BUILD_SRC='$$(top_srcdir)' >> $@
118 @echo include '$$(BUILD_SRC)'/Makefile >> $@
Eric Andersen7daa0762004-10-08 07:46:08 +0000119
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000120# Leave processing to above invocation of make
121skip-makefile := 1
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +0000122endif # ifneq ($(BUILD_OUTPUT),)
123endif # ifeq ($(BUILD_SRC),)
Eric Andersen7daa0762004-10-08 07:46:08 +0000124
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000125ifeq ($(skip-makefile),)
Eric Andersen7daa0762004-10-08 07:46:08 +0000126
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +0000127# We only need a copy of the Makefile for the config targets and reuse
128# the rest from the source directory, i.e. we do not cp ALL_MAKEFILES.
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000129scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile
130 cp $< $@
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +0000131
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000132_all: all
Glenn L McGrath6376b582003-09-24 15:48:29 +0000133
Rob Landleyd24eaac2005-09-26 15:49:41 +0000134help:
135 @echo 'Cleaning:'
"Vladimir N. Oleynik"b7576992006-01-23 11:39:05 +0000136 @echo ' clean - delete temporary files created by build'
137 @echo ' distclean - delete all non-source files (including .config)'
Rob Landleyd24eaac2005-09-26 15:49:41 +0000138 @echo
139 @echo 'Build:'
"Vladimir N. Oleynik"b7576992006-01-23 11:39:05 +0000140 @echo ' all - Executable and documentation'
141 @echo ' busybox - the swiss-army executable'
142 @echo ' doc - docs/BusyBox.{txt,html,1}'
Bernhard Reutner-Fischerfa61ca72006-06-16 17:19:39 +0000143 @echo ' html - create html-based cross-reference'
Rob Landleyd24eaac2005-09-26 15:49:41 +0000144 @echo
145 @echo 'Configuration:'
"Vladimir N. Oleynik"b7576992006-01-23 11:39:05 +0000146 @echo ' allnoconfig - disable all symbols in .config'
Rob Landley1ab4c3d2006-02-08 18:50:17 +0000147 @echo ' allyesconfig - enable all symbols in .config (see defconfig)'
148 @echo ' allbareconfig - enable all applets without any sub-features'
"Vladimir N. Oleynik"b7576992006-01-23 11:39:05 +0000149 @echo ' config - text based configurator (of last resort)'
Rob Landley1ab4c3d2006-02-08 18:50:17 +0000150 @echo ' defconfig - set .config to largest generic configuration'
"Vladimir N. Oleynik"b7576992006-01-23 11:39:05 +0000151 @echo ' menuconfig - interactive curses-based configurator'
152 @echo ' oldconfig - resolve any unresolved symbols in .config'
Bernhard Reutner-Fischere28d1d62006-05-26 13:22:57 +0000153 @echo ' hosttools - build sed for the host.'
154 @echo ' You can use these commands if the commands on the host'
155 @echo ' is unusable. Afterwards use it like:'
156 @echo ' make SED="$(top_builddir)/sed"'
Rob Landleyd24eaac2005-09-26 15:49:41 +0000157 @echo
158 @echo 'Installation:'
Eric Andersena6db0ee2006-03-20 17:50:08 +0000159 @echo ' install - install busybox into $(PREFIX)'
Rob Landleyd24eaac2005-09-26 15:49:41 +0000160 @echo ' uninstall'
161 @echo
162 @echo 'Development:'
Rob Landley0fbe7dd2006-05-28 01:40:26 +0000163 @echo ' baseline - create busybox_old for bloatcheck.'
Rob Landley0690d152006-05-11 17:33:10 +0000164 @echo ' bloatcheck - show size difference between old and new versions'
"Vladimir N. Oleynik"b7576992006-01-23 11:39:05 +0000165 @echo ' check - run the test suite for all applets'
Bernhard Reutner-Fischer3916b2a2006-05-04 11:38:33 +0000166 @echo ' checkhelp - check for missing help-entries in Config.in'
"Vladimir N. Oleynik"b7576992006-01-23 11:39:05 +0000167 @echo ' randconfig - generate a random configuration'
168 @echo ' release - create a distribution tarball'
169 @echo ' sizes - show size of all enabled busybox symbols'
Bernhard Reutner-Fischer06a81d32006-04-26 10:10:25 +0000170 @echo ' objsizes - show size of each .o object built'
Rob Landleyd24eaac2005-09-26 15:49:41 +0000171 @echo
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +0000172
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000173
174include $(top_srcdir)/Rules.mak
Bernhard Reutner-Fischer07a79e72006-03-09 09:03:37 +0000175
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000176ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000177
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000178# Default target if none was requested explicitly
Bernhard Reutner-Fischera25d83b2006-03-13 19:30:06 +0000179all: menuconfig
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000180
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +0000181# warn if no configuration exists and we are asked to build a non-config target
182.config:
183 @echo ""
184 @echo "No $(top_builddir)/$@ found!"
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000185 @echo "Please refer to 'make help', section Configuration."
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +0000186 @echo ""
187 @exit 1
188
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000189# configuration
190# ---------------------------------------------------------------------------
191
192scripts/config/conf: scripts/config/Makefile
Mike Frysingerb38673f2006-02-02 01:41:53 +0000193 $(Q)$(MAKE) -C scripts/config conf
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000194 -@if [ ! -f .config ] ; then \
195 touch .config; \
196 fi
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000197
198scripts/config/mconf: scripts/config/Makefile
Mike Frysingerb38673f2006-02-02 01:41:53 +0000199 $(Q)$(MAKE) -C scripts/config ncurses conf mconf
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000200 -@if [ ! -f .config ] ; then \
201 touch .config; \
202 fi
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000203
204menuconfig: scripts/config/mconf
Bernhard Reutner-Fischer351c8322006-05-19 18:33:34 +0000205 @[ -f .config ] || $(MAKE) $(MAKEFLAGS) defconfig
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000206 @./scripts/config/mconf $(CONFIG_CONFIG_IN)
207
208config: scripts/config/conf
209 @./scripts/config/conf $(CONFIG_CONFIG_IN)
210
211oldconfig: scripts/config/conf
212 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
213
214randconfig: scripts/config/conf
215 @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
216
217allyesconfig: scripts/config/conf
Bernhard Reutner-Fischer351c8322006-05-19 18:33:34 +0000218 @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000219 @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER)=.*/# \1 is not set/" .config
Bernhard Reutner-Fischer351c8322006-05-19 18:33:34 +0000220 @./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000221
222allnoconfig: scripts/config/conf
Bernhard Reutner-Fischer351c8322006-05-19 18:33:34 +0000223 @./scripts/config/conf -n $(CONFIG_CONFIG_IN) > /dev/null
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000224
Rob Landley1ab4c3d2006-02-08 18:50:17 +0000225# defconfig is allyesconfig minus any features that are specialized enough
226# or cause enough behavior change that the user really should switch them on
227# manually if that's what they want. Sort of "maximum sane config".
Rob Landleya167ec52006-01-31 02:42:50 +0000228
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000229defconfig: scripts/config/conf
Bernhard Reutner-Fischer351c8322006-05-19 18:33:34 +0000230 @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000231 @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG.*|STATIC|SELINUX|BUILD_(AT_ONCE|LIBBUSYBOX)|FEATURE_(DEVFS|FULL_LIBBUSYBOX|SHARED_BUSYBOX|MTAB_SUPPORT|CLEAN_UP|UDHCP_DEBUG)|INSTALL_NO_USR))=.*/# \1 is not set/" .config
Bernhard Reutner-Fischer351c8322006-05-19 18:33:34 +0000232 @./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null
Rob Landleya167ec52006-01-31 02:42:50 +0000233
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000234
Bernhard Reutner-Fischerbe5c1032005-10-08 11:08:28 +0000235allbareconfig: scripts/config/conf
Bernhard Reutner-Fischer351c8322006-05-19 18:33:34 +0000236 @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000237 @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG|STATIC|SELINUX|DEVFSD|NC_GAPING_SECURITY_HOLE|BUILD_AT_ONCE)).*/# \1 is not set/" .config
238 @$(SED) -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config
Bernhard Reutner-Fischerbe5c1032005-10-08 11:08:28 +0000239 @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config
Bernhard Reutner-Fischer351c8322006-05-19 18:33:34 +0000240 @yes n | ./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null
Bernhard Reutner-Fischera9d89132005-10-07 18:45:03 +0000241
Bernhard Reutner-Fischere28d1d62006-05-26 13:22:57 +0000242hosttools:
243 $(Q)cp .config .config.bak || noold=yea
244 $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" allnoconfig
245 $(Q)mv .config .config.in
246 $(Q)(grep -v CONFIG_SED .config.in ; \
247 echo "CONFIG_SED=y" ; ) > .config
248 $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" oldconfig include/bb_config.h
249 $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" busybox
250 $(Q)[ -f .config.bak ] && mv .config.bak .config || rm .config
251 mv busybox sed
252 @echo "Now do: $(MAKE) SED=$(top_builddir)/sed <target>"
253
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000254else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
Eric Andersen00814662001-04-26 23:29:10 +0000255
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000256all: busybox busybox.links doc
257
258# In this section, we need .config
Eric Andersen7daa0762004-10-08 07:46:08 +0000259-include $(top_builddir)/.config.cmd
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000260include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
Eric Andersen7daa0762004-10-08 07:46:08 +0000261
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000262endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000263
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000264-include $(top_builddir)/.config
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000265-include $(top_builddir)/.depend
266
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000267
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000268ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y)
Bernhard Reutner-Fischer07a79e72006-03-09 09:03:37 +0000269libraries-y:=
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000270# Which parts of the internal libs are requested?
271# Per default we only want what was actually selected.
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000272# -a denotes all while -y denotes the selected ones.
273ifeq ($(strip $(CONFIG_FEATURE_FULL_LIBBUSYBOX)),y)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000274LIBRARY_DEFINE:=$(LIBRARY_DEFINE-a)
275LIBRARY_SRC :=$(LIBRARY_SRC-a)
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000276else # CONFIG_FEATURE_FULL_LIBBUSYBOX
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000277LIBRARY_DEFINE:=$(LIBRARY_DEFINE-y)
278LIBRARY_SRC :=$(LIBRARY_SRC-y)
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000279endif # CONFIG_FEATURE_FULL_LIBBUSYBOX
280APPLET_SRC:=$(APPLET_SRC-y)
281APPLETS_DEFINE:=$(APPLETS_DEFINE-y)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000282else # CONFIG_BUILD_AT_ONCE
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000283# no --combine, build archives out of the individual .o
284# This was the old way the binary was built.
Bernhard Reutner-Fischer07a79e72006-03-09 09:03:37 +0000285libbusybox-obj:=archival/libunarchive/libunarchive.a \
286 networking/libiproute/libiproute.a \
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000287 libpwdgrp/libpwdgrp.a \
288 coreutils/libcoreutils/libcoreutils.a \
Bernhard Reutner-Fischer07a79e72006-03-09 09:03:37 +0000289 libbb/libbb.a
290libbusybox-obj:=$(patsubst %,$(top_builddir)/%,$(libbusybox-obj))
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000291
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000292ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
Bernhard Reutner-Fischer07a79e72006-03-09 09:03:37 +0000293# linking against libbusybox, so don't build the .a already contained in the .so
294libraries-y:=$(filter-out $(libbusybox-obj),$(libraries-y))
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000295endif # CONFIG_FEATURE_SHARED_BUSYBOX
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000296endif # CONFIG_BUILD_AT_ONCE
297
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000298
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000299ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
300LD_LIBBUSYBOX:=libbusybox.so
301LIBBUSYBOX_SONAME:=$(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)
302DO_INSTALL_LIBS:=$(LD_LIBBUSYBOX) \
303 $(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
304 $(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION)
Bernhard Reutner-Fischer2b398be2006-04-03 21:16:52 +0000305endif # CONFIG_BUILD_LIBBUSYBOX
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000306
307ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y)
308ifneq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000309# --combine but not linking against libbusybox, so compile all
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000310BUSYBOX_SRC := $(LIBRARY_SRC)
311BUSYBOX_DEFINE:= $(LIBRARY_DEFINE)
312endif # !CONFIG_FEATURE_SHARED_BUSYBOX
313$(LIBBUSYBOX_SONAME): $(LIBRARY_SRC)
314else # CONFIG_BUILD_AT_ONCE
315$(LIBBUSYBOX_SONAME): $(libbusybox-obj)
316endif # CONFIG_BUILD_AT_ONCE
Bernhard Reutner-Fischer08c5a172006-01-25 15:58:04 +0000317
318ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
319LDBUSYBOX:=-L$(top_builddir) -lbusybox
320endif
321
322ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000323$(LIBBUSYBOX_SONAME):
324ifndef MAJOR_VERSION
325 $(error MAJOR_VERSION needed for $@ is not defined)
326endif
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +0000327 $(do_link.so) \
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000328 -Wl,-soname=$(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +0000329 -Wl,-z,combreloc
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000330 @rm -f $(DO_INSTALL_LIBS)
331 @for i in $(DO_INSTALL_LIBS); do ln -s $(@) $$i ; done
Mike Frysingerb38673f2006-02-02 01:41:53 +0000332 $(do_strip)
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000333
334endif # ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
335
Bernhard Reutner-Fischerd8e87a02006-05-19 18:37:34 +0000336busybox_unstripped: .depend $(LIBBUSYBOX_SONAME) $(BUSYBOX_SRC) $(APPLET_SRC) $(libraries-y)
Bernhard Reutner-Fischer7b8ff222006-06-13 14:20:17 +0000337 $(do_link)
Bernhard Reutner-Fischercfc5d862006-03-02 09:44:32 +0000338
339busybox: busybox_unstripped
340 $(Q)cp busybox_unstripped busybox
Mike Frysingerb38673f2006-02-02 01:41:53 +0000341 $(do_strip)
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000342
Mike Frysinger586ea612006-04-21 01:18:07 +0000343%.bflt: %_unstripped
344 $(do_elf2flt)
345
Rob Landleya930bd32005-12-16 06:12:46 +0000346busybox.links: $(top_srcdir)/applets/busybox.mkll include/bb_config.h $(top_srcdir)/include/applets.h
Mike Frysingerb38673f2006-02-02 01:41:53 +0000347 $(Q)-$(SHELL) $^ >$@
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000348
Eric Andersen63024862004-10-13 17:45:57 +0000349install: $(top_srcdir)/applets/install.sh busybox busybox.links
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000350 $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000351 $(SHELL) $< $(PREFIX) $(INSTALL_OPTS)
Eric Andersen13879102004-08-26 23:13:00 +0000352ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
353 @echo
354 @echo
355 @echo --------------------------------------------------
356 @echo You will probably need to make your busybox binary
357 @echo setuid root to ensure all configured applets will
358 @echo work properly.
359 @echo --------------------------------------------------
360 @echo
361endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000362
Glenn L McGrath87470de2003-08-29 12:20:31 +0000363uninstall: busybox.links
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000364 rm -f $(PREFIX)/bin/busybox
365 for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000366ifneq ($(strip $(DO_INSTALL_LIBS)),n)
367 for i in $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS); do \
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000368 rm -f $(PREFIX)$$i; \
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +0000369 done
370endif
Eric Andersen1f30a412002-04-13 13:39:48 +0000371
Mike Frysingerce0cf1d2005-09-24 05:47:52 +0000372check test: busybox
Bernhard Reutner-Fischere28d1d62006-05-26 13:22:57 +0000373 bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite SED="$(SED)" \
374 $(SHELL) $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000375
Bernhard Reutner-Fischer3916b2a2006-05-04 11:38:33 +0000376checkhelp:
377 $(Q)$(top_srcdir)/scripts/checkhelp.awk \
378 $(wildcard $(patsubst %,%/Config.in,$(SRC_DIRS) ./))
Rob Landleyd9872aa2006-05-27 21:24:16 +0000379
Bernhard Reutner-Fischercfc5d862006-03-02 09:44:32 +0000380sizes: busybox_unstripped
381 $(NM) --size-sort $(<)
Rob Landleyd9872aa2006-05-27 21:24:16 +0000382
Rob Landleyf8a80842006-05-07 19:26:53 +0000383bloatcheck: busybox_old busybox_unstripped
Rob Landley92d8b352006-05-08 20:48:12 +0000384 @$(top_srcdir)/scripts/bloat-o-meter busybox_old busybox_unstripped
Rob Landley16890752005-09-02 00:41:53 +0000385
Rob Landleyd9872aa2006-05-27 21:24:16 +0000386baseline: busybox_unstripped
387 @mv busybox_unstripped busybox_old
388
Bernhard Reutner-Fischer06a81d32006-04-26 10:10:25 +0000389objsizes: busybox_unstripped
390 $(SHELL) $(top_srcdir)/scripts/objsizes
391
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000392# Documentation Targets
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000393doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
John Beppu94e50542001-04-05 19:42:03 +0000394
Mike Frysingerf37529d2006-02-05 22:15:39 +0000395docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod $(top_srcdir)/docs/autodocifier.pl
Mike Frysingerb38673f2006-02-02 01:41:53 +0000396 $(disp_doc)
397 $(Q)-mkdir -p docs
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000398 $(Q)-( cat $(top_srcdir)/docs/busybox_header.pod ; \
399 $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h ; \
400 cat $(top_srcdir)/docs/busybox_footer.pod ; ) > docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000401
Eric Andersen67536ff2000-07-06 22:53:22 +0000402docs/BusyBox.txt: docs/busybox.pod
Mike Frysingerb38673f2006-02-02 01:41:53 +0000403 $(disp_doc)
404 $(Q)-mkdir -p docs
405 $(Q)-pod2text $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000406
Eric Andersen67536ff2000-07-06 22:53:22 +0000407docs/BusyBox.1: docs/busybox.pod
Mike Frysingerb38673f2006-02-02 01:41:53 +0000408 $(disp_doc)
409 $(Q)-mkdir -p docs
410 $(Q)-pod2man --center=BusyBox --release="version $(VERSION)" \
Eric Andersen19f86202001-02-17 00:42:47 +0000411 $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000412
Eric Andersen2423b122001-12-08 01:56:15 +0000413docs/BusyBox.html: docs/busybox.net/BusyBox.html
Mike Frysingerb38673f2006-02-02 01:41:53 +0000414 $(disp_doc)
415 $(Q)-mkdir -p docs
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000416 $(Q)-rm -f docs/BusyBox.html
Mike Frysingerb38673f2006-02-02 01:41:53 +0000417 $(Q)-cp docs/busybox.net/BusyBox.html docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000418
Eric Andersen2423b122001-12-08 01:56:15 +0000419docs/busybox.net/BusyBox.html: docs/busybox.pod
Mike Frysingerb38673f2006-02-02 01:41:53 +0000420 $(Q)-mkdir -p docs/busybox.net
421 $(Q)-pod2html --noindex $< > \
Eric Andersen2423b122001-12-08 01:56:15 +0000422 docs/busybox.net/BusyBox.html
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000423 $(Q)-rm -f pod2htm*
Erik Andersen0a704e82000-05-03 03:19:06 +0000424
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000425# The nifty new dependency stuff
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000426scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
Mike Frysinger12ef09b2006-04-29 04:19:10 +0000427 $(do_link.h)
Erik Andersen1d1d9502000-04-21 01:26:49 +0000428
"Vladimir N. Oleynik"6732af22006-02-15 12:29:37 +0000429DEP_INCLUDES := include/bb_config.h
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000430
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000431ifeq ($(strip $(CONFIG_BBCONFIG)),y)
432DEP_INCLUDES += include/bbconfigopts.h
433
Bernhard Reutner-Fischer42f091a2006-06-15 21:35:35 +0000434include/bbconfigopts.h: .config $(top_srcdir)/scripts/config/mkconfigs
Mike Frysingerb38673f2006-02-02 01:41:53 +0000435 $(disp_gen)
436 $(Q)$(top_srcdir)/scripts/config/mkconfigs > $@
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000437endif
438
Bernhard Reutner-Fischer30ead9a2006-05-21 09:02:12 +0000439ifeq ($(strip $(CONFIG_FEATURE_COMPRESS_USAGE)),y)
Bernhard Reutner-Fischer4148afe2006-05-21 15:05:49 +0000440USAGE_BIN:=scripts/usage
Rob Landley1dea55d2006-06-13 14:37:14 +0000441$(USAGE_BIN): $(top_srcdir)/scripts/usage.c .config
Bernhard Reutner-Fischer30ead9a2006-05-21 09:02:12 +0000442 $(do_link.h)
Rob Landley7e21d5f2006-04-27 23:34:46 +0000443
444DEP_INCLUDES += include/usage_compressed.h
Bernhard Reutner-Fischer30ead9a2006-05-21 09:02:12 +0000445
Bernhard Reutner-Fischer42f091a2006-06-15 21:35:35 +0000446include/usage_compressed.h: .config $(USAGE_BIN) $(top_srcdir)/scripts/usage_compressed
Bernhard Reutner-Fischere28d1d62006-05-26 13:22:57 +0000447 $(Q)SED="$(SED)" $(SHELL) $(top_srcdir)/scripts/usage_compressed "$(top_builddir)/scripts" > $@
Bernhard Reutner-Fischer30ead9a2006-05-21 09:02:12 +0000448endif # CONFIG_FEATURE_COMPRESS_USAGE
Rob Landley7e21d5f2006-04-27 23:34:46 +0000449
Bernhard Reutner-Fischer4148afe2006-05-21 15:05:49 +0000450# workaround alleged bug in make-3.80, make-3.81
451.NOTPARALLEL: .depend
452
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000453depend dep: .depend
Bernhard Reutner-Fischer4148afe2006-05-21 15:05:49 +0000454.depend: scripts/bb_mkdep $(USAGE_BIN) $(DEP_INCLUDES)
Mike Frysingerb38673f2006-02-02 01:41:53 +0000455 $(disp_gen)
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000456 $(Q)rm -f .depend
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000457 $(Q)mkdir -p include/config
458 $(Q)scripts/bb_mkdep -I $(top_srcdir)/include $(top_srcdir) > $@.tmp
Mike Frysingerb38673f2006-02-02 01:41:53 +0000459 $(Q)mv $@.tmp $@
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000460
"Vladimir N. Oleynik"6732af22006-02-15 12:29:37 +0000461include/bb_config.h: .config
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000462 @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
463 $(MAKE) -C scripts/config conf; \
464 fi;
Eric Andersen7daa0762004-10-08 07:46:08 +0000465 @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
Eric Andersen85208e22002-04-12 12:05:57 +0000466
Eric Andersencc8ed391999-10-05 16:24:54 +0000467clean:
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000468 - $(MAKE) -C scripts/config $@
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000469 - rm -f docs/busybox.dvi docs/busybox.ps \
Eric Andersenf7300882004-04-06 15:26:25 +0000470 docs/busybox.pod docs/busybox.net/busybox.html \
Eric Andersen24e098a2003-08-22 20:53:38 +0000471 docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
472 docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
"Vladimir N. Oleynik"9394b232006-01-23 11:24:58 +0000473 docs/busybox.net/BusyBox.html busybox.links \
Bernhard Reutner-Fischera5972112006-03-06 14:19:15 +0000474 libbusybox.so* \
Mike Frysinger33b45a02006-03-05 16:25:19 +0000475 .config.old busybox busybox_unstripped
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000476 - rm -r -f _install testsuite/links
Bernhard Reutner-Fischerfa61ca72006-06-16 17:19:39 +0000477 - find . -name .\*.flags -o -name \*.o -o -name \*.om -o -name \*.syn \
Rob Landley31e36102006-03-09 22:01:05 +0000478 -o -name \*.os -o -name \*.osm -o -name \*.a | xargs rm -f
Eric Andersencc8ed391999-10-05 16:24:54 +0000479
480distclean: clean
Mike Frysinger59e46112006-05-10 05:19:27 +0000481 rm -f scripts/bb_mkdep scripts/usage
Bernhard Reutner-Fischer3c8c0692006-05-21 10:04:46 +0000482 rm -r -f include/config include/config.h $(DEP_INCLUDES)
Mike Frysinger59e46112006-05-10 05:19:27 +0000483 find . -name .depend'*' -print0 | xargs -0 rm -f
484 rm -f .hdepend
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000485 rm -f .config .config.old .config.cmd
Eric Andersencc8ed391999-10-05 16:24:54 +0000486
Eric Andersenc9f20d92002-12-05 08:41:41 +0000487release: distclean #doc
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000488 cd ..; \
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000489 rm -r -f $(PROG)-$(VERSION); \
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000490 cp -a busybox $(PROG)-$(VERSION); \
491 \
492 find $(PROG)-$(VERSION)/ -type d \
Eric Andersen4306bb12005-08-17 00:03:23 +0000493 -name .svn \
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000494 -print \
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000495 -exec rm -r -f {} \; ; \
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000496 \
497 find $(PROG)-$(VERSION)/ -type f \
498 -name .\#* \
499 -print \
Bernhard Reutner-Fischer5d261262006-03-01 22:54:48 +0000500 -exec rm -f {} \; ; \
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000501 \
Glenn L McGrath0874a612003-11-17 10:26:43 +0000502 tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000503
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000504tags:
505 ctags -R .
Matt Kraai4e05da82001-11-19 19:47:56 +0000506
Bernhard Reutner-Fischerfa61ca72006-06-16 17:19:39 +0000507# documentation, cross-reference
508# Modern distributions already ship synopsis packages (e.g. debian)
509# If you have an old distribution go to http://synopsis.fresco.org/
510syn_tgt := $(wildcard $(patsubst %,%/*.c,$(SRC_DIRS)))
511syn := $(patsubst %.c, %.syn, $(syn_tgt))
512
513%.syn: %.c
514 synopsis -p C -l Comments.SSDFilter,Comments.Previous $(INCS) -Wp,verbose,debug,preprocess,cppflags="'$(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS) $(PROG_CFLAGS) $(PROG_LDFLAGS) $(CFLAGS_COMBINE) $(APPLETS_DEFINE) $(BUSYBOX_DEFINE)'" -o $@ $<
515html: $(syn)
516 synopsis -f HTML -Wf,title="'BusyBox Documentation'" -o $@ $^
517
Bernhard Reutner-Fischer07a79e72006-03-09 09:03:37 +0000518
Bernhard Reutner-Fischerdf100942006-03-13 19:04:00 +0000519endif # ifeq ($(skip-makefile),)
520