removed warning "comparison between signed and unsigned".
[oweals/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 \
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 CONFIG_DEFCONFIG = $(top_srcdir)/defconfig
41
42 ifeq ($(KBUILD_SRC),)
43
44 ifdef O
45   ifeq ("$(origin O)", "command line")
46     KBUILD_OUTPUT := $(O)
47     top_builddir := $(O)
48   endif
49 else
50 # If no alternate output-dir was specified, we build in cwd
51 # We are using KBUILD_OUTPUT nevertheless to make sure that we create
52 # Rules.mak and the toplevel Makefile, in case they don't exist.
53   KBUILD_OUTPUT := $(top_builddir)
54 endif
55
56 ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
57 # pull in OS specific commands like cp, mkdir, etc. early
58 -include $(top_srcdir)/Rules.mak
59 endif
60
61 # All object directories.
62 OBJ_DIRS := $(DIRS)
63 all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include)
64 all_tree: $(all_tree)
65 $(all_tree):
66         @mkdir -p "$@"
67
68 ifneq ($(KBUILD_OUTPUT),)
69 # Invoke a second make in the output directory, passing relevant variables
70 # Check that the output directory actually exists
71 saved-output := $(KBUILD_OUTPUT)
72 KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
73 $(if $(wildcard $(KBUILD_OUTPUT)),, \
74      $(error output directory "$(saved-output)" does not exist))
75
76 .PHONY: $(MAKECMDGOALS)
77
78 $(filter-out _all,$(MAKECMDGOALS)) _all: $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUTPUT)/Makefile all_tree
79         $(MAKE) -C $(KBUILD_OUTPUT) \
80         top_srcdir=$(top_srcdir) \
81         top_builddir=$(top_builddir) \
82         KBUILD_SRC=$(top_srcdir) \
83         -f $(CURDIR)/Makefile $@
84
85 $(KBUILD_OUTPUT)/Rules.mak:
86         @echo > $@
87         @echo top_srcdir=$(top_srcdir) >> $@
88         @echo top_builddir=$(KBUILD_OUTPUT) >> $@
89         @echo include $(top_srcdir)/Rules.mak >> $@
90
91 $(KBUILD_OUTPUT)/Makefile:
92         @echo > $@
93         @echo top_srcdir=$(top_srcdir) >> $@
94         @echo top_builddir=$(KBUILD_OUTPUT) >> $@
95         @echo KBUILD_SRC='$$(top_srcdir)' >> $@
96         @echo include '$$(KBUILD_SRC)'/Makefile >> $@
97
98 # Leave processing to above invocation of make
99 skip-makefile := 1
100 endif # ifneq ($(KBUILD_OUTPUT),)
101 endif # ifeq ($(KBUILD_SRC),)
102
103 ifeq ($(skip-makefile),)
104
105 # We only need a copy of the Makefile for the config targets and reuse
106 # the rest from the source directory, i.e. we do not cp ALL_MAKEFILES.
107 scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile
108         cp $< $@
109
110 _all: all
111
112 help:
113         @echo 'Cleaning:'
114         @echo '  clean                  - delete temporary files created by build'
115         @echo '  distclean              - delete all non-source files (including .config)'
116         @echo
117         @echo 'Build:'
118         @echo '  all                    - Executable and documentation'
119         @echo '  busybox                - the swiss-army executable'
120         @echo '  doc                    - docs/BusyBox.{txt,html,1}'
121         @echo
122         @echo 'Configuration:'
123         @echo '  allnoconfig            - disable all symbols in .config'
124         @echo '  allyesconfig           - enable (almost) all symbols in .config'
125         @echo '  allbareconfig          - enable all basics without any features'
126         @echo '  config         - text based configurator (of last resort)'
127         @echo '  defconfig              - set .config to defaults'
128         @echo '  menuconfig             - interactive curses-based configurator'
129         @echo '  oldconfig              - resolve any unresolved symbols in .config'
130         @echo
131         @echo 'Installation:'
132         @echo '  install                - install busybox into $prefix'
133         @echo '  uninstall'
134         @echo
135         @echo 'Development:'
136         @echo '  check                  - run the test suite for all applets'
137         @echo '  randconfig             - generate a random configuration'
138         @echo '  release                - create a distribution tarball'
139         @echo '  sizes                  - show size of all enabled busybox symbols'
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         $(MAKE) -C scripts/config conf
163         -@if [ ! -f .config ] ; then \
164                 cp $(CONFIG_DEFCONFIG) .config; \
165         fi
166
167 scripts/config/mconf: scripts/config/Makefile
168         $(MAKE) -C scripts/config ncurses conf mconf
169         -@if [ ! -f .config ] ; then \
170                 cp $(CONFIG_DEFCONFIG) .config; \
171         fi
172
173 menuconfig: scripts/config/mconf
174         @./scripts/config/mconf $(CONFIG_CONFIG_IN)
175
176 config: scripts/config/conf
177         @./scripts/config/conf $(CONFIG_CONFIG_IN)
178
179 oldconfig: scripts/config/conf
180         @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
181
182 randconfig: scripts/config/conf
183         @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
184
185 allyesconfig: scripts/config/conf
186         @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
187         sed -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG.*|STATIC|SELINUX|FEATURE_DEVFS|BUILD_AT_ONCE))=.*/# \1 is not set/" .config
188         echo "CONFIG_FEATURE_SHARED_BUSYBOX=y" >> .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: scripts/config/conf
195         @./scripts/config/conf -d $(CONFIG_CONFIG_IN)
196
197 allbareconfig: scripts/config/conf
198         @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
199         @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
200         @sed -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config
201         @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config
202         @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
203
204 else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
205
206 all: busybox busybox.links doc
207
208 # In this section, we need .config
209 -include $(top_builddir)/.config.cmd
210 include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
211
212 endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
213
214 -include $(top_builddir)/.config
215 -include $(top_builddir)/.depend
216
217
218 ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y)
219 libraries-y:=
220 # Which parts of the internal libs are requested?
221 # Per default we only want what was actually selected.
222 # -a denotes all while -y denotes the selected ones.
223 ifeq ($(strip $(CONFIG_FEATURE_FULL_LIBBUSYBOX)),y)
224 LIBRARY_DEFINE:=$(LIBRARY_DEFINE-a)
225 LIBRARY_SRC   :=$(LIBRARY_SRC-a)
226 else # CONFIG_FEATURE_FULL_LIBBUSYBOX
227 LIBRARY_DEFINE:=$(LIBRARY_DEFINE-y)
228 LIBRARY_SRC   :=$(LIBRARY_SRC-y)
229 endif # CONFIG_FEATURE_FULL_LIBBUSYBOX
230 APPLET_SRC:=$(APPLET_SRC-y)
231 APPLETS_DEFINE:=$(APPLETS_DEFINE-y)
232 else  # CONFIG_BUILD_AT_ONCE
233 # no --combine, build archives out of the individual .o
234 # This was the old way the binary was built.
235 libbusybox-obj:=archival/libunarchive/libunarchive.a \
236         networking/libiproute/libiproute.a \
237         libpwdgrp/libpwdgrp.a \
238         coreutils/libcoreutils/libcoreutils.a \
239         libbb/libbb.a
240 libbusybox-obj:=$(patsubst %,$(top_builddir)/%,$(libbusybox-obj))
241
242 ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
243 # linking against libbusybox, so don't build the .a already contained in the .so
244 libraries-y:=$(filter-out $(libbusybox-obj),$(libraries-y))
245 endif # CONFIG_FEATURE_SHARED_BUSYBOX
246 endif # CONFIG_BUILD_AT_ONCE
247
248
249 ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
250 LD_LIBBUSYBOX:=libbusybox.so
251 LIBBUSYBOX_SONAME:=$(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION)
252 DO_INSTALL_LIBS:=$(LD_LIBBUSYBOX) \
253         $(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
254         $(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION)
255
256 ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y)
257 ifneq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
258 # --combine but not linking against libbusybox, so compile all
259 BUSYBOX_SRC   := $(LIBRARY_SRC)
260 BUSYBOX_DEFINE:= $(LIBRARY_DEFINE)
261 endif # !CONFIG_FEATURE_SHARED_BUSYBOX
262 $(LIBBUSYBOX_SONAME): $(LIBRARY_SRC)
263 else # CONFIG_BUILD_AT_ONCE
264 $(LIBBUSYBOX_SONAME): $(libbusybox-obj)
265 endif # CONFIG_BUILD_AT_ONCE
266 endif # CONFIG_BUILD_LIBBUSYBOX
267
268 ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y)
269 LDBUSYBOX:=-L$(top_builddir) -lbusybox
270 endif
271
272 ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
273 $(LIBBUSYBOX_SONAME):
274 ifndef MAJOR_VERSION
275         $(error MAJOR_VERSION needed for $@ is not defined)
276 endif
277         $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS) -shared \
278         $(CFLAGS_PIC) \
279         -Wl,-soname=$(LD_LIBBUSYBOX).$(MAJOR_VERSION) \
280         -Wl,-z,combreloc $(LIB_LDFLAGS) \
281         -o $(@) \
282         -Wl,--start-group -Wl,--whole-archive \
283         $(LIBRARY_DEFINE) $(^) \
284         -Wl,--no-whole-archive -Wl,--end-group
285         $(RM_F) $(DO_INSTALL_LIBS)
286         for i in $(DO_INSTALL_LIBS); do $(LN_S) -v $(@) $$i ; done
287         $(STRIPCMD) $@
288
289 endif # ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
290
291 busybox: .depend $(LIBBUSYBOX_SONAME) $(BUSYBOX_SRC) $(libraries-y)
292         $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(PROG_CFLAGS) $(LDFLAGS)  \
293         -o $@ -Wl,--start-group  \
294         $(APPLETS_DEFINE) $(APPLET_SRC) \
295         $(BUSYBOX_DEFINE) $(BUSYBOX_SRC) $(libraries-y) \
296         $(LDBUSYBOX) $(LIBRARIES) \
297         -Wl,--end-group
298         $(STRIPCMD) $@
299
300 busybox.links: $(top_srcdir)/applets/busybox.mkll include/bb_config.h $(top_srcdir)/include/applets.h
301         - $(SHELL) $^ >$@
302
303 install: $(top_srcdir)/applets/install.sh busybox busybox.links
304         DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \
305                 $(SHELL) $< $(PREFIX) $(INSTALL_OPTS)
306 ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
307         @echo
308         @echo
309         @echo --------------------------------------------------
310         @echo You will probably need to make your busybox binary
311         @echo setuid root to ensure all configured applets will
312         @echo work properly.
313         @echo --------------------------------------------------
314         @echo
315 endif
316
317 uninstall: busybox.links
318         $(RM_F) $(PREFIX)/bin/busybox
319         for i in `cat busybox.links` ; do $(RM_F) $(PREFIX)$$i; done
320 ifneq ($(strip $(DO_INSTALL_LIBS)),n)
321         for i in $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS); do \
322                 $(RM_F) $(PREFIX)$$i; \
323         done
324 endif
325
326 # see if we are in verbose mode
327 KBUILD_VERBOSE :=
328 ifdef V
329   ifeq ("$(origin V)", "command line")
330     KBUILD_VERBOSE := $(V)
331   endif
332 endif
333 ifneq ($(strip $(KBUILD_VERBOSE)),)
334   CHECK_VERBOSE := -v
335 # ARFLAGS+=v
336 endif
337 check test: busybox
338         bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
339         $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
340
341 sizes:
342         -$(RM_F) busybox
343         $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
344                 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true
345         $(NM) --size-sort busybox
346
347 # Documentation Targets
348 doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
349
350 docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod
351         -mkdir -p docs
352         - ( cat $(top_srcdir)/docs/busybox_header.pod; \
353             $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h; \
354             cat $(top_srcdir)/docs/busybox_footer.pod ) > docs/busybox.pod
355
356 docs/BusyBox.txt: docs/busybox.pod
357         $(SECHO)
358         $(SECHO) BusyBox Documentation
359         $(SECHO)
360         -mkdir -p docs
361         -pod2text $< > $@
362
363 docs/BusyBox.1: docs/busybox.pod
364         - mkdir -p docs
365         - pod2man --center=BusyBox --release="version $(VERSION)" \
366                 $< > $@
367
368 docs/BusyBox.html: docs/busybox.net/BusyBox.html
369         - mkdir -p docs
370         -@ $(RM_F) docs/BusyBox.html
371         -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html
372
373 docs/busybox.net/BusyBox.html: docs/busybox.pod
374         -@ mkdir -p docs/busybox.net
375         -  pod2html --noindex $< > \
376             docs/busybox.net/BusyBox.html
377         -@ $(RM_F) pod2htm*
378
379 # The nifty new buildsystem stuff
380 scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
381         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
382
383 DEP_INCLUDES := include/config.h include/bb_config.h include/_usage.h
384
385 ifeq ($(strip $(CONFIG_BBCONFIG)),y)
386 DEP_INCLUDES += include/bbconfigopts.h
387
388 include/bbconfigopts.h: .config
389         $(top_srcdir)/scripts/config/mkconfigs > $@
390 endif
391
392 depend dep: .depend
393 .depend: scripts/bb_mkdep $(DEP_INCLUDES)
394         @$(RM_F) .depend
395         @mkdir -p include/config
396         scripts/bb_mkdep -c include/config.h -c include/bb_config.h \
397                         -I $(top_srcdir)/include $(top_srcdir) > $@.tmp
398         mv $@.tmp $@
399
400 include/config.h: .config
401         @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
402             $(MAKE) -C scripts/config conf; \
403         fi;
404         @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
405
406 include/bb_config.h: include/config.h
407         @echo -e "#ifndef BB_CONFIG_H\n#define BB_CONFIG_H" > $@
408         @sed -e 's/#undef CONFIG_\(.*\)/#define ENABLE_\1 0/' \
409             -e 's/#define CONFIG_\(.*\)/#define CONFIG_\1\n#define ENABLE_\1/' \
410                 < $< >> $@
411         @echo "#endif" >> $@
412
413 # Create macros for usage.h, e.g.:
414 #if ENABLE_HAVE_DOT_CONFIG
415 #define USAGE_HAVE_DOT_CONFIG(a) a
416 #else
417 #define USAGE_HAVE_DOT_CONFIG(a)
418 #endif
419 include/_usage.h: .config
420         awk '/CONFIG|BB_APPLET/{gsub("#[[:space:]]*|=y|.*CONFIG_|.*BB_APPLET_","");if(!/=/){print("#if ENABLE_"$$1"\n#define USAGE_"$$1"(a) a\n#else\n#define USAGE_"$$1"(a)\n#endif");}}' $(<) > $(@)
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             $(DO_INSTALL_LIBS) $(LIBBUSYBOX_SONAME) \
430             .config.old busybox
431         - rm -rf _install testsuite/links
432         - find . -name .\*.flags -exec $(RM_F) {} \;
433         - find . -name \*.o -exec $(RM_F) {} \;
434         - find . -name \*.a -exec $(RM_F) {} \;
435         - find . -name \*.so -exec $(RM_F) {} \;
436
437 distclean: clean
438         - $(RM_F) scripts/bb_mkdep
439         - rm -rf include/config $(DEP_INCLUDES)
440         - find . -name .depend -exec $(RM_F) {} \;
441         $(RM_F) .config .config.old .config.cmd
442
443 release: distclean #doc
444         cd ..; \
445         rm -rf $(PROG)-$(VERSION); \
446         cp -a busybox $(PROG)-$(VERSION); \
447         \
448         find $(PROG)-$(VERSION)/ -type d \
449                 -name .svn \
450                 -print \
451                 -exec rm -rf {} \; ; \
452         \
453         find $(PROG)-$(VERSION)/ -type f \
454                 -name .\#* \
455                 -print \
456                 -exec $(RM_F) {} \; ; \
457         \
458         tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
459
460 tags:
461         ctags -R .
462
463
464 endif # ifeq ($(skip-makefile),)
465
466 .PHONY: dummy subdirs release distclean clean config oldconfig \
467         menuconfig tags check test depend dep buildtree