1ba43f1bab996c8b491d0ed69b47298ee3470fd9
[oweals/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.61.pre
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.  
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 # Everything should compile and work as expected these days...
89 #CC = ../uClibc/extra/gcc-uClibc/i386-uclibc-gcc
90
91 # To compile vs some other alternative libc, you may need to use/adjust
92 # the following lines to meet your needs...
93 #
94 # If you are using Red Hat 6.x with the compatible RPMs (for developing under
95 # Red Hat 5.x and glibc 2.0) uncomment the following.  Be sure to read about
96 # using the compatible RPMs (compat-*) at http://www.redhat.com !
97 #LIBCDIR=/usr/i386-glibc20-linux
98 #
99 # The following is used for libc5 (if you install altgcc and libc5-altdev
100 # on a Debian system).  
101 #LIBCDIR=/usr/i486-linuxlibc1
102 #
103 # For other libraries, you are on your own...
104 #LDFLAGS+=-nostdlib
105 #LIBRARIES = $(LIBCDIR)/lib/libc.a -lgcc
106 #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
107 #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
108
109 # use '-Os' optimization if available, else use -O2
110 OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
111     then echo "-Os"; else echo "-O2" ; fi)
112
113 WARNINGS = -Wall -Wshadow
114
115 ARFLAGS = -r
116
117 #
118 #--------------------------------------------------------
119 # If you're going to do a lot of builds with a non-vanilla configuration,
120 # it makes sense to adjust parameters above, so you can type "make"
121 # by itself, instead of following it by the same half-dozen overrides
122 # every time.  The stuff below, on the other hand, is probably less
123 # prone to casual user adjustment.
124
125
126 ifeq ($(strip $(DOLFS)),true)
127     # For large file summit support
128     CFLAGS+=-D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64
129 endif
130 ifeq ($(strip $(DODMALLOC)),true)
131     # For testing mem leaks with dmalloc
132     CFLAGS+=-DDMALLOC
133     LIBRARIES = -ldmalloc
134     # Force debug=true, since this is useless when not debugging...
135     DODEBUG = true
136 else
137     ifeq ($(strip $(DOEFENCE)),true)
138         LIBRARIES = -lefence
139         # Force debug=true, since this is useless when not debugging...
140         DODEBUG = true
141     endif
142 endif
143 ifeq ($(strip $(DODEBUG)),true)
144     CFLAGS  += $(WARNINGS) -g -D_GNU_SOURCE
145     LDFLAGS += -Wl,-warn-common
146     STRIP    =
147 else
148     CFLAGS  += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
149     LDFLAGS += -s -Wl,-warn-common
150     STRIP    = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
151 endif
152 ifeq ($(strip $(DOSTATIC)),true)
153     LDFLAGS += --static
154     #
155     #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they 
156     # work) to try and strip out any unused junk.  Doesn't do much for me, 
157     # but you may want to give it a shot...
158     #
159     #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
160     #   -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
161     #                   --gc-sections -v >/dev/null && echo 1),1)
162     #   CFLAGS += -ffunction-sections -fdata-sections
163     #   LDFLAGS += --gc-sections
164     #endif
165 endif
166
167 ifndef $(PREFIX)
168     PREFIX = `pwd`/_install
169 endif
170
171 # Additional complications due to support for pristine source dir.
172 # Include files in the build directory should take precedence over
173 # the copy in BB_SRC_DIR, both during the compilation phase and the
174 # shell script that finds the list of object files.
175 # Work in progress by <ldoolitt@recycle.lbl.gov>.
176 #
177 ifneq ($(strip $(BB_SRC_DIR)),)
178     VPATH = $(BB_SRC_DIR)
179 endif
180 #ifneq ($(strip $(VPATH)),)
181 #    CFLAGS += -I- -I. $(patsubst %,-I%,$(subst :, ,$(VPATH)))
182 #endif
183
184 # We need to set APPLET_SOURCES to something like
185 #   $(shell busybox.sh Config.h)
186 # but in a manner that works with VPATH and BB_SRC_DIR.
187 # Possible ways to approach this:
188 #
189 #   1. Explicitly search through .:$(VPATH) for busybox.sh and config.h,
190 #      then $(shell $(BUSYBOX_SH) $(CONFIG_H) $(BB_SRC_DIR))
191 #
192 #   2. Explicity search through .:$(VPATH) for slist.mk,
193 #      then $(shell $(MAKE) -f $(SLIST_MK) VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR))
194 #
195 #   3. Create slist.mk in this directory, with commands embedded in
196 #      a $(shell ...) command, and $(MAKE) it immediately.
197 #
198 #   4. Use a real rule within this makefile to create a file that sets 
199 #      APPLET_SOURCE_LIST, then include that file.  Has complications
200 #      with the first trip through the makefile (before processing the
201 #      include) trying to do too much, and a spurious warning the first
202 #      time make is run.
203 #
204 # This is option 3:
205 #
206 #APPLET_SOURCES = $(shell \
207 #   echo -e 'all: busybox.sh Config.h\n\t@ $$(SHELL) $$^ $$(BB_SRC_DIR)' >slist.mk; \
208 #   make -f slist.mk VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR) \
209 #)
210 # And option 4:
211 -include applet_source_list
212
213 OBJECTS   = $(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
214 CFLAGS    += $(CROSS_CFLAGS)
215 CFLAGS    += -DBB_VER='"$(VERSION)"'
216 CFLAGS    += -DBB_BT='"$(BUILDTIME)"'
217 ifdef BB_INIT_SCRIPT
218     CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
219 endif
220
221 ifneq ($(strip $(USE_SYSTEM_PWD_GRP)),true)
222     PWD_GRP     = pwd_grp
223     PWD_GRP_DIR = $(BB_SRC_DIR:=/)$(PWD_GRP)
224     PWD_LIB     = libpwd.a
225     PWD_CSRC=__getpwent.c pwent.c getpwnam.c getpwuid.c putpwent.c getpw.c \
226             fgetpwent.c __getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c \
227             initgroups.c setgroups.c
228     PWD_OBJS=$(patsubst %.c,$(PWD_GRP)/%.o, $(PWD_CSRC))
229 ifneq ($(strip $(BB_SRC_DIR)),)
230     PWD_CFLAGS = -I- -I.
231 endif
232     PWD_CFLAGS += -I$(PWD_GRP_DIR)
233 else
234     CFLAGS    += -DUSE_SYSTEM_PWD_GRP
235 endif
236     
237 LIBBB     = libbb
238 LIBBB_LIB = libbb.a
239 LIBBB_CSRC= ask_confirmation.c chomp.c concat_path_file.c copy_file.c \
240 copy_file_chunk.c libc5.c device_open.c error_msg.c \
241 error_msg_and_die.c fgets_str.c find_mount_point.c find_pid_by_name.c \
242 find_root_device.c full_read.c full_write.c get_console.c \
243 get_last_path_component.c get_line_from_file.c gz_open.c human_readable.c \
244 isdirectory.c kernel_version.c loop.c mode_string.c module_syscalls.c mtab.c \
245 mtab_file.c my_getgrnam.c my_getgrgid.c my_getpwnam.c my_getpwnamegid.c \
246 my_getpwuid.c parse_mode.c parse_number.c perror_msg.c perror_msg_and_die.c \
247 print_file.c process_escape_sequence.c read_package_field.c recursive_action.c \
248 safe_read.c safe_strncpy.c syscalls.c syslog_msg_with_name.c time_string.c \
249 trim.c unzip.c vdprintf.c verror_msg.c vperror_msg.c wfopen.c xfuncs.c \
250 xgetcwd.c xreadlink.c xregcomp.c interface.c remove_file.c last_char_is.c \
251 copyfd.c vherror_msg.c herror_msg.c herror_msg_and_die.c xgethostbyname.c \
252 dirname.c make_directory.c create_icmp_socket.c u_signal_names.c arith.c \
253 simplify_path.c
254 LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC))
255 ifeq ($(strip $(BB_SRC_DIR)),)
256     LIBBB_CFLAGS += -I$(LIBBB)
257 else
258     LIBBB_CFLAGS = -I- -I. -I./$(LIBBB) -I$(BB_SRC_DIR)/$(LIBBB) -I$(BB_SRC_DIR)
259 endif
260
261 LIBBB_MSRC=libbb/messages.c
262 LIBBB_MESSAGES= full_version name_too_long omitting_directory not_a_directory \
263 memory_exhausted invalid_date invalid_option io_error dash_dash_help \
264 write_error too_few_args name_longer_than_foo unknown can_not_create_raw_socket
265 LIBBB_MOBJ=$(patsubst %,$(LIBBB)/%.o, $(LIBBB_MESSAGES))
266
267 LIBBB_ARCSRC=libbb/unarchive.c
268 LIBBB_ARCOBJ= archive_offset seek_sub_file extract_archive unarchive \
269 get_header_ar get_header_cpio get_header_tar deb_extract
270 LIBBB_AROBJS=$(patsubst %,$(LIBBB)/%.o, $(LIBBB_ARCOBJ))
271
272
273 # Put user-supplied flags at the end, where they
274 # have a chance of winning.
275 CFLAGS += $(CFLAGS_EXTRA)
276
277 .EXPORT_ALL_VARIABLES:
278
279 all: applet_source_list busybox busybox.links doc
280
281 applet_source_list: busybox.sh Config.h
282         (echo -n "APPLET_SOURCES := "; CC="$(CC)" BB_SRC_DIR="$(BB_SRC_DIR)" $(SHELL) $^) > $@
283
284 doc: olddoc
285
286 # Old Docs...
287 olddoc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
288
289 docs/busybox.pod : docs/busybox_header.pod usage.h docs/busybox_footer.pod
290         - ( cat docs/busybox_header.pod; \
291             docs/autodocifier.pl usage.h; \
292             cat docs/busybox_footer.pod ) > docs/busybox.pod
293
294 docs/BusyBox.txt: docs/busybox.pod
295         @echo
296         @echo BusyBox Documentation
297         @echo
298         -mkdir -p docs
299         -pod2text $< > $@
300
301 docs/BusyBox.1: docs/busybox.pod
302         - mkdir -p docs
303         - pod2man --center=BusyBox --release="version $(VERSION)" \
304                 $< > $@
305
306 docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
307         - mkdir -p docs
308         -@ rm -f docs/BusyBox.html
309         -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
310
311 docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
312         -@ mkdir -p docs/busybox.lineo.com
313         -  pod2html --noindex $< > \
314             docs/busybox.lineo.com/BusyBox.html
315         -@ rm -f pod2htm*
316
317
318 # New docs based on DOCBOOK SGML
319 newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
320
321 docs/busybox.txt: docs/busybox.sgml
322         @echo
323         @echo BusyBox Documentation
324         @echo
325         - mkdir -p docs
326         (cd docs; sgmltools -b txt busybox.sgml)
327
328 docs/busybox.dvi: docs/busybox.sgml
329         - mkdir -p docs
330         (cd docs; sgmltools -b dvi busybox.sgml)
331
332 docs/busybox.ps: docs/busybox.sgml
333         - mkdir -p docs
334         (cd docs; sgmltools -b ps busybox.sgml)
335
336 docs/busybox.pdf: docs/busybox.ps
337         - mkdir -p docs
338         (cd docs; ps2pdf busybox.ps)
339
340 docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
341         - mkdir -p docs
342         (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
343
344
345 busybox: $(PWD_LIB) $(LIBBB_LIB) $(OBJECTS) 
346         $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBBB_LIB) $(PWD_LIB) $(LIBRARIES)
347         $(STRIP)
348
349 # Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h"
350 # but with VPATH, some or all of those file names are resolved to the
351 # directories in which they live.
352 busybox.links: busybox.mkll Config.h applets.h
353         - $(SHELL) $^ >$@
354
355 nfsmount.o cmdedit.o: %.o: %.h
356 ash.o hush.o lash.o msh.o: cmdedit.h
357 $(OBJECTS): %.o: %.c Config.h busybox.h applets.h Makefile
358 ifeq ($(strip $(BB_SRC_DIR)),)
359         $(CC) $(CFLAGS) -I. $(patsubst %,-I%,$(subst :, ,$(BB_SRC_DIR))) -c $< -o $*.o
360 else
361         $(CC) $(CFLAGS) -I- -I. $(patsubst %,-I%,$(subst :, ,$(BB_SRC_DIR))) -c $< -o $*.o
362 endif
363
364 $(PWD_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile
365         - mkdir -p $(PWD_GRP)
366         $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o
367
368 $(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile libbb/libbb.h
369         - mkdir -p $(LIBBB)
370         $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -c $< -o $*.o
371
372 $(LIBBB_MOBJ): $(LIBBB_MSRC)
373         - mkdir -p $(LIBBB)
374         $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -DL_$(patsubst libbb/%,%,$*) -c $< -o $*.o
375
376 $(LIBBB_AROBJS): $(LIBBB_ARCSRC)
377         - mkdir -p $(LIBBB)
378         $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -DL_$(patsubst libbb/%,%,$*) -c $< -o $*.o
379
380 libpwd.a: $(PWD_OBJS)
381         $(AR) $(ARFLAGS) $@ $^
382
383 libbb.a:  $(LIBBB_MOBJ) $(LIBBB_AROBJS) $(LIBBB_OBJS)
384         $(AR) $(ARFLAGS) $@ $^
385
386 usage.o: usage.h
387
388 libbb/loop.o: libbb/loop.h
389
390 libbb/loop.h: mk_loop_h.sh
391         @ $(SHELL) $< > $@
392
393 test tests:
394         # old way of doing it
395         #cd tests && $(MAKE) all
396         # new way of doing it
397         cd tests && ./tester.sh
398
399 clean:
400         - cd tests && $(MAKE) clean
401         - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
402             docs/busybox.lineo.com/BusyBox.html
403         - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
404             docs/busybox.pdf docs/busybox.lineo.com/busybox.html
405         - rm -f multibuild.log Config.h.orig *.gdb *.elf
406         - rm -rf docs/busybox _install libpwd.a libbb.a pod2htm*
407         - rm -f busybox.links libbb/loop.h *~ slist.mk core applet_source_list
408         - find -name \*.o -exec rm -f {} \;
409
410 distclean: clean
411         - rm -f busybox applet_source_list
412         - cd tests && $(MAKE) distclean
413
414 install: install.sh busybox busybox.links
415         $(SHELL) $< $(PREFIX)
416
417 install-hardlinks: install.sh busybox busybox.links
418         $(SHELL) $< $(PREFIX) --hardlinks
419
420 debug_pristine:
421         @ echo VPATH=\"$(VPATH)\"
422         @ echo OBJECTS=\"$(OBJECTS)\"
423
424 dist release: distclean doc
425         cd ..;                                  \
426         rm -rf busybox-$(VERSION);              \
427         cp -a busybox busybox-$(VERSION);       \
428                                                 \
429         find busybox-$(VERSION)/ -type d        \
430                                  -name CVS      \
431                                  -print         \
432                 -exec rm -rf {} \; ;            \
433                                                 \
434         find busybox-$(VERSION)/ -type f        \
435                                  -name .\#*     \
436                                  -print         \
437                 -exec rm -f {} \;  ;            \
438                                                 \
439         tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
440
441 .PHONY: tags
442 tags:
443         ctags -R .