19f024a438e78ce715a4b0b1018a6d7be3e9fc4b
[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 a static binary, turn this on.
32 DOSTATIC = false
33
34 # Set the following to `true' to make a debuggable build.
35 # Leave this set to `false' for production use.
36 # eg: `make DODEBUG=true tests'
37 # Do not enable this for production builds...
38 DODEBUG = false
39
40 # This enables compiling with dmalloc ( http://dmalloc.com/ )
41 # which is an excellent public domain mem leak and malloc problem
42 # detector.  To enable dmalloc, before running busybox you will
43 # want to first set up your environment.
44 # eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
45 # Do not enable this for production builds...
46 DODMALLOC = false
47
48 # If you want large file summit support, turn this on.
49 # This has no effect if you don't have a kernel with lfs
50 # support, and a system with libc-2.1.3 or later.
51 # Some of the programs that can benefit from lfs support
52 # are dd, gzip, mount, tar, and mkfs_minix.
53 # LFS allows you to use the above programs for files
54 # larger than 2GB!
55 DOLFS = false
56
57 # If you have a "pristine" source directory, point BB_SRC_DIR to it.
58 # Experimental and incomplete; tell the mailing list
59 # <busybox@opensource.lineo.com> if you do or don't like it so far.
60 BB_SRC_DIR = .
61
62 # If you are running a cross compiler, you may want to set this
63 # to something more interesting, like "powerpc-linux-".
64 CROSS =
65 CC = $(CROSS)gcc
66 STRIPTOOL = $(CROSS)strip
67
68 # To compile vs an alternative libc, you may need to use/adjust
69 # the following lines to meet your needs.  This is how I make
70 # busybox compile staticly with uClibc (needs BB_FEATURE_NFSMOUNT
71 # disabled at the moment).  Note the _full_ path for LIBCDIR.
72 # This is because make doesn't do ~ expansion...
73 #LIBCDIR=/home/andersen/CVS/uClibc
74 #LDFLAGS+=-nostdlib
75 #LIBRARIES = $(LIBCDIR)/libc.a -lgcc
76 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
77 #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
78
79 # This is how I compile with the uClibc shared lib...
80 #LIBCDIR=/home/andersen/CVS/uClibc
81 #LDFLAGS+=-nostdlib
82 #LIBRARIES = -luClibc -lgcc $(LIBCDIR)/crt0.o
83 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
84 #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
85
86 #--------------------------------------------------------
87
88 # use '-Os' optimization if available, else use -O2
89 OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
90     then echo "-Os"; else echo "-O2" ; fi)
91
92 WARNINGS = -Wall
93
94 ifeq ($(DOLFS),true)
95     # For large file summit support
96     CFLAGS+=-D_FILE_OFFSET_BITS=64
97 endif
98 ifeq ($(DODMALLOC),true)
99     # For testing mem leaks with dmalloc
100     CFLAGS+=-DDMALLOC
101     LIBRARIES = -ldmalloc
102     # Force debug=true, since this is useless when not debugging...
103     DODEBUG = true
104 endif
105 ifeq ($(DODEBUG),true)
106     CFLAGS  += $(WARNINGS) -g -D_GNU_SOURCE
107     LDFLAGS += -Wl,-warn-common
108     STRIP    =
109 else
110     CFLAGS  += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
111     LDFLAGS += -s -Wl,-warn-common
112     STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
113 endif
114 ifeq ($(DOSTATIC),true)
115     LDFLAGS += --static
116     #
117     #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they 
118     # work) to try and strip out any unused junk.  Doesn't do much for me, 
119     # but you may want to give it a shot...
120     #
121     #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
122     #   -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
123     #                   --gc-sections -v >/dev/null && echo 1),1)
124     #   CFLAGS += -ffunction-sections -fdata-sections
125     #   LDFLAGS += --gc-sections
126     #endif
127 endif
128
129 ifndef $(PREFIX)
130     PREFIX = `pwd`/_install
131 endif
132
133 # Additional complications due to support for pristine source dir.
134 # Config.h in the build directory should take precedence over the
135 # copy in BB_SRC_DIR, both during the compilation phase and the
136 # shell script that finds the list of object files.
137 #
138 # Work in progress by <ldoolitt@recycle.lbl.gov>.
139 # If it gets in your way, set DISABLE_VPATH=yes
140 ifeq ($(DISABLE_VPATH),yes)
141     CONFIG_H = Config.h
142 else
143     VPATH = .:$(BB_SRC_DIR)
144     CONFIG_LIST = $(addsuffix /Config.h,$(subst :, ,$(VPATH)))
145     CONFIG_H    = $(word 1,$(shell ls -f -1 $(CONFIG_LIST) 2>/dev/null))
146     CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH))) $(CROSS_CFLAGS)
147 endif
148
149 OBJECTS   = $(shell $(BB_SRC_DIR)/busybox.sh $(CONFIG_H) $(BB_SRC_DIR)) busybox.o messages.o usage.o utility.o
150 CFLAGS    += -DBB_VER='"$(VERSION)"'
151 CFLAGS    += -DBB_BT='"$(BUILDTIME)"'
152 ifdef BB_INIT_SCRIPT
153     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
154 endif
155
156
157 all: busybox busybox.links doc
158
159 doc: olddoc
160
161 # Old Docs...
162 olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
163
164 docs/BusyBox.txt: docs/busybox.pod
165         @echo
166         @echo BusyBox Documentation
167         @echo
168         -mkdir -p docs
169         -pod2text $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.txt
170
171 docs/BusyBox.1: docs/busybox.pod
172         - mkdir -p docs
173         - pod2man --center=BusyBox --release="version $(VERSION)" \
174                 $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.1
175
176 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
177         -@ rm -f docs/BusyBox.html
178         -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
179
180 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
181         -@ mkdir -p docs/busybox.lineo.com
182         -  pod2html --noindex $(BB_SRC_DIR)/docs/busybox.pod > \
183             docs/busybox.lineo.com/BusyBox.html
184         -@ rm -f pod2html*
185
186
187 # New docs based on DOCBOOK SGML
188 newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
189
190 docs/busybox.txt: docs/busybox.sgml
191         @echo
192         @echo BusyBox Documentation
193         @echo
194         - mkdir -p docs
195         (cd docs; sgmltools -b txt busybox.sgml)
196
197 docs/busybox.dvi: docs/busybox.sgml
198         - mkdir -p docs
199         (cd docs; sgmltools -b dvi busybox.sgml)
200
201 docs/busybox.ps: docs/busybox.sgml
202         - mkdir -p docs
203         (cd docs; sgmltools -b ps busybox.sgml)
204
205 docs/busybox.pdf: docs/busybox.ps
206         - mkdir -p docs
207         (cd docs; ps2pdf busybox.ps)
208
209 docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
210         - mkdir -p docs
211         (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
212
213
214
215 busybox: $(OBJECTS) 
216         $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
217         $(STRIP)
218
219 busybox.links: Config.h
220         - $(BB_SRC_DIR)/busybox.mkll $(CONFIG_H) $(BB_SRC_DIR)/applets.h >$@
221
222 nfsmount.o cmdedit.o: %.o: %.h
223 $(OBJECTS): %.o: %.c Config.h busybox.h Makefile
224
225 utility.o: loop.h
226
227 loop.h: mk_loop_h.sh
228         @ sh $<
229
230 test tests:
231         cd tests && $(MAKE) all
232
233 clean:
234         - cd tests && $(MAKE) clean
235         - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
236             docs/busybox.lineo.com/BusyBox.html
237         - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
238             docs/busybox.pdf docs/busybox.lineo.com/busybox.html
239         - rm -rf docs/busybox _install
240         - rm -f busybox.links loop.h *~ *.o core
241
242 distclean: clean
243         - rm -f busybox
244         - cd tests && $(MAKE) distclean
245
246 install: busybox busybox.links
247         $(BB_SRC_DIR)/install.sh $(PREFIX)
248
249 install-hardlinks: busybox busybox.links
250         $(BB_SRC_DIR)/install.sh $(PREFIX) --hardlinks
251
252 debug_pristine:
253         @ echo VPATH=\"$(VPATH)\"
254         @ echo CONFIG_LIST=\"$(CONFIG_LIST)\"
255         @ echo CONFIG_H=\"$(CONFIG_H)\"
256         @ echo OBJECTS=\"$(OBJECTS)\"
257
258 dist release: distclean doc
259         cd ..;                                  \
260         rm -rf busybox-$(VERSION);              \
261         cp -a busybox busybox-$(VERSION);       \
262                                                 \
263         find busybox-$(VERSION)/ -type d        \
264                                  -name CVS      \
265                                  -print         \
266                 | xargs rm -rf;                 \
267                                                 \
268         find busybox-$(VERSION)/ -type f        \
269                                  -name .cvsignore \
270                                  -print         \
271                 | xargs rm -f;                  \
272                                                 \
273         find busybox-$(VERSION)/ -type f        \
274                                  -name .\#*     \
275                                  -print         \
276                 | xargs rm -f;                  \
277                                                 \
278         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
279
280 .PHONY: tags
281 tags:
282         ctags -R .