3 # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
5 # Licensed under GPLv2, see the file LICENSE in this tarball for details.
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 \
22 top_builddir=$(CURDIR)
25 export srctree=$(top_srcdir)
26 vpath %/Config.in $(srctree)
28 include $(top_srcdir)/Rules.mak
30 DIRS:=applets archival archival/libunarchive coreutils console-tools \
31 debianutils editors findutils init miscutils modutils networking \
32 networking/libiproute networking/udhcp procps loginutils shell \
33 sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb
35 SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS))
37 ifeq ($(strip $(CONFIG_SELINUX)),y)
38 LIBRARIES += -lselinux
41 CONFIG_CONFIG_IN = $(top_srcdir)/sysdeps/$(TARGET_OS)/Config.in
42 CONFIG_DEFCONFIG = $(top_srcdir)/sysdeps/$(TARGET_OS)/defconfig
44 ALL_DIRS:= $(DIRS) scripts/config
45 ALL_MAKEFILES:=$(patsubst %,%/Makefile,$(ALL_DIRS))
50 ifeq ("$(origin O)", "command line")
55 # That's our default target when none is given on the command line
59 ifneq ($(KBUILD_OUTPUT),)
60 # Invoke a second make in the output directory, passing relevant variables
61 # check that the output directory actually exists
62 saved-output := $(KBUILD_OUTPUT)
63 KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
64 $(if $(wildcard $(KBUILD_OUTPUT)),, \
65 $(error output directory "$(saved-output)" does not exist))
67 .PHONY: $(MAKECMDGOALS)
69 $(filter-out _all,$(MAKECMDGOALS)) _all: $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUTPUT)/Makefile
70 $(MAKE) -C $(KBUILD_OUTPUT) \
71 top_srcdir=$(CURDIR) \
72 top_builddir=$(KBUILD_OUTPUT) \
73 TOPDIR=$(KBUILD_OUTPUT) \
74 KBUILD_SRC=$(CURDIR) \
75 -f $(CURDIR)/Makefile $@
77 $(KBUILD_OUTPUT)/Rules.mak:
79 @echo top_srcdir=$(CURDIR) >> $@
80 @echo top_builddir=$(KBUILD_OUTPUT) >> $@
81 @echo include $(top_srcdir)/Rules.mak >> $@
83 $(KBUILD_OUTPUT)/Makefile:
85 @echo top_srcdir=$(CURDIR) >> $@
86 @echo top_builddir=$(KBUILD_OUTPUT) >> $@
87 @echo KBUILD_SRC='$$(top_srcdir)' >> $@
88 @echo include '$$(KBUILD_SRC)'/Makefile >> $@
90 # Leave processing to above invocation of make
92 endif # ifneq ($(KBUILD_OUTPUT),)
93 endif # ifeq ($(KBUILD_SRC),)
95 ifeq ($(skip-makefile),)
99 ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
101 all: busybox busybox.links doc
103 all_tree: $(ALL_MAKEFILES)
105 $(ALL_MAKEFILES): %/Makefile: $(top_srcdir)/%/Makefile
106 [ -d $(@D) ] || mkdir -p $(@D); cp $< $@
108 # In this section, we need .config
109 -include $(top_builddir)/.config.cmd
110 include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
111 -include $(top_builddir)/.depend
113 busybox: $(ALL_MAKEFILES) .depend $(libraries-y)
114 $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
117 busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h
120 install: $(top_srcdir)/applets/install.sh busybox busybox.links
121 $(SHELL) $< $(PREFIX)
122 ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
125 @echo --------------------------------------------------
126 @echo You will probably need to make your busybox binary
127 @echo setuid root to ensure all configured applets will
129 @echo --------------------------------------------------
133 uninstall: busybox.links
134 rm -f $(PREFIX)/bin/busybox
135 for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
137 install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links
138 $(SHELL) $< $(PREFIX) --hardlinks
141 bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
142 $(top_srcdir)/testsuite/runtest
146 $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
147 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true
148 nm --size-sort busybox
150 # Documentation Targets
151 doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
153 docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod
155 - ( cat $(top_srcdir)/docs/busybox_header.pod; \
156 $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h; \
157 cat $(top_srcdir)/docs/busybox_footer.pod ) > docs/busybox.pod
159 docs/BusyBox.txt: docs/busybox.pod
161 $(SECHO) BusyBox Documentation
166 docs/BusyBox.1: docs/busybox.pod
168 - pod2man --center=BusyBox --release="version $(VERSION)" \
171 docs/BusyBox.html: docs/busybox.net/BusyBox.html
173 -@ rm -f docs/BusyBox.html
174 -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html
176 docs/busybox.net/BusyBox.html: docs/busybox.pod
177 -@ mkdir -p docs/busybox.net
178 - pod2html --noindex $< > \
179 docs/busybox.net/BusyBox.html
182 # The nifty new buildsystem stuff
183 scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
184 $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
188 DEP_INCLUDES=include/config.h include/bb_config.h
189 ifeq ($(strip $(CONFIG_BBCONFIG)),y)
190 DEP_INCLUDES += include/bbconfigopts.h
192 include/bbconfigopts.h: .config
193 scripts/config/mkconfigs > $@
196 .depend: scripts/bb_mkdep $(DEP_INCLUDES)
198 @mkdir -p include/config
199 scripts/bb_mkdep -c include/config.h -c include/bb_config.h > $@
201 include/config.h: .config
202 @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
203 $(MAKE) -C scripts/config conf; \
205 @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
207 include/bb_config.h: include/config.h
208 @echo -e "#ifndef BB_CONFIG_H\n#define BB_CONFIG_H" > $@
209 @sed -e 's/#undef CONFIG_\(.*\)/#define ENABLE_\1 0/' \
210 -e 's/#define CONFIG_\(.*\)/#define CONFIG_\1\n#define ENABLE_\1/' \
216 $(SECHO) Finished installing...
219 else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
224 # ---------------------------------------------------------------------------
226 scripts/config/conf: scripts/config/Makefile $(top_srcdir)/Rules.mak
227 $(MAKE) -C scripts/config conf
228 -@if [ ! -f .config ] ; then \
229 cp $(CONFIG_DEFCONFIG) .config; \
232 scripts/config/mconf: scripts/config/Makefile $(top_srcdir)/Rules.mak
233 $(MAKE) -C scripts/config ncurses conf mconf
234 -@if [ ! -f .config ] ; then \
235 cp $(CONFIG_DEFCONFIG) .config; \
238 menuconfig: scripts/config/mconf
239 @./scripts/config/mconf $(CONFIG_CONFIG_IN)
241 config: scripts/config/conf
242 @./scripts/config/conf $(CONFIG_CONFIG_IN)
244 oldconfig: scripts/config/conf
245 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
247 randconfig: scripts/config/conf
248 @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
250 allyesconfig: scripts/config/conf
251 @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
252 sed -i -r -e "s/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX).*/# \1 is not set/" .config
253 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
255 allnoconfig: scripts/config/conf
256 @./scripts/config/conf -n $(CONFIG_CONFIG_IN)
258 defconfig: scripts/config/conf
259 @./scripts/config/conf -d $(CONFIG_CONFIG_IN)
262 - $(MAKE) -C scripts/config $@
263 - rm -f docs/busybox.dvi docs/busybox.ps \
264 docs/busybox.pod docs/busybox.net/busybox.html \
265 docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
266 docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
267 docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \
269 - rm -rf _install testsuite/links
270 - find . -name .\*.flags -exec rm -f {} \;
271 - find . -name \*.o -exec rm -f {} \;
272 - find . -name \*.a -exec rm -f {} \;
275 - rm -f scripts/bb_mkdep
276 - rm -rf include/config include/config.h include/bb_config.h include/bbconfigopts.h
277 - find . -name .depend -exec rm -f {} \;
278 rm -f .config .config.old .config.cmd
280 release: distclean #doc
282 rm -rf $(PROG)-$(VERSION); \
283 cp -a busybox $(PROG)-$(VERSION); \
285 find $(PROG)-$(VERSION)/ -type d \
288 -exec rm -rf {} \; ; \
290 find $(PROG)-$(VERSION)/ -type f \
293 -exec rm -f {} \; ; \
295 tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
301 endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
303 endif # ifeq ($(skip-makefile),)
305 .PHONY: dummy subdirs release distclean clean config oldconfig \
306 menuconfig tags check test depend buildtree