Allow multiple shells to be enabled.
[platform/upstream/busybox.git] / Makefile
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999,2000,2001 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.53pre
22 BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
23 export VERSION
24
25 # With a modern GNU make(1) (highly recommended, that's what all the
26 # developers use), all of the following configuration values can be
27 # overridden at the command line.  For example:
28 #   make CROSS=powerpc-linux- BB_SRC_DIR=$HOME/busybox PREFIX=/mnt/app
29
30 # If you want to add some simple compiler switches (like -march=i686),
31 # especially from the command line, use this instead of CFLAGS directly.
32 # For optimization overrides, it's better still to set OPTIMIZATION.
33 CFLAGS_EXTRA =
34  
35 # If you want a static binary, turn this on.
36 DOSTATIC = false
37
38 # Set the following to `true' to make a debuggable build.
39 # Leave this set to `false' for production use.
40 DODEBUG = false
41
42 # Setting this to `true' will cause busybox to directly use the system's
43 # password and group functions.  Assuming you use GNU libc, when this is
44 # `true', you will need to install the /etc/nsswitch.conf configuration file
45 # and the required libnss_* libraries. This generally makes your embedded
46 # system quite a bit larger... If you leave this off, busybox will directly use
47 # the /etc/password, /etc/group files (and your system will be smaller, and I
48 # will get fewer emails asking about how glibc NSS works).  Enabling this adds
49 # just 1.4k to the binary size (which is a _lot_ less then glibc NSS costs).
50 # Note that if you want hostname resolution to work with glibc, you still need
51 # the libnss_* libraries.  Most people will want to leave this set to false.
52 USE_SYSTEM_PWD_GRP = true
53
54 # This enables compiling with dmalloc ( http://dmalloc.com/ )
55 # which is an excellent public domain mem leak and malloc problem
56 # detector.  To enable dmalloc, before running busybox you will
57 # want to first set up your environment.
58 # eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
59 # Do not enable this for production builds...
60 DODMALLOC = false
61
62 # Electric-fence is another very useful malloc debugging library.
63 # Do not enable this for production builds...
64 DOEFENCE  = false
65
66 # If you want large file summit support, turn this on.
67 # This has no effect if you don't have a kernel with lfs
68 # support, and a system with libc-2.1.3 or later.
69 # Some of the programs that can benefit from lfs support
70 # are dd, gzip, mount, tar, and mkfs_minix.
71 # LFS allows you to use the above programs for files
72 # larger than 2GB!
73 DOLFS = false
74
75 # If you have a "pristine" source directory, point BB_SRC_DIR to it.
76 # Experimental and incomplete; tell the mailing list
77 # <busybox@opensource.lineo.com> if you do or don't like it so far.
78 BB_SRC_DIR =
79
80 # If you are running a cross compiler, you may want to set this
81 # to something more interesting, like "powerpc-linux-".
82 CROSS =
83 CC = $(CROSS)gcc
84 AR = $(CROSS)ar
85 STRIPTOOL = $(CROSS)strip
86
87 # To compile vs uClibc, just use the compiler wrapper built by uClibc...
88 # This make things very easy?  Everything should compile and work as
89 # expected these days...
90 #CC = ../uClibc/extra/gcc-uClibc/i386-uclibc-gcc
91
92 # To compile vs some other alternative libc, you may need to use/adjust
93 # the following lines to meet your needs...
94 #
95 # If you are using Red Hat 6.x with the compatible RPMs (for developing under
96 # Red Hat 5.x and glibc 2.0) uncomment the following.  Be sure to read about
97 # using the compatible RPMs (compat-*) at http://www.redhat.com !
98 #LIBCDIR=/usr/i386-glibc20-linux
99 #
100 # The following is used for libc5 (if you install altgcc and libc5-altdev
101 # on a Debian system).  
102 #LIBCDIR=/usr/i486-linuxlibc1
103 #
104 # For other libraries, you are on your own...
105 #LDFLAGS+=-nostdlib
106 #LIBRARIES = $(LIBCDIR)/lib/libc.a -lgcc
107 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
108 #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
109
110 # use '-Os' optimization if available, else use -O2
111 OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
112     then echo "-Os"; else echo "-O2" ; fi)
113
114 WARNINGS = -Wall -Wshadow
115
116 ARFLAGS = -r
117
118 #
119 #--------------------------------------------------------
120 # If you're going to do a lot of builds with a non-vanilla configuration,
121 # it makes sense to adjust parameters above, so you can type "make"
122 # by itself, instead of following it by the same half-dozen overrides
123 # every time.  The stuff below, on the other hand, is probably less
124 # prone to casual user adjustment.
125
126
127 ifeq ($(strip $(DOLFS)),true)
128     # For large file summit support
129     CFLAGS+=-D_FILE_OFFSET_BITS=64
130 endif
131 ifeq ($(strip $(DODMALLOC)),true)
132     # For testing mem leaks with dmalloc
133     CFLAGS+=-DDMALLOC
134     LIBRARIES = -ldmalloc
135     # Force debug=true, since this is useless when not debugging...
136     DODEBUG = true
137 else
138     ifeq ($(strip $(DOEFENCE)),true)
139         LIBRARIES = -lefence
140         # Force debug=true, since this is useless when not debugging...
141         DODEBUG = true
142     endif
143 endif
144 ifeq ($(strip $(DODEBUG)),true)
145     CFLAGS  += $(WARNINGS) -g -D_GNU_SOURCE
146     LDFLAGS += -Wl,-warn-common
147     STRIP    =
148 else
149     CFLAGS  += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
150     LDFLAGS += -s -Wl,-warn-common
151     STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
152 endif
153 ifeq ($(strip $(DOSTATIC)),true)
154     LDFLAGS += --static
155     #
156     #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they 
157     # work) to try and strip out any unused junk.  Doesn't do much for me, 
158     # but you may want to give it a shot...
159     #
160     #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
161     #   -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
162     #                   --gc-sections -v >/dev/null && echo 1),1)
163     #   CFLAGS += -ffunction-sections -fdata-sections
164     #   LDFLAGS += --gc-sections
165     #endif
166 endif
167
168 ifndef $(PREFIX)
169     PREFIX = `pwd`/_install
170 endif
171
172 # Additional complications due to support for pristine source dir.
173 # Include files in the build directory should take precedence over
174 # the copy in BB_SRC_DIR, both during the compilation phase and the
175 # shell script that finds the list of object files.
176 # Work in progress by <ldoolitt@recycle.lbl.gov>.
177 #
178 ifneq ($(strip $(BB_SRC_DIR)),)
179     VPATH = $(BB_SRC_DIR)
180 endif
181 #ifneq ($(strip $(VPATH)),)
182 #    CFLAGS += -I- -I. $(patsubst %,-I%,$(subst :, ,$(VPATH)))
183 #endif
184
185 # We need to set APPLET_SOURCES to something like
186 #   $(shell busybox.sh Config.h)
187 # but in a manner that works with VPATH and BB_SRC_DIR.
188 # Possible ways to approach this:
189 #
190 #   1. Explicitly search through .:$(VPATH) for busybox.sh and config.h,
191 #      then $(shell $(BUSYBOX_SH) $(CONFIG_H) $(BB_SRC_DIR))
192 #
193 #   2. Explicity search through .:$(VPATH) for slist.mk,
194 #      then $(shell $(MAKE) -f $(SLIST_MK) VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR))
195 #
196 #   3. Create slist.mk in this directory, with commands embedded in
197 #      a $(shell ...) command, and $(MAKE) it immediately.
198 #
199 #   4. Use a real rule within this makefile to create a file that sets 
200 #      APPLET_SOURCE_LIST, then include that file.  Has complications
201 #      with the first trip through the makefile (before processing the
202 #      include) trying to do too much, and a spurious warning the first
203 #      time make is run.
204 #
205 # This is option 3:
206 #
207 #APPLET_SOURCES = $(shell \
208 #   echo -e 'all: busybox.sh Config.h\n\t@ $$(SHELL) $$^ $$(BB_SRC_DIR)' >slist.mk; \
209 #   make -f slist.mk VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR) \
210 #)
211 # And option 4:
212 -include applet_source_list
213
214 OBJECTS   = $(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
215 CFLAGS    += $(CROSS_CFLAGS)
216 CFLAGS    += -DBB_VER='"$(VERSION)"'
217 CFLAGS    += -DBB_BT='"$(BUILDTIME)"'
218 ifdef BB_INIT_SCRIPT
219     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
220 endif
221
222 ifneq ($(strip $(USE_SYSTEM_PWD_GRP)),true)
223     PWD_GRP     = pwd_grp
224     PWD_GRP_DIR = $(BB_SRC_DIR:=/)$(PWD_GRP)
225     PWD_LIB     = libpwd.a
226     PWD_CSRC=__getpwent.c pwent.c getpwnam.c getpwuid.c putpwent.c getpw.c \
227             fgetpwent.c __getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c \
228             initgroups.c setgroups.c
229     PWD_OBJS=$(patsubst %.c,$(PWD_GRP)/%.o, $(PWD_CSRC))
230     PWD_CFLAGS = -I$(PWD_GRP_DIR)
231 else
232     CFLAGS    += -DUSE_SYSTEM_PWD_GRP
233 endif
234     
235 LIBBB     = libbb
236 LIBBB_LIB = libbb.a
237 LIBBB_CSRC= ask_confirmation.c chomp.c concat_path_file.c copy_file.c \
238 copy_file_chunk.c daemon.c device_open.c error_msg.c \
239 error_msg_and_die.c fgets_str.c find_mount_point.c find_pid_by_name.c \
240 find_root_device.c full_read.c full_write.c get_console.c \
241 get_last_path_component.c get_line_from_file.c gz_open.c human_readable.c \
242 isdirectory.c kernel_version.c loop.c mode_string.c module_syscalls.c mtab.c \
243 mtab_file.c my_getgrnam.c my_getgrgid.c my_getpwnam.c my_getpwnamegid.c \
244 my_getpwuid.c parse_mode.c parse_number.c perror_msg.c perror_msg_and_die.c \
245 print_file.c process_escape_sequence.c read_package_field.c recursive_action.c \
246 safe_read.c safe_strncpy.c syscalls.c syslog_msg_with_name.c time_string.c \
247 trim.c unzip.c vdprintf.c verror_msg.c vperror_msg.c wfopen.c xfuncs.c \
248 xgetcwd.c xreadlink.c xregcomp.c interface.c remove_file.c last_char_is.c \
249 copyfd.c vherror_msg.c herror_msg.c herror_msg_and_die.c xgethostbyname.c \
250 dirname.c make_directory.c create_icmp_socket.c arith.c
251 LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC))
252 LIBBB_CFLAGS = -I$(LIBBB)
253 ifneq ($(strip $(BB_SRC_DIR)),)
254     LIBBB_CFLAGS += -I$(BB_SRC_DIR)/$(LIBBB)
255 endif
256
257 LIBBB_MSRC=libbb/messages.c
258 LIBBB_MESSAGES= full_version name_too_long omitting_directory not_a_directory \
259 memory_exhausted invalid_date invalid_option io_error dash_dash_help \
260 write_error too_few_args name_longer_than_foo unknown can_not_create_raw_socket
261 LIBBB_MOBJ=$(patsubst %,$(LIBBB)/%.o, $(LIBBB_MESSAGES))
262
263 LIBBB_ARCSRC=libbb/unarchive.c
264 LIBBB_ARCOBJ= archive_offset seek_sub_file extract_archive unarchive \
265 get_header_ar get_header_cpio get_header_tar deb_extract
266 LIBBB_AROBJS=$(patsubst %,$(LIBBB)/%.o, $(LIBBB_ARCOBJ))
267
268
269 # Put user-supplied flags at the end, where they
270 # have a chance of winning.
271 CFLAGS += $(CFLAGS_EXTRA)
272
273 .EXPORT_ALL_VARIABLES:
274
275 all: applet_source_list busybox busybox.links doc
276
277 applet_source_list: busybox.sh Config.h
278         (echo -n "APPLET_SOURCES := "; BB_SRC_DIR=$(BB_SRC_DIR) $(SHELL) $^) > $@
279
280 doc: olddoc
281
282 # Old Docs...
283 olddoc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
284
285 docs/busybox.pod : docs/busybox_header.pod usage.h docs/busybox_footer.pod
286         - ( cat docs/busybox_header.pod; \
287             docs/autodocifier.pl usage.h; \
288             cat docs/busybox_footer.pod ) > docs/busybox.pod
289
290 docs/BusyBox.txt: docs/busybox.pod
291         @echo
292         @echo BusyBox Documentation
293         @echo
294         -mkdir -p docs
295         -pod2text $< > $@
296
297 docs/BusyBox.1: docs/busybox.pod
298         - mkdir -p docs
299         - pod2man --center=BusyBox --release="version $(VERSION)" \
300                 $< > $@
301
302 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
303         - mkdir -p docs
304         -@ rm -f docs/BusyBox.html
305         -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
306
307 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
308         -@ mkdir -p docs/busybox.lineo.com
309         -  pod2html --noindex $< > \
310             docs/busybox.lineo.com/BusyBox.html
311         -@ rm -f pod2htm*
312
313
314 # New docs based on DOCBOOK SGML
315 newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
316
317 docs/busybox.txt: docs/busybox.sgml
318         @echo
319         @echo BusyBox Documentation
320         @echo
321         - mkdir -p docs
322         (cd docs; sgmltools -b txt busybox.sgml)
323
324 docs/busybox.dvi: docs/busybox.sgml
325         - mkdir -p docs
326         (cd docs; sgmltools -b dvi busybox.sgml)
327
328 docs/busybox.ps: docs/busybox.sgml
329         - mkdir -p docs
330         (cd docs; sgmltools -b ps busybox.sgml)
331
332 docs/busybox.pdf: docs/busybox.ps
333         - mkdir -p docs
334         (cd docs; ps2pdf busybox.ps)
335
336 docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
337         - mkdir -p docs
338         (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
339
340
341 busybox: $(PWD_LIB) $(LIBBB_LIB) $(OBJECTS) 
342         $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBBB_LIB) $(PWD_LIB) $(LIBRARIES)
343         $(STRIP)
344
345 # Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h"
346 # but with VPATH, some or all of those file names are resolved to the
347 # directories in which they live.
348 busybox.links: busybox.mkll Config.h applets.h
349         - $(SHELL) $^ >$@
350
351 nfsmount.o cmdedit.o: %.o: %.h
352 ash.o hush.o lash.o msh.o: cmdedit.h
353 $(OBJECTS): %.o: %.c Config.h busybox.h applets.h Makefile
354         $(CC) $(CFLAGS) -I. $(patsubst %,-I%,$(subst :, ,$(BB_SRC_DIR))) -c $< -o $*.o
355
356 $(PWD_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile
357         - mkdir -p $(PWD_GRP)
358         $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o
359
360 $(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile libbb/libbb.h
361         - mkdir -p $(LIBBB)
362         $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -c $< -o $*.o
363
364 $(LIBBB_MOBJ): $(LIBBB_MSRC)
365         - mkdir -p $(LIBBB)
366         $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -DL_$(patsubst libbb/%,%,$*) -c $< -o $*.o
367
368 $(LIBBB_AROBJS): $(LIBBB_ARCSRC)
369         - mkdir -p $(LIBBB)
370         $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -DL_$(patsubst libbb/%,%,$*) -c $< -o $*.o
371
372 libpwd.a: $(PWD_OBJS)
373         $(AR) $(ARFLAGS) $@ $^
374
375 libbb.a:  $(LIBBB_MOBJ) $(LIBBB_AROBJS) $(LIBBB_OBJS)
376         $(AR) $(ARFLAGS) $@ $^
377
378 usage.o: usage.h
379
380 libbb/loop.o: libbb/loop.h
381
382 libbb/loop.h: mk_loop_h.sh
383         @ $(SHELL) $< > $@
384
385 test tests:
386         # old way of doing it
387         #cd tests && $(MAKE) all
388         # new way of doing it
389         cd tests && ./tester.sh
390
391 clean:
392         - cd tests && $(MAKE) clean
393         - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
394             docs/busybox.lineo.com/BusyBox.html
395         - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
396             docs/busybox.pdf docs/busybox.lineo.com/busybox.html
397         - rm -f multibuild.log Config.h.orig *.gdb *.elf
398         - rm -rf docs/busybox _install libpwd.a libbb.a pod2htm*
399         - rm -f busybox.links libbb/loop.h *~ slist.mk core applet_source_list
400         - find -name \*.o -exec rm -f {} \;
401
402 distclean: clean
403         - rm -f busybox applet_source_list
404         - cd tests && $(MAKE) distclean
405
406 install: install.sh busybox busybox.links
407         $(SHELL) $< $(PREFIX)
408
409 install-hardlinks: install.sh busybox busybox.links
410         $(SHELL) $< $(PREFIX) --hardlinks
411
412 debug_pristine:
413         @ echo VPATH=\"$(VPATH)\"
414         @ echo OBJECTS=\"$(OBJECTS)\"
415
416 dist release: distclean doc
417         cd ..;                                  \
418         rm -rf busybox-$(VERSION);              \
419         cp -a busybox busybox-$(VERSION);       \
420                                                 \
421         find busybox-$(VERSION)/ -type d        \
422                                  -name CVS      \
423                                  -print         \
424                 -exec rm -rf {} \; ;            \
425                                                 \
426         find busybox-$(VERSION)/ -type f        \
427                                  -name .\#*     \
428                                  -print         \
429                 -exec rm -f {} \;  ;            \
430                                                 \
431         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
432
433 .PHONY: tags
434 tags:
435         ctags -R .