cfe62cc3269d493686551874346fd5abd01b7008
[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 bareconfig \
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)/sysdeps/$(TARGET_OS)/Config.in
40 CONFIG_DEFCONFIG = $(top_srcdir)/sysdeps/$(TARGET_OS)/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 # All object directories.
57 OBJ_DIRS := $(DIRS)
58 all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include)
59 all_tree: $(all_tree)
60 $(all_tree):
61         @mkdir -p "$@"
62
63 ifneq ($(KBUILD_OUTPUT),)
64 # Invoke a second make in the output directory, passing relevant variables
65 # Check that the output directory actually exists
66 saved-output := $(KBUILD_OUTPUT)
67 KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
68 $(if $(wildcard $(KBUILD_OUTPUT)),, \
69      $(error output directory "$(saved-output)" does not exist))
70
71 .PHONY: $(MAKECMDGOALS)
72
73 $(filter-out _all,$(MAKECMDGOALS)) _all: $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUTPUT)/Makefile all_tree
74         $(MAKE) -C $(KBUILD_OUTPUT) \
75         top_srcdir=$(top_srcdir) \
76         top_builddir=$(top_builddir) \
77         KBUILD_SRC=$(top_srcdir) \
78         PREFIX=$(PREFIX) \
79         CROSS=$(CROSS) \
80         -f $(CURDIR)/Makefile $@
81
82 $(KBUILD_OUTPUT)/Rules.mak:
83         @echo > $@
84         @echo top_srcdir=$(top_srcdir) >> $@
85         @echo top_builddir=$(KBUILD_OUTPUT) >> $@
86         @echo include $(top_srcdir)/Rules.mak >> $@
87
88 $(KBUILD_OUTPUT)/Makefile:
89         @echo > $@
90         @echo top_srcdir=$(top_srcdir) >> $@
91         @echo top_builddir=$(KBUILD_OUTPUT) >> $@
92         @echo KBUILD_SRC='$$(top_srcdir)' >> $@
93         @echo include '$$(KBUILD_SRC)'/Makefile >> $@
94
95 # Leave processing to above invocation of make
96 skip-makefile := 1
97 endif # ifneq ($(KBUILD_OUTPUT),)
98 endif # ifeq ($(KBUILD_SRC),)
99
100 ifeq ($(skip-makefile),)
101
102 # We only need a copy of the Makefile for the config targets and reuse
103 # the rest from the source directory, i.e. we do not cp ALL_MAKEFILES.
104 scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile
105         cp $< $@
106
107 _all: all
108
109 help:
110         @echo 'Cleaning:'
111         @echo '  clean                  - delete temporary files created by build'
112         @echo '  distclean              - delete all non-source files (including .config)'
113         @echo
114         @echo 'Build:'
115         @echo '  all                    - Executable and documentation'
116         @echo '  busybox                - the swiss-army executable'
117         @echo '  doc                    - docs/BusyBox.{txt,html,1}'
118         @echo
119         @echo 'Configuration:'
120         @echo '  allnoconfig            - disable all symbols in .config'
121         @echo '  allyesconfig           - enable (almost) all symbols in .config'
122         @echo '  bareconfig             - enable all basics without any features'
123         @echo '  config         - text based configurator (of last resort)'
124         @echo '  defconfig              - set .config to defaults'
125         @echo '  menuconfig             - interactive curses-based configurator'
126         @echo '  oldconfig              - resolve any unresolved symbols in .config'
127         @echo
128         @echo 'Installation:'
129         @echo '  install                - install busybox and symlinks into $prefix'
130         @echo '  install-hardlinks      - install busybox and hardlinks into $prefix'
131         @echo '  uninstall'
132         @echo
133         @echo 'Development:'
134         @echo '  check                  - run the test suite for all applets'
135         @echo '  randconfig             - generate a random configuration'
136         @echo '  release                - create a distribution tarball'
137         @echo '  sizes                  - show size of all enabled busybox symbols'
138         @echo
139
140
141 include $(top_srcdir)/Rules.mak
142
143 ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
144
145 # Default target if none was requested explicitly
146 all: menuconfig
147
148 # warn if no configuration exists and we are asked to build a non-config target
149 .config:
150         @echo ""
151         @echo "No $(top_builddir)/$@ found!"
152         @echo "Please refer to 'make  help', section Configuration."
153         @echo ""
154         @exit 1
155
156 # configuration
157 # ---------------------------------------------------------------------------
158
159 scripts/config/conf: scripts/config/Makefile
160         $(MAKE) -C scripts/config conf
161         -@if [ ! -f .config ] ; then \
162                 cp $(CONFIG_DEFCONFIG) .config; \
163         fi
164
165 scripts/config/mconf: scripts/config/Makefile
166         $(MAKE) -C scripts/config ncurses conf mconf
167         -@if [ ! -f .config ] ; then \
168                 cp $(CONFIG_DEFCONFIG) .config; \
169         fi
170
171 menuconfig: scripts/config/mconf
172         @./scripts/config/mconf $(CONFIG_CONFIG_IN)
173
174 config: scripts/config/conf
175         @./scripts/config/conf $(CONFIG_CONFIG_IN)
176
177 oldconfig: scripts/config/conf
178         @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
179
180 randconfig: scripts/config/conf
181         @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
182
183 allyesconfig: scripts/config/conf
184         @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
185         sed -i -r -e "s/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX).*/# \1 is not set/" .config
186         @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
187
188 allnoconfig: scripts/config/conf
189         @./scripts/config/conf -n $(CONFIG_CONFIG_IN)
190
191 defconfig: scripts/config/conf
192         @./scripts/config/conf -d $(CONFIG_CONFIG_IN)
193
194 bareconfig: allyesconfig
195         sed -i '/FEATURE/d' .config
196         @./scripts/config/conf -d $(CONFIG_CONFIG_IN)
197
198 else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
199
200 all: busybox busybox.links doc
201
202 # In this section, we need .config
203 -include $(top_builddir)/.config.cmd
204 include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
205 -include $(top_builddir)/.depend
206
207 endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
208
209 busybox: .depend $(libraries-y)
210         $(CC) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
211         $(STRIPCMD) $@
212
213 busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h
214         - $(SHELL) $^ >$@
215
216 install: $(top_srcdir)/applets/install.sh busybox busybox.links
217         $(SHELL) $< $(PREFIX)
218 ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
219         @echo
220         @echo
221         @echo --------------------------------------------------
222         @echo You will probably need to make your busybox binary
223         @echo setuid root to ensure all configured applets will
224         @echo work properly.
225         @echo --------------------------------------------------
226         @echo
227 endif
228
229 uninstall: busybox.links
230         rm -f $(PREFIX)/bin/busybox
231         for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
232
233 install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links
234         $(SHELL) $< $(PREFIX) --hardlinks
235
236 # see if we are in verbose mode
237 KBUILD_VERBOSE :=
238 ifdef V
239   ifeq ("$(origin V)", "command line")
240     KBUILD_VERBOSE := $(V)
241   endif
242 endif
243 ifneq ($(strip $(KBUILD_VERBOSE)),)
244   CHECK_VERBOSE := -v
245 endif
246 check test: busybox
247         bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
248         $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
249
250 sizes:
251         -rm -f busybox
252         $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
253                 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true
254         nm --size-sort busybox
255
256 # Documentation Targets
257 doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
258
259 docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod
260         -mkdir -p docs
261         - ( cat $(top_srcdir)/docs/busybox_header.pod; \
262             $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h; \
263             cat $(top_srcdir)/docs/busybox_footer.pod ) > docs/busybox.pod
264
265 docs/BusyBox.txt: docs/busybox.pod
266         $(SECHO)
267         $(SECHO) BusyBox Documentation
268         $(SECHO)
269         -mkdir -p docs
270         -pod2text $< > $@
271
272 docs/BusyBox.1: docs/busybox.pod
273         - mkdir -p docs
274         - pod2man --center=BusyBox --release="version $(VERSION)" \
275                 $< > $@
276
277 docs/BusyBox.html: docs/busybox.net/BusyBox.html
278         - mkdir -p docs
279         -@ rm -f docs/BusyBox.html
280         -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html
281
282 docs/busybox.net/BusyBox.html: docs/busybox.pod
283         -@ mkdir -p docs/busybox.net
284         -  pod2html --noindex $< > \
285             docs/busybox.net/BusyBox.html
286         -@ rm -f pod2htm*
287
288 # The nifty new buildsystem stuff
289 scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
290         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
291
292 DEP_INCLUDES := include/config.h include/bb_config.h
293
294 ifeq ($(strip $(CONFIG_BBCONFIG)),y)
295 DEP_INCLUDES += include/bbconfigopts.h
296
297 include/bbconfigopts.h: .config
298         $(top_srcdir)/scripts/config/mkconfigs > $@
299 endif
300
301 depend dep: .depend
302 .depend: scripts/bb_mkdep $(DEP_INCLUDES)
303         @rm -f .depend
304         @mkdir -p include/config
305         scripts/bb_mkdep -c include/config.h -c include/bb_config.h \
306                         -I $(top_srcdir)/include $(top_srcdir) > $@.tmp
307         mv $@.tmp $@
308
309 include/config.h: .config
310         @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
311             $(MAKE) -C scripts/config conf; \
312         fi;
313         @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
314
315 include/bb_config.h: include/config.h
316         @echo -e "#ifndef BB_CONFIG_H\n#define BB_CONFIG_H" > $@
317         @sed -e 's/#undef CONFIG_\(.*\)/#define ENABLE_\1 0/' \
318             -e 's/#define CONFIG_\(.*\)/#define CONFIG_\1\n#define ENABLE_\1/' \
319                 < $< >> $@
320         @echo "#endif" >> $@
321
322 clean:
323         - $(MAKE) -C scripts/config $@
324         - rm -f docs/busybox.dvi docs/busybox.ps \
325             docs/busybox.pod docs/busybox.net/busybox.html \
326             docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
327             docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
328             docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \
329             .config.old busybox
330         - rm -rf _install testsuite/links
331         - find . -name .\*.flags -exec rm -f {} \;
332         - find . -name \*.o -exec rm -f {} \;
333         - find . -name \*.a -exec rm -f {} \;
334
335 distclean: clean
336         - rm -f scripts/bb_mkdep
337         - rm -rf include/config include/config.h include/bb_config.h include/bbconfigopts.h
338         - find . -name .depend -exec rm -f {} \;
339         rm -f .config .config.old .config.cmd
340
341 release: distclean #doc
342         cd ..; \
343         rm -rf $(PROG)-$(VERSION); \
344         cp -a busybox $(PROG)-$(VERSION); \
345         \
346         find $(PROG)-$(VERSION)/ -type d \
347                 -name .svn \
348                 -print \
349                 -exec rm -rf {} \; ; \
350         \
351         find $(PROG)-$(VERSION)/ -type f \
352                 -name .\#* \
353                 -print \
354                 -exec rm -f {} \; ; \
355         \
356         tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
357
358 tags:
359         ctags -R .
360
361
362 endif # ifeq ($(skip-makefile),)
363
364 .PHONY: dummy subdirs release distclean clean config oldconfig \
365         menuconfig tags check test depend dep buildtree