blob: 285f3ab66620871919ded3fd9c3875372c7376f6 [file] [log] [blame]
Eric Andersenc4996011999-10-20 22:08:37 +00001# Makefile for busybox
2#
Erik Andersen9ffdaa62000-02-11 21:55:04 +00003# Copyright (C) 1999-2000 Erik Andersen <andersee@debian.org>
4# Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org>
5#
Eric Andersenc4996011999-10-20 22:08:37 +00006# 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
Erik Andersen7c4b2f32000-02-29 21:49:22 +000021PROG := busybox
Eric Andersena6cd0702000-12-20 23:22:29 +000022VERSION := 0.49pre
Erik Andersen1ad302a2000-03-24 00:54:46 +000023BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
John Beppucbd66282000-04-13 22:57:45 +000024export VERSION
Eric Andersencc8ed391999-10-05 16:24:54 +000025
Eric Andersen20ea5c32000-11-29 22:08:35 +000026# 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
Eric Andersen0d5a08e2001-01-22 01:05:04 +000031# If you want to add some simple compiler switches (like -march=i686),
32# especially from the command line, use this instead of CFLAGS directly.
33# For optimization overrides, it's better still to set OPTIMIZATION.
34CFLAGS_EXTRA =
35
Eric Andersen51154ba2000-07-20 21:57:11 +000036# If you want a static binary, turn this on.
37DOSTATIC = false
38
Erik Andersenfac10d72000-02-07 05:29:42 +000039# Set the following to `true' to make a debuggable build.
40# Leave this set to `false' for production use.
Erik Andersen9ffdaa62000-02-11 21:55:04 +000041# eg: `make DODEBUG=true tests'
Eric Andersen1d255be2000-07-19 17:33:54 +000042# Do not enable this for production builds...
Randolph Chung1e1d9d12000-12-07 03:56:10 +000043DODEBUG = false
Eric Andersen21943ce1999-10-13 18:04:51 +000044
Eric Andersen1d255be2000-07-19 17:33:54 +000045# This enables compiling with dmalloc ( http://dmalloc.com/ )
46# which is an excellent public domain mem leak and malloc problem
47# detector. To enable dmalloc, before running busybox you will
48# want to first set up your environment.
49# eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
50# Do not enable this for production builds...
51DODMALLOC = false
52
Eric Andersen8a2e56c2000-09-21 02:23:30 +000053# If you want large file summit support, turn this on.
54# This has no effect if you don't have a kernel with lfs
55# support, and a system with libc-2.1.3 or later.
56# Some of the programs that can benefit from lfs support
57# are dd, gzip, mount, tar, and mkfs_minix.
58# LFS allows you to use the above programs for files
59# larger than 2GB!
60DOLFS = false
61
Eric Andersen20ea5c32000-11-29 22:08:35 +000062# If you have a "pristine" source directory, point BB_SRC_DIR to it.
Eric Andersen09a34e52000-12-01 19:40:18 +000063# Experimental and incomplete; tell the mailing list
64# <busybox@opensource.lineo.com> if you do or don't like it so far.
Eric Andersen20ea5c32000-11-29 22:08:35 +000065BB_SRC_DIR = .
Eric Andersen8a2e56c2000-09-21 02:23:30 +000066
Eric Andersen1d255be2000-07-19 17:33:54 +000067# If you are running a cross compiler, you may want to set this
Eric Andersen20ea5c32000-11-29 22:08:35 +000068# to something more interesting, like "powerpc-linux-".
69CROSS =
Eric Andersen1d255be2000-07-19 17:33:54 +000070CC = $(CROSS)gcc
71STRIPTOOL = $(CROSS)strip
72
Erik Andersen499f65f2000-05-16 20:07:38 +000073# To compile vs an alternative libc, you may need to use/adjust
Eric Andersen1d255be2000-07-19 17:33:54 +000074# the following lines to meet your needs. This is how I make
Eric Andersen9aa23ba2001-01-16 21:20:46 +000075# busybox compile staticly with uClibc (needs BB_FEATURE_NFSMOUNT
76# disabled at the moment). Note the _full_ path for LIBCDIR.
77# This is because make doesn't do ~ expansion...
Eric Andersen4d4b3b12000-12-12 23:23:32 +000078#LIBCDIR=/home/andersen/CVS/uClibc
Eric Andersen28c88a92000-06-20 21:03:24 +000079#LDFLAGS+=-nostdlib
Eric Andersenc559d302000-10-27 18:26:18 +000080#LIBRARIES = $(LIBCDIR)/libc.a -lgcc
Eric Andersen4d4b3b12000-12-12 23:23:32 +000081#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
82#GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
Erik Andersen499f65f2000-05-16 20:07:38 +000083
Eric Andersen9aa23ba2001-01-16 21:20:46 +000084# This is how I compile with the uClibc shared lib...
85#LIBCDIR=/home/andersen/CVS/uClibc
86#LDFLAGS+=-nostdlib
87#LIBRARIES = -luClibc -lgcc $(LIBCDIR)/crt0.o
88#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
89#GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
90
Eric Andersen1d255be2000-07-19 17:33:54 +000091#--------------------------------------------------------
Eric Andersend80e8511999-11-16 00:46:00 +000092
Erik Andersen3d427ac2000-05-12 19:38:40 +000093# use '-Os' optimization if available, else use -O2
94OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
95 then echo "-Os"; else echo "-O2" ; fi)
Erik Andersenfac10d72000-02-07 05:29:42 +000096
Pavel Roskin43c17b32000-07-28 19:41:32 +000097WARNINGS = -Wall
98
Eric Andersen8a2e56c2000-09-21 02:23:30 +000099ifeq ($(DOLFS),true)
100 # For large file summit support
101 CFLAGS+=-D_FILE_OFFSET_BITS=64
102endif
Eric Andersen1d255be2000-07-19 17:33:54 +0000103ifeq ($(DODMALLOC),true)
104 # For testing mem leaks with dmalloc
105 CFLAGS+=-DDMALLOC
106 LIBRARIES = -ldmalloc
107 # Force debug=true, since this is useless when not debugging...
108 DODEBUG = true
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000109endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000110ifeq ($(DODEBUG),true)
Eric Andersen9962cd92000-12-11 16:20:40 +0000111 CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE
112 LDFLAGS += -Wl,-warn-common
113 STRIP =
Eric Andersen17d49ef1999-10-06 20:25:32 +0000114else
Pavel Roskin43c17b32000-07-28 19:41:32 +0000115 CFLAGS += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
Eric Andersen9962cd92000-12-11 16:20:40 +0000116 LDFLAGS += -s -Wl,-warn-common
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000117 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
Eric Andersen2c1faec2000-09-21 22:26:02 +0000118endif
119ifeq ($(DOSTATIC),true)
120 LDFLAGS += --static
121 #
122 #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they
123 # work) to try and strip out any unused junk. Doesn't do much for me,
124 # but you may want to give it a shot...
125 #
126 #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
127 # -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
128 # --gc-sections -v >/dev/null && echo 1),1)
129 # CFLAGS += -ffunction-sections -fdata-sections
130 # LDFLAGS += --gc-sections
131 #endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000132endif
133
Eric Anderseneded54b1999-11-12 08:03:23 +0000134ifndef $(PREFIX)
Erik Andersenfac10d72000-02-07 05:29:42 +0000135 PREFIX = `pwd`/_install
Eric Andersen17d49ef1999-10-06 20:25:32 +0000136endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000137
Eric Andersen09a34e52000-12-01 19:40:18 +0000138# Additional complications due to support for pristine source dir.
139# Config.h in the build directory should take precedence over the
140# copy in BB_SRC_DIR, both during the compilation phase and the
141# shell script that finds the list of object files.
142#
143# Work in progress by <ldoolitt@recycle.lbl.gov>.
144# If it gets in your way, set DISABLE_VPATH=yes
145ifeq ($(DISABLE_VPATH),yes)
146 CONFIG_H = Config.h
147else
148 VPATH = .:$(BB_SRC_DIR)
149 CONFIG_LIST = $(addsuffix /Config.h,$(subst :, ,$(VPATH)))
150 CONFIG_H = $(word 1,$(shell ls -f -1 $(CONFIG_LIST) 2>/dev/null))
Eric Andersen4d4b3b12000-12-12 23:23:32 +0000151 CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH))) $(CROSS_CFLAGS)
Eric Andersen09a34e52000-12-01 19:40:18 +0000152endif
153
154OBJECTS = $(shell $(BB_SRC_DIR)/busybox.sh $(CONFIG_H) $(BB_SRC_DIR)) busybox.o messages.o usage.o utility.o
Erik Andersenfac10d72000-02-07 05:29:42 +0000155CFLAGS += -DBB_VER='"$(VERSION)"'
156CFLAGS += -DBB_BT='"$(BUILDTIME)"'
Erik Andersend387d011999-12-21 02:55:11 +0000157ifdef BB_INIT_SCRIPT
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000158 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
Erik Andersend387d011999-12-21 02:55:11 +0000159endif
160
Eric Andersen0d5a08e2001-01-22 01:05:04 +0000161# Put user-supplied flags at the end, where they
162# have a chance of winning.
163CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen624cc772000-09-21 02:04:51 +0000164
Matt Kraai810d38f2000-09-22 02:33:29 +0000165all: busybox busybox.links doc
Erik Andersen0a704e82000-05-03 03:19:06 +0000166
Eric Andersen67536ff2000-07-06 22:53:22 +0000167doc: olddoc
Eric Andersen53310252000-07-04 19:42:23 +0000168
169# Old Docs...
Eric Andersen67536ff2000-07-06 22:53:22 +0000170olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000171
Eric Andersen67536ff2000-07-06 22:53:22 +0000172docs/BusyBox.txt: docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000173 @echo
174 @echo BusyBox Documentation
175 @echo
Eric Andersen29be79c2000-12-01 22:57:44 +0000176 -mkdir -p docs
177 -pod2text $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.txt
Eric Andersen53310252000-07-04 19:42:23 +0000178
Eric Andersen67536ff2000-07-06 22:53:22 +0000179docs/BusyBox.1: docs/busybox.pod
Eric Andersen09a34e52000-12-01 19:40:18 +0000180 - mkdir -p docs
Eric Andersen29be79c2000-12-01 22:57:44 +0000181 - pod2man --center=BusyBox --release="version $(VERSION)" \
182 $(BB_SRC_DIR)/docs/busybox.pod > docs/BusyBox.1
Eric Andersen53310252000-07-04 19:42:23 +0000183
Eric Andersen67536ff2000-07-06 22:53:22 +0000184docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
Eric Andersene2f6e122000-12-01 19:55:04 +0000185 -@ rm -f docs/BusyBox.html
Eric Andersenb8b8d812000-12-01 20:26:30 +0000186 -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000187
Eric Andersen67536ff2000-07-06 22:53:22 +0000188docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
Eric Andersene2f6e122000-12-01 19:55:04 +0000189 -@ mkdir -p docs/busybox.lineo.com
Eric Andersen29be79c2000-12-01 22:57:44 +0000190 - pod2html --noindex $(BB_SRC_DIR)/docs/busybox.pod > \
191 docs/busybox.lineo.com/BusyBox.html
Eric Andersene2f6e122000-12-01 19:55:04 +0000192 -@ rm -f pod2html*
Erik Andersen0a704e82000-05-03 03:19:06 +0000193
Eric Andersen67536ff2000-07-06 22:53:22 +0000194
195# New docs based on DOCBOOK SGML
Eric Andersen488aac22000-09-24 02:42:48 +0000196newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
Eric Andersen67536ff2000-07-06 22:53:22 +0000197
198docs/busybox.txt: docs/busybox.sgml
199 @echo
200 @echo BusyBox Documentation
201 @echo
Eric Andersen09a34e52000-12-01 19:40:18 +0000202 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000203 (cd docs; sgmltools -b txt busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000204
205docs/busybox.dvi: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000206 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000207 (cd docs; sgmltools -b dvi busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000208
Eric Andersena2c83d82000-07-07 20:52:56 +0000209docs/busybox.ps: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000210 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000211 (cd docs; sgmltools -b ps busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000212
Eric Andersena2c83d82000-07-07 20:52:56 +0000213docs/busybox.pdf: docs/busybox.ps
Eric Andersen09a34e52000-12-01 19:40:18 +0000214 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000215 (cd docs; ps2pdf busybox.ps)
Eric Andersen67536ff2000-07-06 22:53:22 +0000216
Eric Andersen488aac22000-09-24 02:42:48 +0000217docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000218 - mkdir -p docs
Eric Andersen67536ff2000-07-06 22:53:22 +0000219 (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
220
221
222
Eric Andersen624cc772000-09-21 02:04:51 +0000223busybox: $(OBJECTS)
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000224 $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000225 $(STRIP)
Erik Andersen1d1d9502000-04-21 01:26:49 +0000226
Matt Kraai8392acd2001-01-18 03:03:09 +0000227busybox.links: Config.h applets.h
Eric Andersen868c0572000-12-02 00:44:48 +0000228 - $(BB_SRC_DIR)/busybox.mkll $(CONFIG_H) $(BB_SRC_DIR)/applets.h >$@
Eric Andersen1667fb41999-11-27 20:34:28 +0000229
Mark Whitleycc54d122000-07-10 23:07:54 +0000230nfsmount.o cmdedit.o: %.o: %.h
Matt Kraai8392acd2001-01-18 03:03:09 +0000231$(OBJECTS): %.o: %.c Config.h busybox.h applets.h Makefile
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000232
Matt Kraai810d38f2000-09-22 02:33:29 +0000233utility.o: loop.h
Eric Andersen624cc772000-09-21 02:04:51 +0000234
Eric Andersen09a34e52000-12-01 19:40:18 +0000235loop.h: mk_loop_h.sh
236 @ sh $<
Eric Andersen624cc772000-09-21 02:04:51 +0000237
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000238test tests:
239 cd tests && $(MAKE) all
240
Eric Andersencc8ed391999-10-05 16:24:54 +0000241clean:
Eric Andersen20ea5c32000-11-29 22:08:35 +0000242 - cd tests && $(MAKE) clean
Eric Andersen67536ff2000-07-06 22:53:22 +0000243 - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
244 docs/busybox.lineo.com/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000245 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
246 docs/busybox.pdf docs/busybox.lineo.com/busybox.html
Eric Andersen54e94572001-01-24 23:53:43 +0000247 - rm -f Config.h.ORG bb.def.h busybox.REGRESS.sh.results bb.OptionsAndFeatures
Eric Andersen080d51b2000-08-01 22:44:32 +0000248 - rm -rf docs/busybox _install
Eric Andersen09a34e52000-12-01 19:40:18 +0000249 - rm -f busybox.links loop.h *~ *.o core
Eric Andersencc8ed391999-10-05 16:24:54 +0000250
251distclean: clean
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000252 - rm -f busybox
253 - cd tests && $(MAKE) distclean
Eric Andersencc8ed391999-10-05 16:24:54 +0000254
Eric Andersen07274581999-11-21 21:50:07 +0000255install: busybox busybox.links
Eric Andersene2f6e122000-12-01 19:55:04 +0000256 $(BB_SRC_DIR)/install.sh $(PREFIX)
Eric Andersen17d49ef1999-10-06 20:25:32 +0000257
Eric Andersen51154ba2000-07-20 21:57:11 +0000258install-hardlinks: busybox busybox.links
Eric Andersene2f6e122000-12-01 19:55:04 +0000259 $(BB_SRC_DIR)/install.sh $(PREFIX) --hardlinks
Eric Andersen51154ba2000-07-20 21:57:11 +0000260
Eric Andersen09a34e52000-12-01 19:40:18 +0000261debug_pristine:
262 @ echo VPATH=\"$(VPATH)\"
263 @ echo CONFIG_LIST=\"$(CONFIG_LIST)\"
264 @ echo CONFIG_H=\"$(CONFIG_H)\"
265 @ echo OBJECTS=\"$(OBJECTS)\"
266
Erik Andersen0a704e82000-05-03 03:19:06 +0000267dist release: distclean doc
Erik Andersenfac10d72000-02-07 05:29:42 +0000268 cd ..; \
269 rm -rf busybox-$(VERSION); \
270 cp -a busybox busybox-$(VERSION); \
271 \
272 find busybox-$(VERSION)/ -type d \
273 -name CVS \
274 -print \
275 | xargs rm -rf; \
276 \
277 find busybox-$(VERSION)/ -type f \
278 -name .cvsignore \
279 -print \
280 | xargs rm -f; \
281 \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000282 find busybox-$(VERSION)/ -type f \
283 -name .\#* \
284 -print \
285 | xargs rm -f; \
286 \
Erik Andersenfac10d72000-02-07 05:29:42 +0000287 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000288
289.PHONY: tags
290tags:
291 ctags -R .