b3f998200d240a9c38706a563b00ddfe33a1f507
[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 ifndef TOPDIR
16 TOPDIR=$(CURDIR)/
17 endif
18 ifndef top_srcdir
19 top_srcdir=$(CURDIR)
20 endif
21 ifndef top_builddir
22 top_builddir=$(CURDIR)
23 endif
24
25 export srctree=$(top_srcdir)
26 vpath %/Config.in $(srctree)
27
28 include $(top_srcdir)/Rules.mak
29
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
34
35 SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS))
36
37 ifeq ($(strip $(CONFIG_SELINUX)),y)
38 LIBRARIES += -lselinux
39 endif
40
41 CONFIG_CONFIG_IN = $(top_srcdir)/sysdeps/$(TARGET_OS)/Config.in
42 CONFIG_DEFCONFIG = $(top_srcdir)/sysdeps/$(TARGET_OS)/defconfig
43
44 ALL_DIRS:= $(DIRS) scripts/config
45 ALL_MAKEFILES:=$(patsubst %,%/Makefile,$(ALL_DIRS))
46
47 ifeq ($(KBUILD_SRC),)
48
49 ifdef O
50   ifeq ("$(origin O)", "command line")
51     KBUILD_OUTPUT := $(O)
52   endif
53 endif
54
55 # That's our default target when none is given on the command line
56 .PHONY: _all
57 _all:
58
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))
66
67 .PHONY: $(MAKECMDGOALS)
68
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 $@
76
77 $(KBUILD_OUTPUT)/Rules.mak:
78         @echo > $@
79         @echo top_srcdir=$(CURDIR) >> $@
80         @echo top_builddir=$(KBUILD_OUTPUT) >> $@
81         @echo include $(top_srcdir)/Rules.mak >> $@
82
83 $(KBUILD_OUTPUT)/Makefile:
84         @echo > $@
85         @echo top_srcdir=$(CURDIR) >> $@
86         @echo top_builddir=$(KBUILD_OUTPUT) >> $@
87         @echo KBUILD_SRC='$$(top_srcdir)' >> $@
88         @echo include '$$(KBUILD_SRC)'/Makefile >> $@
89
90 # Leave processing to above invocation of make
91 skip-makefile := 1
92 endif # ifneq ($(KBUILD_OUTPUT),)
93 endif # ifeq ($(KBUILD_SRC),)
94
95 ifeq ($(skip-makefile),)
96
97 _all: all
98
99 ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
100
101 all: busybox busybox.links doc
102
103 all_tree:       $(ALL_MAKEFILES)
104
105 $(ALL_MAKEFILES): %/Makefile: $(top_srcdir)/%/Makefile
106         [ -d $(@D) ] || mkdir -p $(@D); cp $< $@
107
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
112
113 busybox: $(ALL_MAKEFILES) .depend $(libraries-y)
114         $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
115         $(STRIPCMD) $@
116
117 busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h
118         - $(SHELL) $^ >$@
119
120 install: $(top_srcdir)/applets/install.sh busybox busybox.links
121         $(SHELL) $< $(PREFIX)
122 ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
123         @echo
124         @echo
125         @echo --------------------------------------------------
126         @echo You will probably need to make your busybox binary
127         @echo setuid root to ensure all configured applets will
128         @echo work properly.
129         @echo --------------------------------------------------
130         @echo
131 endif
132
133 uninstall: busybox.links
134         rm -f $(PREFIX)/bin/busybox
135         for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
136
137 install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links
138         $(SHELL) $< $(PREFIX) --hardlinks
139
140 check: busybox
141         bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
142         $(top_srcdir)/testsuite/runtest
143
144 sizes:
145         -rm -f busybox
146         $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
147                 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true
148         nm --size-sort busybox
149
150 # Documentation Targets
151 doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
152
153 docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod
154         -mkdir -p docs
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
158
159 docs/BusyBox.txt: docs/busybox.pod
160         $(SECHO)
161         $(SECHO) BusyBox Documentation
162         $(SECHO)
163         -mkdir -p docs
164         -pod2text $< > $@
165
166 docs/BusyBox.1: docs/busybox.pod
167         - mkdir -p docs
168         - pod2man --center=BusyBox --release="version $(VERSION)" \
169                 $< > $@
170
171 docs/BusyBox.html: docs/busybox.net/BusyBox.html
172         - mkdir -p docs
173         -@ rm -f docs/BusyBox.html
174         -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html
175
176 docs/busybox.net/BusyBox.html: docs/busybox.pod
177         -@ mkdir -p docs/busybox.net
178         -  pod2html --noindex $< > \
179             docs/busybox.net/BusyBox.html
180         -@ rm -f pod2htm*
181
182 # The nifty new buildsystem stuff
183 scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
184         $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
185
186 depend dep: .depend
187
188 DEP_INCLUDES=include/config.h include/bb_config.h
189 ifeq ($(strip $(CONFIG_BBCONFIG)),y)
190 DEP_INCLUDES += include/bbconfigopts.h
191
192 include/bbconfigopts.h: .config
193         scripts/config/mkconfigs > $@
194 endif
195
196 .depend: scripts/bb_mkdep $(DEP_INCLUDES)
197         @rm -f .depend
198         @mkdir -p include/config
199         scripts/bb_mkdep -c include/config.h -c include/bb_config.h > $@
200
201 include/config.h: .config
202         @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
203             $(MAKE) -C scripts/config conf; \
204         fi;
205         @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
206
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/' \
211                 < $< >> $@
212         @echo "#endif" >> $@
213
214 finished2:
215         $(SECHO)
216         $(SECHO) Finished installing...
217         $(SECHO)
218
219 else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
220
221 all: menuconfig
222
223 # configuration
224 # ---------------------------------------------------------------------------
225
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; \
230         fi
231
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; \
236         fi
237
238 menuconfig: scripts/config/mconf
239         @./scripts/config/mconf $(CONFIG_CONFIG_IN)
240
241 config: scripts/config/conf
242         @./scripts/config/conf $(CONFIG_CONFIG_IN)
243
244 oldconfig: scripts/config/conf
245         @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
246
247 randconfig: scripts/config/conf
248         @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
249
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)
254
255 allnoconfig: scripts/config/conf
256         @./scripts/config/conf -n $(CONFIG_CONFIG_IN)
257
258 defconfig: scripts/config/conf
259         @./scripts/config/conf -d $(CONFIG_CONFIG_IN)
260
261 clean:
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 \
268             .config.old busybox
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 {} \;
273
274 distclean: clean
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
279
280 release: distclean #doc
281         cd ..; \
282         rm -rf $(PROG)-$(VERSION); \
283         cp -a busybox $(PROG)-$(VERSION); \
284         \
285         find $(PROG)-$(VERSION)/ -type d \
286                 -name .svn \
287                 -print \
288                 -exec rm -rf {} \; ; \
289         \
290         find $(PROG)-$(VERSION)/ -type f \
291                 -name .\#* \
292                 -print \
293                 -exec rm -f {} \; ; \
294         \
295         tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
296
297 tags:
298         ctags -R .
299
300
301 endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
302
303 endif # ifeq ($(skip-makefile),)
304
305 .PHONY: dummy subdirs release distclean clean config oldconfig \
306         menuconfig tags check test depend buildtree