52ad774d8d093b09bd7d59922ceada434fb53c57
[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.48pre
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 with uC-Libc...
71 #LIBCDIR=/home/andersen/CVS/uC-libc
72 #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
73 #CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
74 #LDFLAGS+=-nostdlib
75 #LIBRARIES = $(LIBCDIR)/libc.a -lgcc
76
77 #--------------------------------------------------------
78
79 # use '-Os' optimization if available, else use -O2
80 OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
81     then echo "-Os"; else echo "-O2" ; fi)
82
83 WARNINGS = -Wall
84
85 ifeq ($(DOLFS),true)
86     # For large file summit support
87     CFLAGS+=-D_FILE_OFFSET_BITS=64
88 endif
89 ifeq ($(DODMALLOC),true)
90     # For testing mem leaks with dmalloc
91     CFLAGS+=-DDMALLOC
92     LIBRARIES = -ldmalloc
93     # Force debug=true, since this is useless when not debugging...
94     DODEBUG = true
95 endif
96 ifeq ($(DODEBUG),true)
97     CFLAGS  += $(WARNINGS) -g -D_GNU_SOURCE
98     LDFLAGS += -Wl,-warn-common
99     STRIP    =
100 else
101     CFLAGS  += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
102     LDFLAGS += -s -Wl,-warn-common
103     STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
104 endif
105 ifeq ($(DOSTATIC),true)
106     LDFLAGS += --static
107     #
108     #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they 
109     # work) to try and strip out any unused junk.  Doesn't do much for me, 
110     # but you may want to give it a shot...
111     #
112     #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
113     #   -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
114     #                   --gc-sections -v >/dev/null && echo 1),1)
115     #   CFLAGS += -ffunction-sections -fdata-sections
116     #   LDFLAGS += --gc-sections
117     #endif
118 endif
119
120 ifndef $(PREFIX)
121     PREFIX = `pwd`/_install
122 endif
123
124 # Additional complications due to support for pristine source dir.
125 # Config.h in the build directory should take precedence over the
126 # copy in BB_SRC_DIR, both during the compilation phase and the
127 # shell script that finds the list of object files.
128 #
129 # Work in progress by <ldoolitt@recycle.lbl.gov>.
130 # If it gets in your way, set DISABLE_VPATH=yes
131 ifeq ($(DISABLE_VPATH),yes)
132     CONFIG_H = Config.h
133 else
134     VPATH = .:$(BB_SRC_DIR)
135     CONFIG_LIST = $(addsuffix /Config.h,$(subst :, ,$(VPATH)))
136     CONFIG_H    = $(word 1,$(shell ls -f -1 $(CONFIG_LIST) 2>/dev/null))
137     CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH)))
138 endif
139
140 OBJECTS   = $(shell $(BB_SRC_DIR)/busybox.sh $(CONFIG_H) $(BB_SRC_DIR)) busybox.o messages.o usage.o utility.o
141 CFLAGS    += -DBB_VER='"$(VERSION)"'
142 CFLAGS    += -DBB_BT='"$(BUILDTIME)"'
143 ifdef BB_INIT_SCRIPT
144     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
145 endif
146
147
148 all: busybox busybox.links doc
149
150 doc: olddoc
151
152 # Old Docs...
153 olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
154
155 docs/BusyBox.txt: docs/busybox.pod
156         @echo
157         @echo BusyBox Documentation
158         @echo
159         -mkdir -p docs
160         -pod2text $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.txt
161
162 docs/BusyBox.1: docs/busybox.pod
163         - mkdir -p docs
164         - pod2man --center=BusyBox --release="version $(VERSION)" \
165                 $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.1
166
167 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
168         -@ rm -f docs/BusyBox.html
169         -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
170
171 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
172         -@ mkdir -p docs/busybox.lineo.com
173         -  pod2html --noindex $(BB_SRC_DIR)/docs/busybox.pod > \
174             docs/busybox.lineo.com/BusyBox.html
175         -@ rm -f pod2html*
176
177
178 # New docs based on DOCBOOK SGML
179 newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
180
181 docs/busybox.txt: docs/busybox.sgml
182         @echo
183         @echo BusyBox Documentation
184         @echo
185         - mkdir -p docs
186         (cd docs; sgmltools -b txt busybox.sgml)
187
188 docs/busybox.dvi: docs/busybox.sgml
189         - mkdir -p docs
190         (cd docs; sgmltools -b dvi busybox.sgml)
191
192 docs/busybox.ps: docs/busybox.sgml
193         - mkdir -p docs
194         (cd docs; sgmltools -b ps busybox.sgml)
195
196 docs/busybox.pdf: docs/busybox.ps
197         - mkdir -p docs
198         (cd docs; ps2pdf busybox.ps)
199
200 docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
201         - mkdir -p docs
202         (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
203
204
205
206 busybox: $(OBJECTS) 
207         $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
208         $(STRIP)
209
210 busybox.links: Config.h
211         - $(BB_SRC_DIR)/busybox.mkll $(CONFIG_H) $(BB_SRC_DIR)/applets.h >$@
212
213 nfsmount.o cmdedit.o: %.o: %.h
214 $(OBJECTS): %.o: %.c Config.h busybox.h Makefile
215
216 utility.o: loop.h
217
218 loop.h: mk_loop_h.sh
219         @ sh $<
220
221 test tests:
222         cd tests && $(MAKE) all
223
224 clean:
225         - cd tests && $(MAKE) clean
226         - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
227             docs/busybox.lineo.com/BusyBox.html
228         - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
229             docs/busybox.pdf docs/busybox.lineo.com/busybox.html
230         - rm -rf docs/busybox _install
231         - rm -f busybox.links loop.h *~ *.o core
232
233 distclean: clean
234         - rm -f busybox
235         - cd tests && $(MAKE) distclean
236
237 install: busybox busybox.links
238         $(BB_SRC_DIR)/install.sh $(PREFIX)
239
240 install-hardlinks: busybox busybox.links
241         $(BB_SRC_DIR)/install.sh $(PREFIX) --hardlinks
242
243 debug_pristine:
244         @ echo VPATH=\"$(VPATH)\"
245         @ echo CONFIG_LIST=\"$(CONFIG_LIST)\"
246         @ echo CONFIG_H=\"$(CONFIG_H)\"
247         @ echo OBJECTS=\"$(OBJECTS)\"
248
249 dist release: distclean doc
250         cd ..;                                  \
251         rm -rf busybox-$(VERSION);              \
252         cp -a busybox busybox-$(VERSION);       \
253                                                 \
254         find busybox-$(VERSION)/ -type d        \
255                                  -name CVS      \
256                                  -print         \
257                 | xargs rm -rf;                 \
258                                                 \
259         find busybox-$(VERSION)/ -type f        \
260                                  -name .cvsignore \
261                                  -print         \
262                 | xargs rm -f;                  \
263                                                 \
264         find busybox-$(VERSION)/ -type f        \
265                                  -name .\#*     \
266                                  -print         \
267                 | xargs rm -f;                  \
268                                                 \
269         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
270
271 .PHONY: tags
272 tags:
273         ctags -R .