Minor warning cleanups
[oweals/busybox.git] / Makefile
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 #
19
20 PROG      := busybox
21 VERSION   := 0.61.pre
22 BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
23 TOPDIR    := ${shell /bin/pwd}
24 HOSTCC    := gcc
25 HOSTCFLAGS:= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
26
27
28 # What OS are you compiling busybox for?  This allows you to include
29 # OS specific things, syscall overrides, etc.
30 TARGET_OS := linux
31
32 # With a modern GNU make(1) (highly recommended, that's what all the
33 # developers use), all of the following configuration values can be
34 # overridden at the command line.  For example:
35 #   make CROSS=powerpc-linux- CONFIG_SRC_DIR=$HOME/busybox PREFIX=/mnt/app
36
37 # If you want to add some simple compiler switches (like -march=i686),
38 # especially from the command line, use this instead of CFLAGS directly.
39 # For optimization overrides, it's better still to set OPTIMIZATION.
40 CFLAGS_EXTRA =
41  
42 # If you want a static binary, turn this on.
43 DOSTATIC = false
44
45 # Set the following to `true' to make a debuggable build.
46 # Leave this set to `false' for production use.
47 DODEBUG = false
48
49 # This enables compiling with dmalloc ( http://dmalloc.com/ )
50 # which is an excellent public domain mem leak and malloc problem
51 # detector.  To enable dmalloc, before running busybox you will
52 # want to first set up your environment.
53 # eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
54 # Do not enable this for production builds...
55 DODMALLOC = false
56
57 # Electric-fence is another very useful malloc debugging library.
58 # Do not enable this for production builds...
59 DOEFENCE  = false
60
61 # If you want large file summit support, turn this on.
62 # This has no effect if you don't have a kernel with lfs
63 # support, and a system with libc-2.1.3 or later.
64 # Some of the programs that can benefit from lfs support
65 # are dd, gzip, mount, tar, and mkfs_minix.
66 # LFS allows you to use the above programs for files
67 # larger than 2GB!
68 DOLFS = false
69
70 # If you have a "pristine" source directory, point CONFIG_SRC_DIR to it.
71 # Experimental and incomplete; tell the mailing list
72 # <busybox@opensource.lineo.com> if you do or don't like it so far.
73 CONFIG_SRC_DIR =
74
75 # If you are running a cross compiler, you may want to set CROSS
76 # to something more interesting, like "arm-linux-".
77 CROSS =
78 CC              = $(CROSS)gcc
79 AR              = $(CROSS)ar
80 AS              = $(CROSS)as
81 LD              = $(CROSS)ld
82 NM              = $(CROSS)nm
83 STRIP           = $(CROSS)strip
84 CPP             = $(CC) -E
85 MAKEFILES       = $(TOPDIR)/.config
86 export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
87
88
89 # To compile vs uClibc, just use the compiler wrapper built by uClibc...
90 # Everything should compile and work as expected these days...
91 #CC = /usr/i386-linux-uclibc/usr/bin/i386-uclibc-gcc
92
93 # To compile vs some other alternative libc, you may need to use/adjust
94 # the following lines to meet your needs...
95 #
96 # If you are using Red Hat 6.x with the compatible RPMs (for developing under
97 # Red Hat 5.x and glibc 2.0) uncomment the following.  Be sure to read about
98 # using the compatible RPMs (compat-*) at http://www.redhat.com !
99 #LIBCDIR=/usr/i386-glibc20-linux
100 #
101 # The following is used for libc5 (if you install altgcc and libc5-altdev
102 # on a Debian system).  
103 #LIBCDIR=/usr/i486-linuxlibc1
104 #
105 # For other libraries, you are on your own...
106 #LDFLAGS+=-nostdlib
107 #LIBRARIES = $(LIBCDIR)/lib/libc.a -lgcc
108 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
109 #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
110
111 # use '-Os' optimization if available, else use -O2
112 OPTIMIZATION := ${shell if $(CC) -Os -S -o /dev/null -xc /dev/null \
113         >/dev/null 2>&1; then echo "-Os"; else echo "-O2" ; fi}
114 GCC_STACK_BOUNDRY := ${shell if $(CC) -mpreferred-stack-boundary=2 -S -o /dev/null -xc /dev/null \
115         >/dev/null 2>&1; then echo "-mpreferred-stack-boundary=2"; else echo "" ; fi}
116 OPTIMIZATIONS=$(OPTIMIZATION) -fomit-frame-pointer $(GCC_STACK_BOUNDRY)
117 WARNINGS=-Wall -Wstrict-prototypes -Wshadow
118 CFLAGS = -I$(TOPDIR)/include
119 ARFLAGS = -r
120
121 #
122 #--------------------------------------------------------
123 # If you're going to do a lot of builds with a non-vanilla configuration,
124 # it makes sense to adjust parameters above, so you can type "make"
125 # by itself, instead of following it by the same half-dozen overrides
126 # every time.  The stuff below, on the other hand, is probably less
127 # prone to casual user adjustment.
128
129
130 ifeq ($(strip $(DOLFS)),true)
131     # For large file summit support
132     CFLAGS+=-D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64
133 endif
134 ifeq ($(strip $(DODMALLOC)),true)
135     # For testing mem leaks with dmalloc
136     CFLAGS+=-DDMALLOC
137     LIBRARIES = -ldmalloc
138     # Force debug=true, since this is useless when not debugging...
139     DODEBUG = true
140 else
141     ifeq ($(strip $(DOEFENCE)),true)
142         LIBRARIES = -lefence
143         # Force debug=true, since this is useless when not debugging...
144         DODEBUG = true
145     endif
146 endif
147 ifeq ($(strip $(DODEBUG)),true)
148     CFLAGS  += $(WARNINGS) -g -D_GNU_SOURCE
149     LDFLAGS += -Wl,-warn-common
150     STRIPCMD    =
151 else
152     CFLAGS  += $(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE
153     LDFLAGS += -s -Wl,-warn-common
154     STRIPCMD    = $(STRIP) --remove-section=.note --remove-section=.comment $(PROG)
155 endif
156 ifeq ($(strip $(DOSTATIC)),true)
157     LDFLAGS += --static
158 endif
159
160 ifndef $(PREFIX)
161     PREFIX = `pwd`/_install
162 endif
163
164 # Additional complications due to support for pristine source dir.
165 # Include files in the build directory should take precedence over
166 # the copy in CONFIG_SRC_DIR, both during the compilation phase and the
167 # shell script that finds the list of object files.
168 # Work in progress by <ldoolitt@recycle.lbl.gov>.
169 #
170 ifneq ($(strip $(CONFIG_SRC_DIR)),)
171     VPATH = $(CONFIG_SRC_DIR)
172 endif
173
174 OBJECTS   = $(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
175 CFLAGS    += $(CROSS_CFLAGS)
176 ifdef CONFIG_INIT_SCRIPT
177     CFLAGS += -DINIT_SCRIPT='"$(CONFIG_INIT_SCRIPT)"'
178 endif
179
180 # Put user-supplied flags at the end, where they
181 # have a chance of winning.
182 CFLAGS += $(CFLAGS_EXTRA)
183
184 .EXPORT_ALL_VARIABLES:
185
186 all:    do-it-all
187
188 #
189 # Make "config" the default target if there is no configuration file or
190 # "depend" the target if there is no top-level dependency information.
191 ifeq (.config,$(wildcard .config))
192 include .config
193 ifeq (.depend,$(wildcard .depend))
194 include .depend 
195 do-it-all:      busybox busybox.links doc
196 else
197 CONFIGURATION = depend
198 do-it-all:      depend
199 endif
200 else
201 CONFIGURATION = menuconfig
202 do-it-all:      menuconfig
203 endif
204
205
206 SUBDIRS =applets archival archival/libunarchive console-tools editors \
207         fileutils findutils init miscutils modutils networking procps \
208         pwd_grp shell shellutils sysklogd textutils util-linux libbb
209
210 bbsubdirs: $(patsubst %, _dir_%, $(SUBDIRS))
211
212 $(patsubst %, _dir_%, $(SUBDIRS)) : dummy include/config/MARKER
213         $(MAKE) CFLAGS="$(CFLAGS)" -C $(patsubst _dir_%, %, $@)
214
215 busybox: config.h dep-files bbsubdirs
216         $(CC) $(LDFLAGS) -o $@ applets/busybox.o $(shell find $(SUBDIRS) -name \*.a) $(LIBCONFIG_LIB) $(LIBRARIES)
217         $(STRIPCMD)
218
219 busybox.links: applets/busybox.mkll
220         - $(SHELL) $^ >$@
221
222 install: applets/install.sh busybox busybox.links
223         $(SHELL) $< $(PREFIX)
224
225 install-hardlinks: applets/install.sh busybox busybox.links
226         $(SHELL) $< $(PREFIX) --hardlinks
227
228
229 # Documentation Targets
230 doc: olddoc
231
232 # Old Docs...
233 olddoc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
234
235 docs/busybox.pod : docs/busybox_header.pod include/usage.h docs/busybox_footer.pod
236         - ( cat docs/busybox_header.pod; \
237             docs/autodocifier.pl include/usage.h; \
238             cat docs/busybox_footer.pod ) > docs/busybox.pod
239
240 docs/BusyBox.txt: docs/busybox.pod
241         @echo
242         @echo BusyBox Documentation
243         @echo
244         -mkdir -p docs
245         -pod2text $< > $@
246
247 docs/BusyBox.1: docs/busybox.pod
248         - mkdir -p docs
249         - pod2man --center=BusyBox --release="version $(VERSION)" \
250                 $< > $@
251
252 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
253         - mkdir -p docs
254         -@ rm -f docs/BusyBox.html
255         -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
256
257 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
258         -@ mkdir -p docs/busybox.lineo.com
259         -  pod2html --noindex $< > \
260             docs/busybox.lineo.com/BusyBox.html
261         -@ rm -f pod2htm*
262
263
264 # New docs based on DOCBOOK SGML
265 newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
266
267 docs/busybox.txt: docs/busybox.sgml
268         @echo
269         @echo BusyBox Documentation
270         @echo
271         - mkdir -p docs
272         (cd docs; sgmltools -b txt busybox.sgml)
273
274 docs/busybox.dvi: docs/busybox.sgml
275         - mkdir -p docs
276         (cd docs; sgmltools -b dvi busybox.sgml)
277
278 docs/busybox.ps: docs/busybox.sgml
279         - mkdir -p docs
280         (cd docs; sgmltools -b ps busybox.sgml)
281
282 docs/busybox.pdf: docs/busybox.ps
283         - mkdir -p docs
284         (cd docs; ps2pdf busybox.ps)
285
286 docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
287         - mkdir -p docs
288         (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
289
290 # The nifty new buildsystem stuff
291 scripts/mkdep: scripts/mkdep.c
292         $(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c
293
294 scripts/split-include: scripts/split-include.c
295         $(HOSTCC) $(HOSTCFLAGS) -o scripts/split-include scripts/split-include.c
296
297 dep-files: scripts/mkdep
298         @if [ ! -f .depend ] ; then \
299                 rm -f .depend .hdepend; \
300                 mkdir -p $(TOPDIR)/include/config; \
301                 scripts/mkdep -I $(TOPDIR)/include -- \
302                         `find $(TOPDIR) -name \*.c -print` >> .depend; \
303                 scripts/mkdep -I $(TOPDIR)/include -- \
304                         `find $(TOPDIR) -name \*.h -print` >> .hdepend; \
305                 $(MAKE) $(patsubst %,_sfdep_%,$(SUBDIRS)) _FASTDEP_ALL_SUB_DIRS="$(SUBDIRS)" ; \
306         fi;
307
308
309 depend dep: config.h dep-files
310         @ echo -e "\n\nNow run 'make' to build BusyBox\n\n"
311
312 CONFIG_SHELL := ${shell if [ -x "$$BASH" ]; then echo $$BASH; \
313         else if [ -x /bin/bash ]; then echo /bin/bash; \
314         else echo sh; fi ; fi}
315
316 include/config/MARKER: scripts/split-include include/config.h
317         scripts/split-include include/config.h include/config
318         @ touch include/config/MARKER
319
320 config.h:
321         @if [ ! -f include/config.h ] ; then \
322                 make oldconfig; \
323         fi;
324
325 menuconfig:
326         mkdir -p $(TOPDIR)/include/config
327         $(MAKE) -C scripts/lxdialog all
328         $(CONFIG_SHELL) scripts/Menuconfig sysdeps/$(TARGET_OS)/config.in
329
330 config:
331         mkdir -p $(TOPDIR)/include/config
332         $(CONFIG_SHELL) scripts/Configure sysdeps/$(TARGET_OS)/config.in
333
334 oldconfig:
335         mkdir -p $(TOPDIR)/include/config
336         $(CONFIG_SHELL) scripts/Configure -d sysdeps/$(TARGET_OS)/config.in
337
338
339 ifdef CONFIGURATION
340 ..$(CONFIGURATION):
341         @echo
342         @echo "You have a bad or nonexistent" .$(CONFIGURATION) ": running 'make" $(CONFIGURATION)"'"
343         @echo
344         $(MAKE) $(CONFIGURATION)
345         @echo
346         @echo "Successful. Try re-making (ignore the error that follows)"
347         @echo
348         exit 1
349
350 dummy:
351
352 else
353
354 dummy:
355
356 endif
357
358 include Rules.mak
359
360 # Testing...
361 test tests:
362         # old way of doing it
363         #cd tests && $(MAKE) all
364         # new way of doing it
365         cd tests && ./tester.sh
366
367 # Cleanup
368 clean:
369         - $(MAKE) -C tests clean
370         - $(MAKE) -C scripts/lxdialog clean
371         - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
372             docs/busybox.lineo.com/BusyBox.html
373         - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
374             docs/busybox.pdf docs/busybox.lineo.com/busybox.html \
375             docs/busybox _install pod2htm* *.gdb *.elf *~ core
376         - rm -f busybox.links libbb/loop.h .config.old .hdepend
377         - rm -f scripts/split-include scripts/mkdep .*config.log
378         - rm -rf include/config include/config.h
379         - find -name .\*.flags -o -name .depend -exec rm -f {} \;
380         - find -name \*.o -exec rm -f {} \;
381         - find -name \*.a -exec rm -f {} \;
382
383 distclean: clean
384         - rm -f busybox 
385         - cd tests && $(MAKE) distclean
386
387 dist release: distclean doc
388         cd ..;                                  \
389         rm -rf busybox-$(VERSION);              \
390         cp -a busybox busybox-$(VERSION);       \
391                                                 \
392         find busybox-$(VERSION)/ -type d        \
393                                  -name CVS      \
394                                  -print         \
395                 -exec rm -rf {} \; ;            \
396                                                 \
397         find busybox-$(VERSION)/ -type f        \
398                                  -name .\#*     \
399                                  -print         \
400                 -exec rm -f {} \;  ;            \
401                                                 \
402         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
403
404
405
406 .PHONY: tags
407 tags:
408         ctags -R .