Fix some formatting
[oweals/busybox.git] / Makefile
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2000 Erik Andersen <andersee@debian.org>
4 # Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org>
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #
20
21 PROG      := busybox
22 VERSION   := 0.49pre
23 BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
24 export VERSION
25
26 # With a modern GNU make(1) (highly recommended, that's what all the
27 # developers use), all of the following configuration values can be
28 # overridden at the command line.  For example:
29 #   make CROSS=powerpc-linux- BB_SRC_DIR=$HOME/busybox PREFIX=/mnt/app
30
31 # If you want to add some simple compiler switches (like -march=i686),
32 # especially from the command line, use this instead of CFLAGS directly.
33 # For optimization overrides, it's better still to set OPTIMIZATION.
34 CFLAGS_EXTRA =
35  
36 # If you want a static binary, turn this on.
37 DOSTATIC = false
38
39 # Set the following to `true' to make a debuggable build.
40 # Leave this set to `false' for production use.
41 # eg: `make DODEBUG=true tests'
42 # Do not enable this for production builds...
43 DODEBUG = false
44
45 # Setting this to `true' will cause busybox to directly use the system's
46 # password and group functions.  Assuming you use GNU libc, when this is
47 # `true', you will need to install the /etc/nsswitch.conf configuration file
48 # and the required libnss_* libraries. This generally makes your embedded
49 # system quite a bit larger... If you leave this off, busybox will directly
50 # use the /etc/password, /etc/group files (and your system will be smaller, and
51 # I will get fewer emails asking about how glibc NSS works).  Enabling this adds
52 # just 1.4k to the binary size (which is a _lot_ less then glibc NSS costs),
53 # Most people will want to leave this set to false.
54 USE_SYSTEM_PWD_GRP = false
55
56 # This enables compiling with dmalloc ( http://dmalloc.com/ )
57 # which is an excellent public domain mem leak and malloc problem
58 # detector.  To enable dmalloc, before running busybox you will
59 # want to first set up your environment.
60 # eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
61 # Do not enable this for production builds...
62 DODMALLOC = false
63
64 # If you want large file summit support, turn this on.
65 # This has no effect if you don't have a kernel with lfs
66 # support, and a system with libc-2.1.3 or later.
67 # Some of the programs that can benefit from lfs support
68 # are dd, gzip, mount, tar, and mkfs_minix.
69 # LFS allows you to use the above programs for files
70 # larger than 2GB!
71 DOLFS = false
72
73 # If you have a "pristine" source directory, point BB_SRC_DIR to it.
74 # Experimental and incomplete; tell the mailing list
75 # <busybox@opensource.lineo.com> if you do or don't like it so far.
76 BB_SRC_DIR = .
77
78 # If you are running a cross compiler, you may want to set this
79 # to something more interesting, like "powerpc-linux-".
80 CROSS =
81 CC = $(CROSS)gcc
82 STRIPTOOL = $(CROSS)strip
83
84 # To compile vs uClibc, just use the compiler wrapper built by uClibc...
85 # Isn't that easy?  Right now, uClibc needs BB_FEATURE_NFSMOUNT disabled 
86 # since uClibc's nfs support isn't ready yet.
87 #CC = ../uClibc/extra/gcc-uClibc/gcc-uClibc-i386
88
89 # To compile vs some other alternative libc, you may need to use/adjust
90 # the following lines to meet your needs...
91 #LIBCDIR=/usr/i486-linuxlibc1/
92 #LDFLAGS+=-nostdlib
93 #LIBRARIES = $(LIBCDIR)/libc.a -lgcc
94 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
95 #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
96
97 #--------------------------------------------------------
98
99 # use '-Os' optimization if available, else use -O2
100 OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
101     then echo "-Os"; else echo "-O2" ; fi)
102
103 WARNINGS = -Wall
104
105 ifeq ($(DOLFS),true)
106     # For large file summit support
107     CFLAGS+=-D_FILE_OFFSET_BITS=64
108 endif
109 ifeq ($(DODMALLOC),true)
110     # For testing mem leaks with dmalloc
111     CFLAGS+=-DDMALLOC
112     LIBRARIES = -ldmalloc
113     # Force debug=true, since this is useless when not debugging...
114     DODEBUG = true
115 endif
116 ifeq ($(DODEBUG),true)
117     CFLAGS  += $(WARNINGS) -g -D_GNU_SOURCE
118     LDFLAGS += -Wl,-warn-common
119     STRIP    =
120 else
121     CFLAGS  += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
122     LDFLAGS += -s -Wl,-warn-common
123     STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
124 endif
125 ifeq ($(DOSTATIC),true)
126     LDFLAGS += --static
127     #
128     #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they 
129     # work) to try and strip out any unused junk.  Doesn't do much for me, 
130     # but you may want to give it a shot...
131     #
132     #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
133     #   -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
134     #                   --gc-sections -v >/dev/null && echo 1),1)
135     #   CFLAGS += -ffunction-sections -fdata-sections
136     #   LDFLAGS += --gc-sections
137     #endif
138 endif
139
140 ifndef $(PREFIX)
141     PREFIX = `pwd`/_install
142 endif
143
144 # Additional complications due to support for pristine source dir.
145 # Config.h in the build directory should take precedence over the
146 # copy in BB_SRC_DIR, both during the compilation phase and the
147 # shell script that finds the list of object files.
148 #
149 # Work in progress by <ldoolitt@recycle.lbl.gov>.
150 # If it gets in your way, set DISABLE_VPATH=yes
151 ifeq ($(DISABLE_VPATH),yes)
152     CONFIG_H = Config.h
153 else
154     VPATH = .:$(BB_SRC_DIR)
155     CONFIG_LIST = $(addsuffix /Config.h,$(subst :, ,$(VPATH)))
156     CONFIG_H    = $(word 1,$(shell ls -f -1 $(CONFIG_LIST) 2>/dev/null))
157     CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH))) $(CROSS_CFLAGS)
158 endif
159
160 OBJECTS   = $(shell $(BB_SRC_DIR)/busybox.sh $(CONFIG_H) $(BB_SRC_DIR)) busybox.o messages.o usage.o utility.o
161 CFLAGS    += -DBB_VER='"$(VERSION)"'
162 CFLAGS    += -DBB_BT='"$(BUILDTIME)"'
163 ifdef BB_INIT_SCRIPT
164     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
165 endif
166
167 ifneq ($(USE_SYSTEM_PWD_GRP),true)
168     PWD_LIB   = pwd_grp/libpwd.a
169     LIBRARIES += $(PWD_LIB)
170 else
171     CFLAGS    += -DUSE_SYSTEM_PWD_GRP
172 endif
173
174
175 # Put user-supplied flags at the end, where they
176 # have a chance of winning.
177 CFLAGS += $(CFLAGS_EXTRA)
178
179 .EXPORT_ALL_VARIABLES:
180
181 all: busybox busybox.links doc
182
183 doc: olddoc
184
185 # Old Docs...
186 olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
187
188 docs/BusyBox.txt: docs/busybox.pod
189         @echo
190         @echo BusyBox Documentation
191         @echo
192         -mkdir -p docs
193         -pod2text $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.txt
194
195 docs/BusyBox.1: docs/busybox.pod
196         - mkdir -p docs
197         - pod2man --center=BusyBox --release="version $(VERSION)" \
198                 $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.1
199
200 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
201         -@ rm -f docs/BusyBox.html
202         -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
203
204 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
205         -@ mkdir -p docs/busybox.lineo.com
206         -  pod2html --noindex $(BB_SRC_DIR)/docs/busybox.pod > \
207             docs/busybox.lineo.com/BusyBox.html
208         -@ rm -f pod2html*
209
210
211 # New docs based on DOCBOOK SGML
212 newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
213
214 docs/busybox.txt: docs/busybox.sgml
215         @echo
216         @echo BusyBox Documentation
217         @echo
218         - mkdir -p docs
219         (cd docs; sgmltools -b txt busybox.sgml)
220
221 docs/busybox.dvi: docs/busybox.sgml
222         - mkdir -p docs
223         (cd docs; sgmltools -b dvi busybox.sgml)
224
225 docs/busybox.ps: docs/busybox.sgml
226         - mkdir -p docs
227         (cd docs; sgmltools -b ps busybox.sgml)
228
229 docs/busybox.pdf: docs/busybox.ps
230         - mkdir -p docs
231         (cd docs; ps2pdf busybox.ps)
232
233 docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
234         - mkdir -p docs
235         (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
236
237
238
239 busybox: $(PWD_LIB) $(OBJECTS) 
240         $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
241         $(STRIP)
242
243 $(PWD_LIB):
244         $(MAKE) -eC pwd_grp
245
246 busybox.links: Config.h applets.h
247         - $(BB_SRC_DIR)/busybox.mkll $(CONFIG_H) $(BB_SRC_DIR)/applets.h >$@
248
249 nfsmount.o cmdedit.o: %.o: %.h
250 $(OBJECTS): %.o: %.c Config.h busybox.h applets.h Makefile
251         $(CC) $(CFLAGS) -c $*.c -o $*.o
252
253 utility.o: loop.h
254
255 loop.h: mk_loop_h.sh
256         @ sh $<
257
258 test tests:
259         cd tests && $(MAKE) all
260
261 clean:
262         - cd tests && $(MAKE) clean
263         - cd pwd_grp && $(MAKE) clean
264         - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
265             docs/busybox.lineo.com/BusyBox.html
266         - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
267             docs/busybox.pdf docs/busybox.lineo.com/busybox.html
268         - rm -f Config.h.ORG bb.def.h busybox.REGRESS.sh.results bb.OptionsAndFeatures
269         - rm -rf docs/busybox _install
270         - rm -f busybox.links loop.h *~ *.o core
271
272 distclean: clean
273         - rm -f busybox
274         - cd tests && $(MAKE) distclean
275
276 install: busybox busybox.links
277         $(BB_SRC_DIR)/install.sh $(PREFIX)
278
279 install-hardlinks: busybox busybox.links
280         $(BB_SRC_DIR)/install.sh $(PREFIX) --hardlinks
281
282 debug_pristine:
283         @ echo VPATH=\"$(VPATH)\"
284         @ echo CONFIG_LIST=\"$(CONFIG_LIST)\"
285         @ echo CONFIG_H=\"$(CONFIG_H)\"
286         @ echo OBJECTS=\"$(OBJECTS)\"
287
288 dist release: distclean doc
289         cd ..;                                  \
290         rm -rf busybox-$(VERSION);              \
291         cp -a busybox busybox-$(VERSION);       \
292                                                 \
293         find busybox-$(VERSION)/ -type d        \
294                                  -name CVS      \
295                                  -print         \
296                 | xargs rm -rf;                 \
297                                                 \
298         find busybox-$(VERSION)/ -type f        \
299                                  -name .cvsignore \
300                                  -print         \
301                 | xargs rm -f;                  \
302                                                 \
303         find busybox-$(VERSION)/ -type f        \
304                                  -name .\#*     \
305                                  -print         \
306                 | xargs rm -f;                  \
307                                                 \
308         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
309
310 .PHONY: tags
311 tags:
312         ctags -R .