3 # Copyright (C) 1999-2000 Erik Andersen <andersee@debian.org>
4 # Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org>
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.
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.
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
23 BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
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
31 # If you want a static binary, turn this on.
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...
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...
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
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.
62 # If you are running a cross compiler, you may want to set this
63 # to something more interesting, like "powerpc-linux-".
66 STRIPTOOL = $(CROSS)strip
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)
75 #LIBRARIES = $(LIBCDIR)/libc.a -lgcc
77 #--------------------------------------------------------
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)
86 # For large file summit support
87 CFLAGS+=-D_FILE_OFFSET_BITS=64
89 ifeq ($(DODMALLOC),true)
90 # For testing mem leaks with dmalloc
93 # Force debug=true, since this is useless when not debugging...
96 # -D_GNU_SOURCE is needed because environ is used in init.c
97 ifeq ($(DODEBUG),true)
98 CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE
102 CFLAGS += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
104 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
106 ifeq ($(DOSTATIC),true)
109 #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they
110 # work) to try and strip out any unused junk. Doesn't do much for me,
111 # but you may want to give it a shot...
113 #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
114 # -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
115 # --gc-sections -v >/dev/null && echo 1),1)
116 # CFLAGS += -ffunction-sections -fdata-sections
117 # LDFLAGS += --gc-sections
122 PREFIX = `pwd`/_install
125 # Additional complications due to support for pristine source dir.
126 # Config.h in the build directory should take precedence over the
127 # copy in BB_SRC_DIR, both during the compilation phase and the
128 # shell script that finds the list of object files.
130 # Work in progress by <ldoolitt@recycle.lbl.gov>.
131 # If it gets in your way, set DISABLE_VPATH=yes
132 ifeq ($(DISABLE_VPATH),yes)
135 VPATH = .:$(BB_SRC_DIR)
136 CONFIG_LIST = $(addsuffix /Config.h,$(subst :, ,$(VPATH)))
137 CONFIG_H = $(word 1,$(shell ls -f -1 $(CONFIG_LIST) 2>/dev/null))
138 CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH)))
141 OBJECTS = $(shell $(BB_SRC_DIR)/busybox.sh $(CONFIG_H) $(BB_SRC_DIR)) busybox.o messages.o usage.o utility.o
142 CFLAGS += -DBB_VER='"$(VERSION)"'
143 CFLAGS += -DBB_BT='"$(BUILDTIME)"'
145 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
149 all: busybox busybox.links doc
154 olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
156 docs/BusyBox.txt: docs/busybox.pod
158 @echo BusyBox Documentation
161 - (cd $(BB_SRC_DIR); pod2text docs/busybox.pod) > docs/BusyBox.txt
163 docs/BusyBox.1: docs/busybox.pod
165 - (cd $(BB_SRC_DIR); pod2man --center=BusyBox \
166 --release="version $(VERSION)" \
167 docs/busybox.pod ) > docs/BusyBox.1
169 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
170 -@ rm -f docs/BusyBox.html
171 -@ ln -s docs/busybox.lineo.com/BusyBox.html docs/BusyBox.html
173 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
174 -@ mkdir -p docs/busybox.lineo.com
175 - (cd $(BB_SRC_DIR); pod2html --noindex docs/busybox.pod ) \
176 > docs/busybox.lineo.com/BusyBox.html
180 # New docs based on DOCBOOK SGML
181 newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
183 docs/busybox.txt: docs/busybox.sgml
185 @echo BusyBox Documentation
188 (cd docs; sgmltools -b txt $(BB_SRC_DIR)/busybox.sgml)
190 docs/busybox.dvi: docs/busybox.sgml
192 (cd docs; sgmltools -b dvi $(BB_SRC_DIR)/busybox.sgml)
194 docs/busybox.ps: docs/busybox.sgml
196 (cd docs; sgmltools -b ps $(BB_SRC_DIR)/busybox.sgml)
198 docs/busybox.pdf: docs/busybox.ps
200 (cd docs; ps2pdf $(BB_SRC_DIR)/busybox.ps)
202 docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
204 (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
209 $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
212 busybox.links: Config.h
213 -$(BB_SRC_DIR)/busybox.mkll $(BB_SRC_DIR)applets.h | sort >$@
215 nfsmount.o cmdedit.o: %.o: %.h
216 $(OBJECTS): %.o: %.c Config.h busybox.h Makefile
224 cd tests && $(MAKE) all
227 - cd tests && $(MAKE) clean
228 - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
229 docs/busybox.lineo.com/BusyBox.html
230 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
231 docs/busybox.pdf docs/busybox.lineo.com/busybox.html
232 - rm -rf docs/busybox _install
233 - rm -f busybox.links loop.h *~ *.o core
237 - cd tests && $(MAKE) distclean
239 install: busybox busybox.links
240 $(BB_SRC_DIR)/install.sh $(PREFIX)
242 install-hardlinks: busybox busybox.links
243 $(BB_SRC_DIR)/install.sh $(PREFIX) --hardlinks
246 @ echo VPATH=\"$(VPATH)\"
247 @ echo CONFIG_LIST=\"$(CONFIG_LIST)\"
248 @ echo CONFIG_H=\"$(CONFIG_H)\"
249 @ echo OBJECTS=\"$(OBJECTS)\"
251 dist release: distclean doc
253 rm -rf busybox-$(VERSION); \
254 cp -a busybox busybox-$(VERSION); \
256 find busybox-$(VERSION)/ -type d \
261 find busybox-$(VERSION)/ -type f \
266 find busybox-$(VERSION)/ -type f \
271 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;