blob: 7f29037f538214f45cc143e4f5144a7b91c5e550 [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
Eric Andersenc9f20d92002-12-05 08:41:41 +00008#--------------------------------------------------------------
9# You shouldn't need to mess with anything beyond this point...
10#--------------------------------------------------------------
11noconfig_targets := menuconfig config oldconfig randconfig \
12 defconfig allyesconfig allnoconfig clean distclean \
Eric Andersenbcf27242005-02-13 22:15:59 +000013 release tags
Eric Andersen7daa0762004-10-08 07:46:08 +000014
Bernhard Reutner-Fischer1c943eb2005-09-26 16:01:43 +000015# the toplevel sourcedir
Eric Andersen7daa0762004-10-08 07:46:08 +000016ifndef top_srcdir
17top_srcdir=$(CURDIR)
18endif
Bernhard Reutner-Fischer1c943eb2005-09-26 16:01:43 +000019# toplevel directory of the object-tree
Eric Andersen7daa0762004-10-08 07:46:08 +000020ifndef top_builddir
21top_builddir=$(CURDIR)
22endif
23
Mike Frysinger9d6e0832005-07-31 22:50:17 +000024export srctree=$(top_srcdir)
Eric Andersen7daa0762004-10-08 07:46:08 +000025vpath %/Config.in $(srctree)
26
Glenn L McGrath3238ea12003-02-15 10:53:40 +000027DIRS:=applets archival archival/libunarchive coreutils console-tools \
28 debianutils editors findutils init miscutils modutils networking \
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000029 networking/libiproute networking/udhcp procps loginutils shell \
Mike Frysingerd89e6292005-04-24 05:07:59 +000030 sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb
Eric Andersenab050f52001-01-27 06:01:43 +000031
Eric Andersen7daa0762004-10-08 07:46:08 +000032SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS))
33
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000034# That's our default target when none is given on the command line
35.PHONY: _all
36_all:
37
38# All object directories.
39OBJ_DIRS = scripts/config include $(DIRS)
40$(OBJ_DIRS):
41 mkdir -p "$(patsubst %,$(top_builddir)/%,$@)"
42
43scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile
44 cp -v $< $@
45
46include $(top_srcdir)/Rules.mak
Eric Andersen9e480452003-07-03 10:07:04 +000047
Eric Andersen7daa0762004-10-08 07:46:08 +000048CONFIG_CONFIG_IN = $(top_srcdir)/sysdeps/$(TARGET_OS)/Config.in
49CONFIG_DEFCONFIG = $(top_srcdir)/sysdeps/$(TARGET_OS)/defconfig
50
Eric Andersen7daa0762004-10-08 07:46:08 +000051ifeq ($(KBUILD_SRC),)
52
53ifdef O
54 ifeq ("$(origin O)", "command line")
55 KBUILD_OUTPUT := $(O)
56 endif
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000057else
58# If no alternate output-dir was specified, we build in cwd
59# We are using KBUILD_OUTPUT nevertheless to make sure that we create
60# Rules.mak and the toplevel Makefile, in case they don't exist.
61 KBUILD_OUTPUT := $(top_builddir)
Eric Andersen7daa0762004-10-08 07:46:08 +000062endif
63
Eric Andersen7daa0762004-10-08 07:46:08 +000064ifneq ($(KBUILD_OUTPUT),)
65# Invoke a second make in the output directory, passing relevant variables
66# check that the output directory actually exists
67saved-output := $(KBUILD_OUTPUT)
68KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
69$(if $(wildcard $(KBUILD_OUTPUT)),, \
70 $(error output directory "$(saved-output)" does not exist))
71
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000072# We only need a copy of the Makefile for the config targets and reuse
73# the rest from the source directory, i.e. we do not cp ALL_MAKEFILES.
74all_tree: $(OBJ_DIRS) $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUTPUT)/Makefile scripts/config/Makefile
75
Eric Andersen7daa0762004-10-08 07:46:08 +000076.PHONY: $(MAKECMDGOALS)
77
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000078$(filter-out _all,$(MAKECMDGOALS)) _all: $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUTPUT)/Makefile all_tree
79#all:
Eric Andersen7daa0762004-10-08 07:46:08 +000080 $(MAKE) -C $(KBUILD_OUTPUT) \
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000081 top_srcdir=$(top_srcdir) \
82 top_builddir=$(top_builddir) \
83 KBUILD_SRC=$(top_srcdir) \
Eric Andersen7daa0762004-10-08 07:46:08 +000084 -f $(CURDIR)/Makefile $@
85
86$(KBUILD_OUTPUT)/Rules.mak:
87 @echo > $@
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000088 @echo top_srcdir=$(top_srcdir) >> $@
Eric Andersen7daa0762004-10-08 07:46:08 +000089 @echo top_builddir=$(KBUILD_OUTPUT) >> $@
90 @echo include $(top_srcdir)/Rules.mak >> $@
91
92$(KBUILD_OUTPUT)/Makefile:
93 @echo > $@
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000094 @echo top_srcdir=$(top_srcdir) >> $@
Eric Andersen7daa0762004-10-08 07:46:08 +000095 @echo top_builddir=$(KBUILD_OUTPUT) >> $@
96 @echo KBUILD_SRC='$$(top_srcdir)' >> $@
97 @echo include '$$(KBUILD_SRC)'/Makefile >> $@
98
99# Leave processing to above invocation of make
100skip-makefile := 1
101endif # ifneq ($(KBUILD_OUTPUT),)
102endif # ifeq ($(KBUILD_SRC),)
103
104ifeq ($(skip-makefile),)
105
106_all: all
Glenn L McGrath6376b582003-09-24 15:48:29 +0000107
Rob Landleyd24eaac2005-09-26 15:49:41 +0000108help:
109 @echo 'Cleaning:'
110 @echo ' clean - delete temporary files created by build'
111 @echo ' distclean - delete all non-source files (including .config)'
112 @echo
113 @echo 'Build:'
114 @echo ' all - Executable and documentation'
115 @echo ' busybox - the swiss-army executable'
116 @echo ' doc - docs/BusyBox.{txt,html,1}'
117 @echo
118 @echo 'Configuration:'
119 @echo ' allnoconfig - disable all symbols in .config'
120 @echo ' allyesconfig - enable (almost) all symbols in .config'
121 @echo ' config - text based configurator (of last resort).'
122 @echo ' defconfig - set .config to defaults'
123 @echo ' menuconfig - interactive curses-based configurator'
124 @echo ' oldconfig - resolve any unresolved symbols in .config'
125 @echo
126 @echo 'Installation:'
127 @echo ' install - install busybox and symlinks into $prefix'
128 @echo ' install-hardlinks - install busybox and hardlinks into $prefix'
129 @echo ' uninstall'
130 @echo
131 @echo 'Development:'
132 @echo ' check - run the test suite for all applets'
133 @echo ' randconfig - generate a random configuration'
134 @echo ' release - create a distribution tarball'
135 @echo ' sizes - show size of all enabled busybox symbols'
136 @echo
137
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000138
139ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
140
141all: menuconfig
142
143# configuration
144# ---------------------------------------------------------------------------
145
146scripts/config/conf: scripts/config/Makefile
147 $(MAKE) -C scripts/config conf
148 -@if [ ! -f .config ] ; then \
149 cp $(CONFIG_DEFCONFIG) .config; \
150 fi
151
152scripts/config/mconf: scripts/config/Makefile
153 $(MAKE) -C scripts/config ncurses conf mconf
154 -@if [ ! -f .config ] ; then \
155 cp $(CONFIG_DEFCONFIG) .config; \
156 fi
157
158menuconfig: scripts/config/mconf
159 @./scripts/config/mconf $(CONFIG_CONFIG_IN)
160
161config: scripts/config/conf
162 @./scripts/config/conf $(CONFIG_CONFIG_IN)
163
164oldconfig: scripts/config/conf
165 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
166
167randconfig: scripts/config/conf
168 @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
169
170allyesconfig: scripts/config/conf
171 @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
172 sed -i -r -e "s/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX).*/# \1 is not set/" .config
173 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
174
175allnoconfig: scripts/config/conf
176 @./scripts/config/conf -n $(CONFIG_CONFIG_IN)
177
178defconfig: scripts/config/conf
179 @./scripts/config/conf -d $(CONFIG_CONFIG_IN)
180
181else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
Eric Andersen00814662001-04-26 23:29:10 +0000182
Eric Andersend4fcb802003-07-15 00:28:26 +0000183all: busybox busybox.links doc
Erik Andersen0a704e82000-05-03 03:19:06 +0000184
Eric Andersen7daa0762004-10-08 07:46:08 +0000185# In this section, we need .config
186-include $(top_builddir)/.config.cmd
187include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
188-include $(top_builddir)/.depend
189
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000190endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
191
192busybox: .depend $(libraries-y)
Mike Frysinger67451842005-09-27 04:06:39 +0000193 $(CC) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
Eric Andersen85208e22002-04-12 12:05:57 +0000194 $(STRIPCMD) $@
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000195
Eric Andersen7daa0762004-10-08 07:46:08 +0000196busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000197 - $(SHELL) $^ >$@
198
Eric Andersen63024862004-10-13 17:45:57 +0000199install: $(top_srcdir)/applets/install.sh busybox busybox.links
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000200 $(SHELL) $< $(PREFIX)
Eric Andersen13879102004-08-26 23:13:00 +0000201ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
202 @echo
203 @echo
204 @echo --------------------------------------------------
205 @echo You will probably need to make your busybox binary
206 @echo setuid root to ensure all configured applets will
207 @echo work properly.
208 @echo --------------------------------------------------
209 @echo
210endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000211
Glenn L McGrath87470de2003-08-29 12:20:31 +0000212uninstall: busybox.links
213 rm -f $(PREFIX)/bin/busybox
214 for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
Eric Andersen1f30a412002-04-13 13:39:48 +0000215
Peter Kjellerstedt88da3ef2004-11-02 09:05:22 +0000216install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000217 $(SHELL) $< $(PREFIX) --hardlinks
218
Mike Frysingerce0cf1d2005-09-24 05:47:52 +0000219check test: busybox
Eric Andersen7daa0762004-10-08 07:46:08 +0000220 bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
221 $(top_srcdir)/testsuite/runtest
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000222
Rob Landleyd9f71652005-08-28 08:24:21 +0000223sizes:
Rob Landleyac692b22005-09-01 02:40:21 +0000224 -rm -f busybox
225 $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
226 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true
Rob Landleyd9f71652005-08-28 08:24:21 +0000227 nm --size-sort busybox
Rob Landley16890752005-09-02 00:41:53 +0000228
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000229# Documentation Targets
Eric Andersenf7300882004-04-06 15:26:25 +0000230doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
John Beppu94e50542001-04-05 19:42:03 +0000231
Eric Andersen7daa0762004-10-08 07:46:08 +0000232docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod
233 -mkdir -p docs
234 - ( cat $(top_srcdir)/docs/busybox_header.pod; \
235 $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h; \
236 cat $(top_srcdir)/docs/busybox_footer.pod ) > docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000237
Eric Andersen67536ff2000-07-06 22:53:22 +0000238docs/BusyBox.txt: docs/busybox.pod
Mike Frysingerc99e2c52005-07-28 22:14:35 +0000239 $(SECHO)
240 $(SECHO) BusyBox Documentation
241 $(SECHO)
Eric Andersen29be79c2000-12-01 22:57:44 +0000242 -mkdir -p docs
Eric Andersen19f86202001-02-17 00:42:47 +0000243 -pod2text $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000244
Eric Andersen67536ff2000-07-06 22:53:22 +0000245docs/BusyBox.1: docs/busybox.pod
Eric Andersen09a34e52000-12-01 19:40:18 +0000246 - mkdir -p docs
Eric Andersen29be79c2000-12-01 22:57:44 +0000247 - pod2man --center=BusyBox --release="version $(VERSION)" \
Eric Andersen19f86202001-02-17 00:42:47 +0000248 $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000249
Eric Andersen2423b122001-12-08 01:56:15 +0000250docs/BusyBox.html: docs/busybox.net/BusyBox.html
Eric Andersen1cf81662001-02-17 15:55:15 +0000251 - mkdir -p docs
Eric Andersene2f6e122000-12-01 19:55:04 +0000252 -@ rm -f docs/BusyBox.html
Eric Andersen7daa0762004-10-08 07:46:08 +0000253 -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000254
Eric Andersen2423b122001-12-08 01:56:15 +0000255docs/busybox.net/BusyBox.html: docs/busybox.pod
256 -@ mkdir -p docs/busybox.net
Eric Andersen19f86202001-02-17 00:42:47 +0000257 - pod2html --noindex $< > \
Eric Andersen2423b122001-12-08 01:56:15 +0000258 docs/busybox.net/BusyBox.html
Eric Andersen36763742001-04-24 21:46:07 +0000259 -@ rm -f pod2htm*
Erik Andersen0a704e82000-05-03 03:19:06 +0000260
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000261# The nifty new buildsystem stuff
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000262scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
Eric Andersen7daa0762004-10-08 07:46:08 +0000263 $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
Erik Andersen1d1d9502000-04-21 01:26:49 +0000264
Mike Frysingerde242f62005-09-25 04:53:35 +0000265DEP_INCLUDES := include/config.h include/bb_config.h
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000266
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000267ifeq ($(strip $(CONFIG_BBCONFIG)),y)
268DEP_INCLUDES += include/bbconfigopts.h
269
270include/bbconfigopts.h: .config
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000271 $(top_srcdir)/scripts/config/mkconfigs > $@
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000272endif
273
Mike Frysingerde242f62005-09-25 04:53:35 +0000274depend dep $(top_builddir)/.depend: .depend
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000275.depend: scripts/bb_mkdep $(DEP_INCLUDES)
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000276 @rm -f .depend
277 @mkdir -p include/config
Mike Frysinger016d6282005-09-24 06:15:23 +0000278 scripts/bb_mkdep -c include/config.h -c include/bb_config.h > $@.tmp
279 mv $@.tmp $@
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000280
Eric Andersenc9f20d92002-12-05 08:41:41 +0000281include/config.h: .config
Eric Andersen7daa0762004-10-08 07:46:08 +0000282 @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
Glenn L McGrathb19c73d2003-08-29 13:25:55 +0000283 $(MAKE) -C scripts/config conf; \
Eric Andersen3cd27602001-10-24 07:58:02 +0000284 fi;
Eric Andersen7daa0762004-10-08 07:46:08 +0000285 @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
Eric Andersen85208e22002-04-12 12:05:57 +0000286
Rob Landley193c8c72005-07-27 06:55:36 +0000287include/bb_config.h: include/config.h
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000288 @echo -e "#ifndef BB_CONFIG_H\n#define BB_CONFIG_H" > $@
289 @sed -e 's/#undef CONFIG_\(.*\)/#define ENABLE_\1 0/' \
Rob Landleyef8f4232005-07-28 19:36:33 +0000290 -e 's/#define CONFIG_\(.*\)/#define CONFIG_\1\n#define ENABLE_\1/' \
291 < $< >> $@
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000292 @echo "#endif" >> $@
Rob Landley193c8c72005-07-27 06:55:36 +0000293
Eric Andersenc9f20d92002-12-05 08:41:41 +0000294finished2:
Mike Frysingerc99e2c52005-07-28 22:14:35 +0000295 $(SECHO)
296 $(SECHO) Finished installing...
297 $(SECHO)
Eric Andersen19f86202001-02-17 00:42:47 +0000298
Eric Andersencc8ed391999-10-05 16:24:54 +0000299clean:
Rob Landleya7e14db2005-09-11 01:16:47 +0000300 - $(MAKE) -C scripts/config $@
Eric Andersenf7300882004-04-06 15:26:25 +0000301 - rm -f docs/busybox.dvi docs/busybox.ps \
302 docs/busybox.pod docs/busybox.net/busybox.html \
Eric Andersen24e098a2003-08-22 20:53:38 +0000303 docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
304 docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
305 docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \
Rob Landley90252bb2005-09-20 14:09:57 +0000306 .config.old busybox
307 - rm -rf _install testsuite/links
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000308 - find . -name .\*.flags -exec rm -f {} \;
Eric Andersen87715172002-07-31 03:45:05 +0000309 - find . -name \*.o -exec rm -f {} \;
310 - find . -name \*.a -exec rm -f {} \;
Eric Andersencc8ed391999-10-05 16:24:54 +0000311
312distclean: clean
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000313 - rm -f scripts/bb_mkdep
Mike Frysingerf9bd87b2005-08-11 21:59:52 +0000314 - rm -rf include/config include/config.h include/bb_config.h include/bbconfigopts.h
Eric Andersena9953432003-01-27 22:11:59 +0000315 - find . -name .depend -exec rm -f {} \;
Eric Andersenc9f20d92002-12-05 08:41:41 +0000316 rm -f .config .config.old .config.cmd
Eric Andersencc8ed391999-10-05 16:24:54 +0000317
Eric Andersenc9f20d92002-12-05 08:41:41 +0000318release: distclean #doc
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000319 cd ..; \
320 rm -rf $(PROG)-$(VERSION); \
321 cp -a busybox $(PROG)-$(VERSION); \
322 \
323 find $(PROG)-$(VERSION)/ -type d \
Eric Andersen4306bb12005-08-17 00:03:23 +0000324 -name .svn \
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000325 -print \
326 -exec rm -rf {} \; ; \
327 \
328 find $(PROG)-$(VERSION)/ -type f \
329 -name .\#* \
330 -print \
331 -exec rm -f {} \; ; \
332 \
Glenn L McGrath0874a612003-11-17 10:26:43 +0000333 tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000334
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000335tags:
336 ctags -R .
Matt Kraai4e05da82001-11-19 19:47:56 +0000337
Eric Andersenc9f20d92002-12-05 08:41:41 +0000338
Eric Andersen7daa0762004-10-08 07:46:08 +0000339endif # ifeq ($(skip-makefile),)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000340
Eric Andersen7daa0762004-10-08 07:46:08 +0000341.PHONY: dummy subdirs release distclean clean config oldconfig \
342 menuconfig tags check test depend buildtree