OSDN Git Service

- patch from Denis Vlasenko to make sizes PHONY and to add objsizes which prints
[android-x86/external-busybox.git] / Makefile
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
4 #
5 # Licensed under GPLv2, see the file LICENSE in this tarball for details.
6 #
7
8 #--------------------------------------------------------------
9 # You shouldn't need to mess with anything beyond this point...
10 #--------------------------------------------------------------
11 noconfig_targets := menuconfig config oldconfig randconfig \
12         defconfig allyesconfig allnoconfig allbareconfig \
13         clean distclean help \
14         release tags
15
16 # the toplevel sourcedir
17 ifndef top_srcdir
18 top_srcdir=$(CURDIR)
19 endif
20 # toplevel directory of the object-tree
21 ifndef top_builddir
22 top_builddir=$(CURDIR)
23 endif
24
25 export srctree=$(top_srcdir)
26 vpath %/Config.in $(srctree)
27
28 DIRS:=applets archival archival/libunarchive coreutils console-tools \
29         debianutils editors findutils init miscutils modutils networking \
30         networking/libiproute networking/udhcp procps loginutils shell \
31         sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb
32
33 SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS))
34
35 # That's our default target when none is given on the command line
36 .PHONY: _all
37 _all:
38
39 CONFIG_CONFIG_IN = $(top_srcdir)/Config.in
40
41 ifeq ($(KBUILD_SRC),)
42
43 ifdef O
44   ifeq ("$(origin O)", "command line")
45     KBUILD_OUTPUT := $(O)
46     top_builddir := $(O)
47   endif
48 else
49 # If no alternate output-dir was specified, we build in cwd
50 # We are using KBUILD_OUTPUT nevertheless to make sure that we create
51 # Rules.mak and the toplevel Makefile, in case they don't exist.
52   KBUILD_OUTPUT := $(top_builddir)
53 endif
54
55 ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
56 # pull in OS specific commands like cp, mkdir, etc. early
57 -include $(top_srcdir)/Rules.mak
58 endif
59
60 # All object directories.
61 OBJ_DIRS := $(DIRS)
62 all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include)
63 all_tree: $(all_tree)
64 $(all_tree):
65         @mkdir -p "$@"
66
67 ifneq ($(KBUILD_OUTPUT),)
68 # Invoke a second make in the output directory, passing relevant variables
69 # Check that the output directory actually exists
70 saved-output := $(KBUILD_OUTPUT)
71 KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
72 $(if $(wildcard $(KBUILD_OUTPUT)),, \
73      $(error output directory "$(saved-output)" does not exist))
74
75 .PHONY: $(MAKECMDGOALS)
76
77 $(filter-out _all,$(MAKECMDGOALS)) _all: $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUTPUT)/Makefile all_tree
78         $(Q)$(MAKE) -C $(KBUILD_OUTPUT) \
79         top_srcdir=$(top_srcdir) \
80         top_builddir=$(top_builddir) \
81         KBUILD_SRC=$(top_srcdir) \
82         -f $(CURDIR)/Makefile $@
83
84 $(KBUILD_OUTPUT)/Rules.mak:
85         @echo > $@
86         @echo top_srcdir=$(top_srcdir) >> $@
87         @echo top_builddir=$(KBUILD_OUTPUT) >> $@
88         @echo include $(top_srcdir)/Rules.mak >> $@
89
90 $(KBUILD_OUTPUT)/Makefile:
91         @echo > $@
92         @echo top_srcdir=$(top_srcdir) >> $@
93         @echo top_builddir=$(KBUILD_OUTPUT) >> $@
94         @echo KBUILD_SRC='$$(top_srcdir)' >> $@
95         @echo include '$$(KBUILD_SRC)'/Makefile >> $@
96
97 # Leave processing to above invocation of make
98 skip-makefile := 1
99 endif # ifneq ($(KBUILD_OUTPUT),)
100 endif # ifeq ($(KBUILD_SRC),)
101
102 ifeq ($(skip-makefile),)
103
104 # We only need a copy of the Makefile for the config targets and reuse
105 # the rest from the source directory, i.e. we do not cp ALL_MAKEFILES.
106 scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile
107         cp $< $@
108
109 _all: all
110
111 help:
112         @echo 'Cleaning:'
113         @echo '  clean                  - delete temporary files created by build'
114         @echo '  distclean              - delete all non-source files (including .config)'
115         @echo
116         @echo 'Build:'
117         @echo '  all                    - Executable and documentation'
118         @echo '  busybox                - the swiss-army executable'
119         @echo '  doc                    - docs/BusyBox.{txt,html,1}'
120         @echo
121         @echo 'Configuration:'
122         @echo '  allnoconfig            - disable all symbols in .config'
123         @echo '  allyesconfig           - enable all symbols in .config (see defconfig)'
124         @echo '  allbareconfig          - enable all applets without any sub-features'
125         @echo '  config         - text based configurator (of last resort)'
126         @echo '  defconfig              - set .config to largest generic configuration'
127         @echo '  menuconfig             - interactive curses-based configurator'
128         @echo '  oldconfig              - resolve any unresolved symbols in .config'
129         @echo
130         @echo 'Installation:'
131         @echo '  install                - install busybox into $(PREFIX)'
132         @echo '  uninstall'
133         @echo
134         @echo 'Development:'
135         @echo '  check                  - run the test suite for all applets'
136         @echo '  randconfig             - generate a random configuration'
137         @echo '  release                - create a distribution tarball'
138         @echo '  sizes                  - show size of all enabled busybox symbols'
139         @echo '  objsizes               - show size of each .o object built'
140         @echo
141
142
143 include $(top_srcdir)/Rules.mak
144
145 ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
146
147 # Default target if none was requested explicitly
148 all: menuconfig
149
150 # warn if no configuration exists and we are asked to build a non-config target
151 .config:
152         @echo ""
153         @echo "No $(top_builddir)/$@ found!"
154         @echo "Please refer to 'make  help', section Configuration."
155         @echo ""
156         @exit 1
157
158 # configuration
159 # ---------------------------------------------------------------------------
160
161 scripts/config/conf: scripts/config/Makefile
162         $(Q)$(MAKE) -C scripts/config conf
163         -@if [ ! -f .config ] ; then \
164                 touch .config; \
165         fi
166
167 scripts/config/mconf: scripts/config/Makefile
168         $(Q)$(MAKE) -C scripts/config ncurses conf mconf
169         -@if [ ! -f .config ] ; then \
170                 touch .config; \
171         fi
172
173 menuconfig: scripts/config/mconf
174         @[ -f .config ] || make $(MAKEFLAGS) defconfig
175         @./scripts/config/mconf $(CONFIG_CONFIG_IN)
176
177 config: scripts/config/conf
178         @./scripts/config/conf $(CONFIG_CONFIG_IN)
179
180 oldconfig: scripts/config/conf
181         @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
182
183 randconfig: scripts/config/conf
184         @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
185
186 allyesconfig: scripts/config/conf
187         @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
188         @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER)=.*/# \1 is not set/" .config
189         @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
190
191 allnoconfig: scripts/config/conf
192         @./scripts/config/conf -n $(CONFIG_CONFIG_IN)
193
194 # defconfig is allyesconfig minus any features that are specialized enough
195 # or cause enough behavior change that the user really should switch them on
196 # manually if that's what they want.  Sort of "maximum sane config".
197
198 defconfig: scripts/config/conf
199         @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
200         @$(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
201         @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
202
203
204 allbareconfig: scripts/config/conf
205         @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
206         @$(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
207         @$(SED) -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config
208         @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config
209         @yes n | ./scripts/config/conf -o $(CONFIG_CONFIG_IN)
210
211 else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
212
213 all: busybox busybox.links doc
214
215 # In this section, we need .config
216 -include $(top_builddir)/.config.cmd
217 include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
218
219 endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
220
221 -include $(top_builddir)/.config
222 -include $(top_builddir)/.depend
223
224
225 ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y)
226 libraries-y:=
227 # Which parts of the internal libs are requested?
228 # Per default we only want what was actually selected.
229 # -a denotes all while -y denotes the selected ones.
230 ifeq ($(strip $(CONFIG_FEATURE_FULL_LIBBUSYBOX)),y)
231 LIBRARY_DEFINE:=$(LIBRARY_DEFINE-a)
232 LIBRARY_SRC   :=$(LIBRARY_SRC-a)
233 else # CONFIG_FEATURE_FULL_LIBBUSYBOX
234 LIBRARY_DEFINE:=$(LIBRARY_DEFINE-y)
235 LIBRARY_SRC   :=$(LIBRARY_SRC-y)
236 endif # CONFIG_FEATURE_FULL_LIBBUSYBOX
237 APPLET_SRC:=$(APPLET_SRC-y)
238 APPLETS_DEFINE:=$(APPLETS_DEFINE-y)
239 else  # CONFIG_BUILD_AT_ONCE
240 # no --combine, build archives out of the individual .o
241 # This was the old way the binary was built.
242 libbusybox-obj:=archival/libunarchive/libunarchive.a \
243         networking/libiproute/libiproute.a \
244         libpwdgrp/libpwdgrp.a \
245         coreutils/libcoreutils/libcoreutils.a \
246         libbb/libbb.a
247 libbusybox-obj:=$(patsubst %,$(top_builddir)/%,$(libbusybox-obj))
248
249 ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
250 # linking against libbusybox, so don't build the .a already contained in the .so
251 libraries-y:=$(filter-out $(libbusybox-obj),$(libraries-y))
252 endif # CONFIG_FEATURE_SHARED_BUSYBOX
253 endif # CONFIG_BUILD_AT_ONCE
254
255
256 ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
257 LD_LIBBUSYBOX:=libbusybox.so
258 LIBBUSYBOX_SONAME:=$(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)
259 DO_INSTALL_LIBS:=$(LD_LIBBUSYBOX) \
260         $(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
261         $(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION)
262 endif # CONFIG_BUILD_LIBBUSYBOX
263
264 ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y)
265 ifneq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
266 # --combine but not linking against libbusybox, so compile all
267 BUSYBOX_SRC   := $(LIBRARY_SRC)
268 BUSYBOX_DEFINE:= $(LIBRARY_DEFINE)
269 endif # !CONFIG_FEATURE_SHARED_BUSYBOX
270 $(LIBBUSYBOX_SONAME): $(LIBRARY_SRC)
271 else # CONFIG_BUILD_AT_ONCE
272 $(LIBBUSYBOX_SONAME): $(libbusybox-obj)
273 endif # CONFIG_BUILD_AT_ONCE
274
275 ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
276 LDBUSYBOX:=-L$(top_builddir) -lbusybox
277 endif
278
279 ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
280 $(LIBBUSYBOX_SONAME):
281 ifndef MAJOR_VERSION
282         $(error MAJOR_VERSION needed for $@ is not defined)
283 endif
284         $(do_link) $(LIB_CFLAGS) $(CFLAGS_COMBINE) \
285         -Wl,-soname=$(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
286         -Wl,-z,combreloc $(LIB_LDFLAGS) \
287         -o $(@) \
288         -Wl,--start-group -Wl,--whole-archive \
289         $(LIBRARY_DEFINE) $(^) \
290         -Wl,--no-whole-archive -Wl,--end-group
291         @rm -f $(DO_INSTALL_LIBS)
292         @for i in $(DO_INSTALL_LIBS); do ln -s $(@) $$i ; done
293         $(do_strip)
294
295 endif # ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
296
297 busybox_unstripped: .depend $(LIBBUSYBOX_SONAME) $(BUSYBOX_SRC) $(libraries-y)
298         $(do_link) $(PROG_CFLAGS) $(PROG_LDFLAGS) $(CFLAGS_COMBINE) \
299         -o $@ -Wl,--start-group  \
300         $(APPLETS_DEFINE) $(APPLET_SRC) \
301         $(BUSYBOX_DEFINE) $(BUSYBOX_SRC) $(libraries-y) \
302         $(LDBUSYBOX) $(LIBRARIES) \
303         -Wl,--end-group
304
305 busybox: busybox_unstripped
306         $(Q)cp busybox_unstripped busybox
307         $(do_strip)
308
309 %.bflt: %_unstripped
310         $(do_elf2flt)
311
312 busybox.links: $(top_srcdir)/applets/busybox.mkll include/bb_config.h $(top_srcdir)/include/applets.h
313         $(Q)-$(SHELL) $^ >$@
314
315 install: $(top_srcdir)/applets/install.sh busybox busybox.links
316         $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \
317                 $(SHELL) $< $(PREFIX) $(INSTALL_OPTS)
318 ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
319         @echo
320         @echo
321         @echo --------------------------------------------------
322         @echo You will probably need to make your busybox binary
323         @echo setuid root to ensure all configured applets will
324         @echo work properly.
325         @echo --------------------------------------------------
326         @echo
327 endif
328
329 uninstall: busybox.links
330         rm -f $(PREFIX)/bin/busybox
331         for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
332 ifneq ($(strip $(DO_INSTALL_LIBS)),n)
333         for i in $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS); do \
334                 rm -f $(PREFIX)$$i; \
335         done
336 endif
337
338 # see if we are in verbose mode
339 KBUILD_VERBOSE :=
340 ifdef V
341   ifeq ("$(origin V)", "command line")
342     KBUILD_VERBOSE := $(V)
343   endif
344 endif
345 ifneq ($(strip $(KBUILD_VERBOSE)),)
346   CHECK_VERBOSE := -v
347 # ARFLAGS+=v
348 endif
349 check test: busybox
350         bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
351         $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
352
353 .PHONY: sizes
354 sizes: busybox_unstripped
355         $(NM) --size-sort $(<)
356
357 .PHONY: objsizes
358 objsizes: busybox_unstripped
359         $(SHELL) $(top_srcdir)/scripts/objsizes
360
361 # Documentation Targets
362 doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
363
364 docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod $(top_srcdir)/docs/autodocifier.pl
365         $(disp_doc)
366         $(Q)-mkdir -p docs
367         $(Q)-( cat $(top_srcdir)/docs/busybox_header.pod ; \
368             $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h ; \
369             cat $(top_srcdir)/docs/busybox_footer.pod ; ) > docs/busybox.pod
370
371 docs/BusyBox.txt: docs/busybox.pod
372         $(disp_doc)
373         $(Q)-mkdir -p docs
374         $(Q)-pod2text $< > $@
375
376 docs/BusyBox.1: docs/busybox.pod
377         $(disp_doc)
378         $(Q)-mkdir -p docs
379         $(Q)-pod2man --center=BusyBox --release="version $(VERSION)" \
380                 $< > $@
381
382 docs/BusyBox.html: docs/busybox.net/BusyBox.html
383         $(disp_doc)
384         $(Q)-mkdir -p docs
385         $(Q)-rm -f docs/BusyBox.html
386         $(Q)-cp docs/busybox.net/BusyBox.html docs/BusyBox.html
387
388 docs/busybox.net/BusyBox.html: docs/busybox.pod
389         $(Q)-mkdir -p docs/busybox.net
390         $(Q)-pod2html --noindex $< > \
391             docs/busybox.net/BusyBox.html
392         $(Q)-rm -f pod2htm*
393
394 # The nifty new dependency stuff
395 scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
396         $(Q)$(HOSTCC) $(HOSTCFLAGS) -o $@ $<
397
398 DEP_INCLUDES := include/bb_config.h
399
400 ifeq ($(strip $(CONFIG_BBCONFIG)),y)
401 DEP_INCLUDES += include/bbconfigopts.h
402
403 include/bbconfigopts.h: .config
404         $(disp_gen)
405         $(Q)$(top_srcdir)/scripts/config/mkconfigs > $@
406 endif
407
408 depend dep: .depend
409 .depend: scripts/bb_mkdep $(DEP_INCLUDES)
410         $(disp_gen)
411         $(Q)rm -f .depend
412         $(Q)mkdir -p include/config
413         $(Q)scripts/bb_mkdep -I $(top_srcdir)/include $(top_srcdir) > $@.tmp
414         $(Q)mv $@.tmp $@
415
416 include/bb_config.h: .config
417         @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
418             $(MAKE) -C scripts/config conf; \
419         fi;
420         @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
421
422 clean:
423         - $(MAKE) -C scripts/config $@
424         - rm -f docs/busybox.dvi docs/busybox.ps \
425             docs/busybox.pod docs/busybox.net/busybox.html \
426             docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
427             docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
428             docs/busybox.net/BusyBox.html busybox.links \
429             libbusybox.so* \
430             .config.old busybox busybox_unstripped
431         - rm -r -f _install testsuite/links
432         - find . -name .\*.flags -o -name \*.o  -o -name \*.om \
433             -o -name \*.os -o -name \*.osm -o -name \*.a | xargs rm -f
434
435 distclean: clean
436         - rm -f scripts/bb_mkdep
437         - rm -r -f include/config $(DEP_INCLUDES)
438         - find . -name .depend'*' | xargs rm -f
439         rm -f .config .config.old .config.cmd
440
441 release: distclean #doc
442         cd ..; \
443         rm -r -f $(PROG)-$(VERSION); \
444         cp -a busybox $(PROG)-$(VERSION); \
445         \
446         find $(PROG)-$(VERSION)/ -type d \
447                 -name .svn \
448                 -print \
449                 -exec rm -r -f {} \; ; \
450         \
451         find $(PROG)-$(VERSION)/ -type f \
452                 -name .\#* \
453                 -print \
454                 -exec rm -f {} \; ; \
455         \
456         tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
457
458 tags:
459         ctags -R .
460
461
462 endif # ifeq ($(skip-makefile),)
463
464 .PHONY: dummy subdirs release distclean clean config oldconfig \
465         menuconfig tags check test depend dep buildtree