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