Somebody suggested this, but I've forgotten who.
[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)/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 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 and symlinks into $prefix'
133         @echo '  install-hardlinks      - install busybox and hardlinks into $prefix'
134         @echo '  uninstall'
135         @echo
136         @echo 'Development:'
137         @echo '  check                  - run the test suite for all applets'
138         @echo '  randconfig             - generate a random configuration'
139         @echo '  release                - create a distribution tarball'
140         @echo '  sizes                  - show size of all enabled busybox symbols'
141         @echo
142
143
144 include $(top_srcdir)/Rules.mak
145
146 ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
147
148 # Default target if none was requested explicitly
149 all: menuconfig
150
151 # warn if no configuration exists and we are asked to build a non-config target
152 .config:
153         @echo ""
154         @echo "No $(top_builddir)/$@ found!"
155         @echo "Please refer to 'make  help', section Configuration."
156         @echo ""
157         @exit 1
158
159 # configuration
160 # ---------------------------------------------------------------------------
161
162 scripts/config/conf: scripts/config/Makefile
163         $(MAKE) -C scripts/config conf
164         -@if [ ! -f .config ] ; then \
165                 cp $(CONFIG_DEFCONFIG) .config; \
166         fi
167
168 scripts/config/mconf: scripts/config/Makefile
169         $(MAKE) -C scripts/config ncurses conf mconf
170         -@if [ ! -f .config ] ; then \
171                 cp $(CONFIG_DEFCONFIG) .config; \
172         fi
173
174 menuconfig: scripts/config/mconf
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/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX|CONFIG_FEATURE_DEVFS).*/# \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: 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/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX).*/# \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 -include $(top_builddir)/.depend
212
213 endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
214
215 busybox: .depend $(libraries-y)
216         $(CC) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
217         $(STRIPCMD) $@
218
219 busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h
220         - $(SHELL) $^ >$@
221
222 install: $(top_srcdir)/applets/install.sh busybox busybox.links
223         $(SHELL) $< $(PREFIX)
224 ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
225         @echo
226         @echo
227         @echo --------------------------------------------------
228         @echo You will probably need to make your busybox binary
229         @echo setuid root to ensure all configured applets will
230         @echo work properly.
231         @echo --------------------------------------------------
232         @echo
233 endif
234
235 uninstall: busybox.links
236         rm -f $(PREFIX)/bin/busybox
237         for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
238
239 install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links
240         $(SHELL) $< $(PREFIX) --hardlinks
241
242 # see if we are in verbose mode
243 KBUILD_VERBOSE :=
244 ifdef V
245   ifeq ("$(origin V)", "command line")
246     KBUILD_VERBOSE := $(V)
247   endif
248 endif
249 ifneq ($(strip $(KBUILD_VERBOSE)),)
250   CHECK_VERBOSE := -v
251 endif
252 check test: busybox
253         bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
254         $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
255
256 sizes:
257         -rm -f busybox
258         $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
259                 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true
260         $(NM) --size-sort busybox
261
262 # Documentation Targets
263 doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
264
265 docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod
266         -mkdir -p docs
267         - ( cat $(top_srcdir)/docs/busybox_header.pod; \
268             $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h; \
269             cat $(top_srcdir)/docs/busybox_footer.pod ) > docs/busybox.pod
270
271 docs/BusyBox.txt: docs/busybox.pod
272         $(SECHO)
273         $(SECHO) BusyBox Documentation
274         $(SECHO)
275         -mkdir -p docs
276         -pod2text $< > $@
277
278 docs/BusyBox.1: docs/busybox.pod
279         - mkdir -p docs
280         - pod2man --center=BusyBox --release="version $(VERSION)" \
281                 $< > $@
282
283 docs/BusyBox.html: docs/busybox.net/BusyBox.html
284         - mkdir -p docs
285         -@ rm -f docs/BusyBox.html
286         -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html
287
288 docs/busybox.net/BusyBox.html: docs/busybox.pod
289         -@ mkdir -p docs/busybox.net
290         -  pod2html --noindex $< > \
291             docs/busybox.net/BusyBox.html
292         -@ rm -f pod2htm*
293
294 # The nifty new buildsystem stuff
295 scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
296         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
297
298 DEP_INCLUDES := include/config.h include/bb_config.h
299
300 ifeq ($(strip $(CONFIG_BBCONFIG)),y)
301 DEP_INCLUDES += include/bbconfigopts.h
302
303 include/bbconfigopts.h: .config
304         $(top_srcdir)/scripts/config/mkconfigs > $@
305 endif
306
307 depend dep: .depend
308 .depend: scripts/bb_mkdep $(DEP_INCLUDES)
309         @rm -f .depend
310         @mkdir -p include/config
311         scripts/bb_mkdep -c include/config.h -c include/bb_config.h \
312                         -I $(top_srcdir)/include $(top_srcdir) > $@.tmp
313         mv $@.tmp $@
314
315 include/config.h: .config
316         @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
317             $(MAKE) -C scripts/config conf; \
318         fi;
319         @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
320
321 include/bb_config.h: include/config.h
322         @echo -e "#ifndef BB_CONFIG_H\n#define BB_CONFIG_H" > $@
323         @sed -e 's/#undef CONFIG_\(.*\)/#define ENABLE_\1 0/' \
324             -e 's/#define CONFIG_\(.*\)/#define CONFIG_\1\n#define ENABLE_\1/' \
325                 < $< >> $@
326         @echo "#endif" >> $@
327
328 clean:
329         - $(MAKE) -C scripts/config $@
330         - rm -f docs/busybox.dvi docs/busybox.ps \
331             docs/busybox.pod docs/busybox.net/busybox.html \
332             docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
333             docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
334             docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \
335             .config.old busybox
336         - rm -rf _install testsuite/links
337         - find . -name .\*.flags -exec rm -f {} \;
338         - find . -name \*.o -exec rm -f {} \;
339         - find . -name \*.a -exec rm -f {} \;
340
341 distclean: clean
342         - rm -f scripts/bb_mkdep
343         - rm -rf include/config include/config.h include/bb_config.h include/bbconfigopts.h
344         - find . -name .depend -exec rm -f {} \;
345         rm -f .config .config.old .config.cmd
346
347 release: distclean #doc
348         cd ..; \
349         rm -rf $(PROG)-$(VERSION); \
350         cp -a busybox $(PROG)-$(VERSION); \
351         \
352         find $(PROG)-$(VERSION)/ -type d \
353                 -name .svn \
354                 -print \
355                 -exec rm -rf {} \; ; \
356         \
357         find $(PROG)-$(VERSION)/ -type f \
358                 -name .\#* \
359                 -print \
360                 -exec rm -f {} \; ; \
361         \
362         tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
363
364 tags:
365         ctags -R .
366
367
368 endif # ifeq ($(skip-makefile),)
369
370 .PHONY: dummy subdirs release distclean clean config oldconfig \
371         menuconfig tags check test depend dep buildtree