blob: 6a9c694fa4a5d6ccef36f5785959b36ed38e2a03 [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 Andersen7df345e2000-07-21 21:27:11 +000022VERSION := 0.47pre
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 Andersen51154ba2000-07-20 21:57:11 +000026# If you want a static binary, turn this on.
27DOSTATIC = false
28
Erik Andersenfac10d72000-02-07 05:29:42 +000029# Set the following to `true' to make a debuggable build.
30# Leave this set to `false' for production use.
Erik Andersen9ffdaa62000-02-11 21:55:04 +000031# eg: `make DODEBUG=true tests'
Eric Andersen1d255be2000-07-19 17:33:54 +000032# Do not enable this for production builds...
Eric Andersen854e1152000-06-13 06:57:56 +000033DODEBUG = false
Eric Andersen21943ce1999-10-13 18:04:51 +000034
Eric Andersen1d255be2000-07-19 17:33:54 +000035# This enables compiling with dmalloc ( http://dmalloc.com/ )
36# which is an excellent public domain mem leak and malloc problem
37# detector. To enable dmalloc, before running busybox you will
38# want to first set up your environment.
39# eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
40# Do not enable this for production builds...
41DODMALLOC = false
42
Eric Andersen8a2e56c2000-09-21 02:23:30 +000043# If you want large file summit support, turn this on.
44# This has no effect if you don't have a kernel with lfs
45# support, and a system with libc-2.1.3 or later.
46# Some of the programs that can benefit from lfs support
47# are dd, gzip, mount, tar, and mkfs_minix.
48# LFS allows you to use the above programs for files
49# larger than 2GB!
50DOLFS = false
51
52
Eric Andersen1d255be2000-07-19 17:33:54 +000053# If you are running a cross compiler, you may want to set this
54# to something more interesting...
Eric Andersen624cc772000-09-21 02:04:51 +000055CROSS = #powerpc-linux-
Eric Andersen1d255be2000-07-19 17:33:54 +000056CC = $(CROSS)gcc
57STRIPTOOL = $(CROSS)strip
58
Erik Andersen499f65f2000-05-16 20:07:38 +000059# To compile vs an alternative libc, you may need to use/adjust
Eric Andersen1d255be2000-07-19 17:33:54 +000060# the following lines to meet your needs. This is how I make
61# busybox compile with uC-Libc...
62#LIBCDIR=/home/andersen/CVS/uC-libc
Eric Andersen1e03add2000-07-06 09:56:35 +000063#GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
Eric Andersen1d255be2000-07-19 17:33:54 +000064#CFLAGS+=-nostdinc -fno-builtin -I$(LIBCDIR)/include -I$(GCCINCDIR)
Eric Andersen28c88a92000-06-20 21:03:24 +000065#LDFLAGS+=-nostdlib
Eric Andersen1d255be2000-07-19 17:33:54 +000066#LIBRARIES = $(LIBCDIR)/libc.a
Erik Andersen499f65f2000-05-16 20:07:38 +000067
Eric Andersen1d255be2000-07-19 17:33:54 +000068#--------------------------------------------------------
Eric Andersend80e8511999-11-16 00:46:00 +000069
Erik Andersen3d427ac2000-05-12 19:38:40 +000070# use '-Os' optimization if available, else use -O2
71OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
72 then echo "-Os"; else echo "-O2" ; fi)
Erik Andersenfac10d72000-02-07 05:29:42 +000073
Pavel Roskin43c17b32000-07-28 19:41:32 +000074WARNINGS = -Wall
75
Eric Andersen8a2e56c2000-09-21 02:23:30 +000076ifeq ($(DOLFS),true)
77 # For large file summit support
78 CFLAGS+=-D_FILE_OFFSET_BITS=64
79endif
Eric Andersen1d255be2000-07-19 17:33:54 +000080ifeq ($(DODMALLOC),true)
81 # For testing mem leaks with dmalloc
82 CFLAGS+=-DDMALLOC
83 LIBRARIES = -ldmalloc
84 # Force debug=true, since this is useless when not debugging...
85 DODEBUG = true
Erik Andersen9ffdaa62000-02-11 21:55:04 +000086endif
Eric Andersencc8ed391999-10-05 16:24:54 +000087# -D_GNU_SOURCE is needed because environ is used in init.c
Eric Andersen17d49ef1999-10-06 20:25:32 +000088ifeq ($(DODEBUG),true)
Pavel Roskin43c17b32000-07-28 19:41:32 +000089 CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE
Eric Andersen28c88a92000-06-20 21:03:24 +000090 LDFLAGS +=
Erik Andersen9ffdaa62000-02-11 21:55:04 +000091 STRIP =
Eric Andersen17d49ef1999-10-06 20:25:32 +000092else
Pavel Roskin43c17b32000-07-28 19:41:32 +000093 CFLAGS += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
Eric Andersen28c88a92000-06-20 21:03:24 +000094 LDFLAGS += -s
Erik Andersen7c4b2f32000-02-29 21:49:22 +000095 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
Eric Andersena7093171999-10-23 05:42:08 +000096 #Only staticly link when _not_ debugging
97 ifeq ($(DOSTATIC),true)
Erik Andersenfac10d72000-02-07 05:29:42 +000098 LDFLAGS += --static
Erik Andersen23dea9b2000-05-13 00:28:25 +000099 #
Eric Andersen624cc772000-09-21 02:04:51 +0000100 #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they
101 # work) to try and strip out any unused junk. Doesn't do much for me,
102 # but you may want to give it a shot...
Erik Andersen23dea9b2000-05-13 00:28:25 +0000103 #
104 #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
Eric Andersen624cc772000-09-21 02:04:51 +0000105 # -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
106 # --gc-sections -v >/dev/null && echo 1),1)
Erik Andersen499f65f2000-05-16 20:07:38 +0000107 # CFLAGS += -ffunction-sections -fdata-sections
108 # LDFLAGS += --gc-sections
Erik Andersen23dea9b2000-05-13 00:28:25 +0000109 #endif
Eric Andersena7093171999-10-23 05:42:08 +0000110 endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000111endif
112
Eric Anderseneded54b1999-11-12 08:03:23 +0000113ifndef $(PREFIX)
Erik Andersenfac10d72000-02-07 05:29:42 +0000114 PREFIX = `pwd`/_install
Eric Andersen17d49ef1999-10-06 20:25:32 +0000115endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000116
Matt Kraaibf181b92000-07-16 20:57:15 +0000117OBJECTS = $(shell ./busybox.sh) busybox.o messages.o usage.o utility.o
Erik Andersenfac10d72000-02-07 05:29:42 +0000118CFLAGS += -DBB_VER='"$(VERSION)"'
119CFLAGS += -DBB_BT='"$(BUILDTIME)"'
Erik Andersend387d011999-12-21 02:55:11 +0000120ifdef BB_INIT_SCRIPT
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000121 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
Erik Andersend387d011999-12-21 02:55:11 +0000122endif
123
Eric Andersen624cc772000-09-21 02:04:51 +0000124
125all: loop.h busybox busybox.links doc
Erik Andersen0a704e82000-05-03 03:19:06 +0000126
Eric Andersen67536ff2000-07-06 22:53:22 +0000127doc: olddoc
Eric Andersen53310252000-07-04 19:42:23 +0000128
129# Old Docs...
Eric Andersen67536ff2000-07-06 22:53:22 +0000130olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000131
Eric Andersen67536ff2000-07-06 22:53:22 +0000132docs/BusyBox.txt: docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000133 @echo
134 @echo BusyBox Documentation
135 @echo
136 - pod2text docs/busybox.pod > docs/BusyBox.txt
137
Eric Andersen67536ff2000-07-06 22:53:22 +0000138docs/BusyBox.1: docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000139 - pod2man --center=BusyBox --release="version $(VERSION)" docs/busybox.pod > docs/BusyBox.1
140
Eric Andersen67536ff2000-07-06 22:53:22 +0000141docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000142 - rm -f docs/BusyBox.html
143 - ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
144
Eric Andersen67536ff2000-07-06 22:53:22 +0000145docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
Eric Andersen2086e3d2000-07-04 22:17:01 +0000146 - pod2html --noindex docs/busybox.pod > docs/busybox.lineo.com/BusyBox.html
Erik Andersen0a704e82000-05-03 03:19:06 +0000147 - rm -f pod2html*
148
Eric Andersen67536ff2000-07-06 22:53:22 +0000149
150# New docs based on DOCBOOK SGML
151newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busybox.html
152
153docs/busybox.txt: docs/busybox.sgml
154 @echo
155 @echo BusyBox Documentation
156 @echo
157 (cd docs; sgmltools -b txt busybox.sgml)
158
159docs/busybox.dvi: docs/busybox.sgml
160 (cd docs; sgmltools -b dvi busybox.sgml)
161
Eric Andersena2c83d82000-07-07 20:52:56 +0000162docs/busybox.ps: docs/busybox.sgml
Eric Andersen67536ff2000-07-06 22:53:22 +0000163 (cd docs; sgmltools -b ps busybox.sgml)
164
Eric Andersena2c83d82000-07-07 20:52:56 +0000165docs/busybox.pdf: docs/busybox.ps
Eric Andersen67536ff2000-07-06 22:53:22 +0000166 (cd docs; ps2pdf busybox.ps)
167
168docs/busybox/busybox.html: docs/busybox.sgml
169 (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
170
171
172
Eric Andersen624cc772000-09-21 02:04:51 +0000173busybox: $(OBJECTS)
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000174 $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES)
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000175 $(STRIP)
Erik Andersen1d1d9502000-04-21 01:26:49 +0000176
Erik Andersenfac10d72000-02-07 05:29:42 +0000177busybox.links: busybox.def.h
Eric Andersen96bcfd31999-11-12 01:30:18 +0000178 - ./busybox.mkll | sort >$@
Eric Andersen1667fb41999-11-27 20:34:28 +0000179
Mark Whitleycc54d122000-07-10 23:07:54 +0000180nfsmount.o cmdedit.o: %.o: %.h
Erik Andersena3e57ca2000-04-19 03:38:01 +0000181$(OBJECTS): %.o: busybox.def.h internal.h %.c Makefile
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000182
Eric Andersen624cc772000-09-21 02:04:51 +0000183utility.o:
184
185loop.h:
186 @./mk_loop_h.sh
187
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000188test tests:
189 cd tests && $(MAKE) all
190
Eric Andersencc8ed391999-10-05 16:24:54 +0000191clean:
Eric Andersen7df345e2000-07-21 21:27:11 +0000192 cd tests && $(MAKE) clean
Eric Andersen67536ff2000-07-06 22:53:22 +0000193 - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
194 docs/busybox.lineo.com/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000195 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
196 docs/busybox.pdf docs/busybox.lineo.com/busybox.html
Eric Andersen080d51b2000-08-01 22:44:32 +0000197 - rm -rf docs/busybox _install
198 - rm -f busybox.links *~ *.o core
Eric Andersencc8ed391999-10-05 16:24:54 +0000199
200distclean: clean
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000201 - rm -f busybox
202 - cd tests && $(MAKE) distclean
Eric Andersencc8ed391999-10-05 16:24:54 +0000203
Eric Andersen07274581999-11-21 21:50:07 +0000204install: busybox busybox.links
Eric Andersen80974fa1999-11-13 04:51:47 +0000205 ./install.sh $(PREFIX)
Eric Andersen17d49ef1999-10-06 20:25:32 +0000206
Eric Andersen51154ba2000-07-20 21:57:11 +0000207install-hardlinks: busybox busybox.links
208 ./install.sh $(PREFIX) --hardlinks
209
Erik Andersen0a704e82000-05-03 03:19:06 +0000210dist release: distclean doc
Erik Andersenfac10d72000-02-07 05:29:42 +0000211 cd ..; \
212 rm -rf busybox-$(VERSION); \
213 cp -a busybox busybox-$(VERSION); \
214 \
215 find busybox-$(VERSION)/ -type d \
216 -name CVS \
217 -print \
218 | xargs rm -rf; \
219 \
220 find busybox-$(VERSION)/ -type f \
221 -name .cvsignore \
222 -print \
223 | xargs rm -f; \
224 \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000225 find busybox-$(VERSION)/ -type f \
226 -name .\#* \
227 -print \
228 | xargs rm -f; \
229 \
Erik Andersenfac10d72000-02-07 05:29:42 +0000230 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000231
232.PHONY: tags
233tags:
234 ctags -R .