- fix building out-of-tree;
[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 clean distclean \
13         release tags
14
15 # the toplevel sourcedir
16 ifndef top_srcdir
17 top_srcdir=$(CURDIR)
18 endif
19 # toplevel directory of the object-tree
20 ifndef top_builddir
21 top_builddir=$(CURDIR)
22 endif
23
24 export srctree=$(top_srcdir)
25 vpath %/Config.in $(srctree)
26
27 DIRS:=applets archival archival/libunarchive coreutils console-tools \
28         debianutils editors findutils init miscutils modutils networking \
29         networking/libiproute networking/udhcp procps loginutils shell \
30         sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb
31
32 SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS))
33
34 # That's our default target when none is given on the command line
35 .PHONY: _all
36 _all:
37
38 # All object directories.
39 OBJ_DIRS = scripts/config include $(DIRS)
40 $(OBJ_DIRS):
41         mkdir -p "$(patsubst %,$(top_builddir)/%,$@)"
42
43 scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile
44         cp -v $< $@
45
46 include $(top_srcdir)/Rules.mak
47
48 CONFIG_CONFIG_IN = $(top_srcdir)/sysdeps/$(TARGET_OS)/Config.in
49 CONFIG_DEFCONFIG = $(top_srcdir)/sysdeps/$(TARGET_OS)/defconfig
50
51 ifeq ($(KBUILD_SRC),)
52
53 ifdef O
54   ifeq ("$(origin O)", "command line")
55     KBUILD_OUTPUT := $(O)
56   endif
57 else
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)
62 endif
63
64 ifneq ($(KBUILD_OUTPUT),)
65 # Invoke a second make in the output directory, passing relevant variables
66 # check that the output directory actually exists
67 saved-output := $(KBUILD_OUTPUT)
68 KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
69 $(if $(wildcard $(KBUILD_OUTPUT)),, \
70      $(error output directory "$(saved-output)" does not exist))
71
72 # 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.
74 all_tree: $(OBJ_DIRS) $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUTPUT)/Makefile scripts/config/Makefile
75
76 .PHONY: $(MAKECMDGOALS)
77
78 $(filter-out _all,$(MAKECMDGOALS)) _all: $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUTPUT)/Makefile all_tree
79 #all:
80         $(MAKE) -C $(KBUILD_OUTPUT) \
81         top_srcdir=$(top_srcdir) \
82         top_builddir=$(top_builddir) \
83         KBUILD_SRC=$(top_srcdir) \
84         -f $(CURDIR)/Makefile $@
85
86 $(KBUILD_OUTPUT)/Rules.mak:
87         @echo > $@
88         @echo top_srcdir=$(top_srcdir) >> $@
89         @echo top_builddir=$(KBUILD_OUTPUT) >> $@
90         @echo include $(top_srcdir)/Rules.mak >> $@
91
92 $(KBUILD_OUTPUT)/Makefile:
93         @echo > $@
94         @echo top_srcdir=$(top_srcdir) >> $@
95         @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
100 skip-makefile := 1
101 endif # ifneq ($(KBUILD_OUTPUT),)
102 endif # ifeq ($(KBUILD_SRC),)
103
104 ifeq ($(skip-makefile),)
105
106 _all: all
107
108 help:
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
138
139 ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
140
141 all: menuconfig
142
143 # configuration
144 # ---------------------------------------------------------------------------
145
146 scripts/config/conf: scripts/config/Makefile
147         $(MAKE) -C scripts/config conf
148         -@if [ ! -f .config ] ; then \
149                 cp $(CONFIG_DEFCONFIG) .config; \
150         fi
151
152 scripts/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
158 menuconfig: scripts/config/mconf
159         @./scripts/config/mconf $(CONFIG_CONFIG_IN)
160
161 config: scripts/config/conf
162         @./scripts/config/conf $(CONFIG_CONFIG_IN)
163
164 oldconfig: scripts/config/conf
165         @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
166
167 randconfig: scripts/config/conf
168         @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
169
170 allyesconfig: 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
175 allnoconfig: scripts/config/conf
176         @./scripts/config/conf -n $(CONFIG_CONFIG_IN)
177
178 defconfig: scripts/config/conf
179         @./scripts/config/conf -d $(CONFIG_CONFIG_IN)
180
181 else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
182
183 all: busybox busybox.links doc
184
185 # In this section, we need .config
186 -include $(top_builddir)/.config.cmd
187 include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
188 -include $(top_builddir)/.depend
189
190 endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
191
192 busybox: .depend $(libraries-y)
193         $(CC) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
194         $(STRIPCMD) $@
195
196 busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h
197         - $(SHELL) $^ >$@
198
199 install: $(top_srcdir)/applets/install.sh busybox busybox.links
200         $(SHELL) $< $(PREFIX)
201 ifeq ($(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
210 endif
211
212 uninstall: busybox.links
213         rm -f $(PREFIX)/bin/busybox
214         for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
215
216 install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links
217         $(SHELL) $< $(PREFIX) --hardlinks
218
219 check test: busybox
220         bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
221         $(top_srcdir)/testsuite/runtest
222
223 sizes:
224         -rm -f busybox
225         $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
226                 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true
227         nm --size-sort busybox
228
229 # Documentation Targets
230 doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
231
232 docs/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
237
238 docs/BusyBox.txt: docs/busybox.pod
239         $(SECHO)
240         $(SECHO) BusyBox Documentation
241         $(SECHO)
242         -mkdir -p docs
243         -pod2text $< > $@
244
245 docs/BusyBox.1: docs/busybox.pod
246         - mkdir -p docs
247         - pod2man --center=BusyBox --release="version $(VERSION)" \
248                 $< > $@
249
250 docs/BusyBox.html: docs/busybox.net/BusyBox.html
251         - mkdir -p docs
252         -@ rm -f docs/BusyBox.html
253         -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html
254
255 docs/busybox.net/BusyBox.html: docs/busybox.pod
256         -@ mkdir -p docs/busybox.net
257         -  pod2html --noindex $< > \
258             docs/busybox.net/BusyBox.html
259         -@ rm -f pod2htm*
260
261 # The nifty new buildsystem stuff
262 scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
263         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
264
265 DEP_INCLUDES := include/config.h include/bb_config.h
266
267 ifeq ($(strip $(CONFIG_BBCONFIG)),y)
268 DEP_INCLUDES += include/bbconfigopts.h
269
270 include/bbconfigopts.h: .config
271         $(top_srcdir)/scripts/config/mkconfigs > $@
272 endif
273
274 depend dep $(top_builddir)/.depend: .depend
275 .depend: scripts/bb_mkdep $(DEP_INCLUDES)
276         @rm -f .depend
277         @mkdir -p include/config
278         scripts/bb_mkdep -c include/config.h -c include/bb_config.h > $@.tmp
279         mv $@.tmp $@
280
281 include/config.h: .config
282         @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
283             $(MAKE) -C scripts/config conf; \
284         fi;
285         @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
286
287 include/bb_config.h: include/config.h
288         @echo -e "#ifndef BB_CONFIG_H\n#define BB_CONFIG_H" > $@
289         @sed -e 's/#undef CONFIG_\(.*\)/#define ENABLE_\1 0/' \
290             -e 's/#define CONFIG_\(.*\)/#define CONFIG_\1\n#define ENABLE_\1/' \
291                 < $< >> $@
292         @echo "#endif" >> $@
293
294 finished2:
295         $(SECHO)
296         $(SECHO) Finished installing...
297         $(SECHO)
298
299 clean:
300         - $(MAKE) -C scripts/config $@
301         - rm -f docs/busybox.dvi docs/busybox.ps \
302             docs/busybox.pod docs/busybox.net/busybox.html \
303             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 \
306             .config.old busybox
307         - rm -rf _install testsuite/links
308         - find . -name .\*.flags -exec rm -f {} \;
309         - find . -name \*.o -exec rm -f {} \;
310         - find . -name \*.a -exec rm -f {} \;
311
312 distclean: clean
313         - rm -f scripts/bb_mkdep
314         - rm -rf include/config include/config.h include/bb_config.h include/bbconfigopts.h
315         - find . -name .depend -exec rm -f {} \;
316         rm -f .config .config.old .config.cmd
317
318 release: distclean #doc
319         cd ..; \
320         rm -rf $(PROG)-$(VERSION); \
321         cp -a busybox $(PROG)-$(VERSION); \
322         \
323         find $(PROG)-$(VERSION)/ -type d \
324                 -name .svn \
325                 -print \
326                 -exec rm -rf {} \; ; \
327         \
328         find $(PROG)-$(VERSION)/ -type f \
329                 -name .\#* \
330                 -print \
331                 -exec rm -f {} \; ; \
332         \
333         tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
334
335 tags:
336         ctags -R .
337
338
339 endif # ifeq ($(skip-makefile),)
340
341 .PHONY: dummy subdirs release distclean clean config oldconfig \
342         menuconfig tags check test depend buildtree