blob: 2a796596e73b818c0df43586b9a9c3677a92574d [file] [log] [blame]
Eric Andersenc4996011999-10-20 22:08:37 +00001# Makefile for busybox
2#
Eric Andersen8ec10a92001-01-27 09:33:39 +00003# Copyright (C) 1999,2000,2001 Erik Andersen <andersee@debian.org>
Erik Andersen9ffdaa62000-02-11 21:55:04 +00004#
Eric Andersenc4996011999-10-20 22:08:37 +00005# 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
Erik Andersen7c4b2f32000-02-29 21:49:22 +000020PROG := busybox
Eric Andersen36eff9a2001-03-24 06:34:59 +000021VERSION := 0.51pre
Erik Andersen1ad302a2000-03-24 00:54:46 +000022BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z")
John Beppucbd66282000-04-13 22:57:45 +000023export VERSION
Eric Andersencc8ed391999-10-05 16:24:54 +000024
Eric Andersen20ea5c32000-11-29 22:08:35 +000025# 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
Eric Andersen0d5a08e2001-01-22 01:05:04 +000030# 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.
33CFLAGS_EXTRA =
34
Eric Andersen51154ba2000-07-20 21:57:11 +000035# If you want a static binary, turn this on.
36DOSTATIC = false
37
Erik Andersenfac10d72000-02-07 05:29:42 +000038# Set the following to `true' to make a debuggable build.
39# Leave this set to `false' for production use.
Erik Andersen9ffdaa62000-02-11 21:55:04 +000040# eg: `make DODEBUG=true tests'
Eric Andersen1d255be2000-07-19 17:33:54 +000041# Do not enable this for production builds...
Randolph Chung1e1d9d12000-12-07 03:56:10 +000042DODEBUG = false
Eric Andersen21943ce1999-10-13 18:04:51 +000043
Eric Andersenab050f52001-01-27 06:01:43 +000044# 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
49# use the /etc/password, /etc/group files (and your system will be smaller, and
50# I 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# Most people will want to leave this set to false.
Eric Andersenbdc8db92001-03-14 01:49:10 +000053USE_SYSTEM_PWD_GRP = true
Eric Andersenab050f52001-01-27 06:01:43 +000054
Eric Andersen1d255be2000-07-19 17:33:54 +000055# This enables compiling with dmalloc ( http://dmalloc.com/ )
56# which is an excellent public domain mem leak and malloc problem
57# detector. To enable dmalloc, before running busybox you will
58# want to first set up your environment.
59# eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
60# Do not enable this for production builds...
61DODMALLOC = false
62
Eric Andersen06070532001-04-04 19:32:00 +000063# Electric-fence is another very useful malloc debugging library.
Eric Andersen24073c72001-04-03 22:53:19 +000064# Do not enable this for production builds...
65DOEFENCE = false
66
Eric Andersen8a2e56c2000-09-21 02:23:30 +000067# If you want large file summit support, turn this on.
68# This has no effect if you don't have a kernel with lfs
69# support, and a system with libc-2.1.3 or later.
70# Some of the programs that can benefit from lfs support
71# are dd, gzip, mount, tar, and mkfs_minix.
72# LFS allows you to use the above programs for files
73# larger than 2GB!
74DOLFS = false
75
Eric Andersen20ea5c32000-11-29 22:08:35 +000076# If you have a "pristine" source directory, point BB_SRC_DIR to it.
Eric Andersen09a34e52000-12-01 19:40:18 +000077# Experimental and incomplete; tell the mailing list
78# <busybox@opensource.lineo.com> if you do or don't like it so far.
Eric Andersen19f86202001-02-17 00:42:47 +000079BB_SRC_DIR =
Eric Andersen8a2e56c2000-09-21 02:23:30 +000080
Eric Andersen1d255be2000-07-19 17:33:54 +000081# If you are running a cross compiler, you may want to set this
Eric Andersen20ea5c32000-11-29 22:08:35 +000082# to something more interesting, like "powerpc-linux-".
83CROSS =
Eric Andersen1d255be2000-07-19 17:33:54 +000084CC = $(CROSS)gcc
Eric Andersen5f2c79d2001-02-16 18:36:04 +000085AR = $(CROSS)ar
Eric Andersen1d255be2000-07-19 17:33:54 +000086STRIPTOOL = $(CROSS)strip
87
Eric Andersened3ef502001-01-27 08:24:39 +000088# To compile vs uClibc, just use the compiler wrapper built by uClibc...
Eric Andersenadea7a62001-02-22 23:36:30 +000089# This make things very easy? Everything should compile and work as
90# expected these days...
Eric Andersened3ef502001-01-27 08:24:39 +000091#CC = ../uClibc/extra/gcc-uClibc/gcc-uClibc-i386
92
93# To compile vs some other alternative libc, you may need to use/adjust
94# the following lines to meet your needs...
Eric Andersen47cdcdd2001-03-05 17:08:52 +000095#
96# If you are using Red Hat 6.x with the compatible RPMs (for developing under
97# Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about
98# using the compatible RPMs (compat-*) at http://www.redhat.com !
99#LIBCDIR=/usr/i386-glibc20-linux
100#
101# The following is used for libc5 (if you install altgcc and libc5-altdev
102# on a Debian system).
Mark Whitley4f76bb62001-02-27 19:53:48 +0000103#LIBCDIR=/usr/i486-linuxlibc1
Eric Andersen47cdcdd2001-03-05 17:08:52 +0000104#
105# For other libraries, you are on your own...
Eric Andersen28c88a92000-06-20 21:03:24 +0000106#LDFLAGS+=-nostdlib
Mark Whitley4f76bb62001-02-27 19:53:48 +0000107#LIBRARIES = $(LIBCDIR)/lib/libc.a -lgcc
Eric Andersen4d4b3b12000-12-12 23:23:32 +0000108#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
109#GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
Erik Andersen499f65f2000-05-16 20:07:38 +0000110
Erik Andersen3d427ac2000-05-12 19:38:40 +0000111# use '-Os' optimization if available, else use -O2
Eric Andersen19f86202001-02-17 00:42:47 +0000112OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
Erik Andersen3d427ac2000-05-12 19:38:40 +0000113 then echo "-Os"; else echo "-O2" ; fi)
Erik Andersenfac10d72000-02-07 05:29:42 +0000114
Eric Andersen1ca20a72001-03-21 07:34:27 +0000115WARNINGS = -Wall -Wshadow
Pavel Roskin43c17b32000-07-28 19:41:32 +0000116
Eric Andersenb183dfa2001-03-19 19:24:06 +0000117ARFLAGS = -r
118
Eric Andersen19f86202001-02-17 00:42:47 +0000119#
120#--------------------------------------------------------
121# If you're going to do a lot of builds with a non-vanilla configuration,
122# it makes sense to adjust parameters above, so you can type "make"
123# by itself, instead of following it by the same half-dozen overrides
124# every time. The stuff below, on the other hand, is probably less
125# prone to casual user adjustment.
126#
127
Mark Whitley76c5e602001-02-02 01:07:17 +0000128ifeq ($(strip $(DOLFS)),true)
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000129 # For large file summit support
130 CFLAGS+=-D_FILE_OFFSET_BITS=64
131endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000132ifeq ($(strip $(DODMALLOC)),true)
Eric Andersen1d255be2000-07-19 17:33:54 +0000133 # For testing mem leaks with dmalloc
134 CFLAGS+=-DDMALLOC
135 LIBRARIES = -ldmalloc
136 # Force debug=true, since this is useless when not debugging...
137 DODEBUG = true
Eric Andersen24073c72001-04-03 22:53:19 +0000138else
139 ifeq ($(strip $(DOEFENCE)),true)
140 LIBRARIES = -lefence
141 # Force debug=true, since this is useless when not debugging...
142 DODEBUG = true
143 endif
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000144endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000145ifeq ($(strip $(DODEBUG)),true)
Eric Andersen9962cd92000-12-11 16:20:40 +0000146 CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE
147 LDFLAGS += -Wl,-warn-common
148 STRIP =
Eric Andersen17d49ef1999-10-06 20:25:32 +0000149else
Pavel Roskin43c17b32000-07-28 19:41:32 +0000150 CFLAGS += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
Eric Andersen9962cd92000-12-11 16:20:40 +0000151 LDFLAGS += -s -Wl,-warn-common
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000152 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
Eric Andersen2c1faec2000-09-21 22:26:02 +0000153endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000154ifeq ($(strip $(DOSTATIC)),true)
Eric Andersen2c1faec2000-09-21 22:26:02 +0000155 LDFLAGS += --static
156 #
157 #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they
158 # work) to try and strip out any unused junk. Doesn't do much for me,
159 # but you may want to give it a shot...
160 #
161 #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
162 # -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
163 # --gc-sections -v >/dev/null && echo 1),1)
164 # CFLAGS += -ffunction-sections -fdata-sections
165 # LDFLAGS += --gc-sections
166 #endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000167endif
168
Eric Anderseneded54b1999-11-12 08:03:23 +0000169ifndef $(PREFIX)
Erik Andersenfac10d72000-02-07 05:29:42 +0000170 PREFIX = `pwd`/_install
Eric Andersen17d49ef1999-10-06 20:25:32 +0000171endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000172
Eric Andersen09a34e52000-12-01 19:40:18 +0000173# Additional complications due to support for pristine source dir.
Eric Andersen19f86202001-02-17 00:42:47 +0000174# Include files in the build directory should take precedence over
175# the copy in BB_SRC_DIR, both during the compilation phase and the
Eric Andersen09a34e52000-12-01 19:40:18 +0000176# shell script that finds the list of object files.
Eric Andersen09a34e52000-12-01 19:40:18 +0000177# Work in progress by <ldoolitt@recycle.lbl.gov>.
Eric Andersen19f86202001-02-17 00:42:47 +0000178#
179ifneq ($(strip $(BB_SRC_DIR)),)
180 VPATH = $(BB_SRC_DIR)
Eric Andersen09a34e52000-12-01 19:40:18 +0000181endif
Eric Andersen19f86202001-02-17 00:42:47 +0000182#ifneq ($(strip $(VPATH)),)
183# CFLAGS += -I- -I. $(patsubst %,-I%,$(subst :, ,$(VPATH)))
184#endif
Eric Andersen09a34e52000-12-01 19:40:18 +0000185
Eric Andersen19f86202001-02-17 00:42:47 +0000186# We need to set APPLET_SOURCES to something like
187# $(shell busybox.sh Config.h)
188# but in a manner that works with VPATH and BB_SRC_DIR.
189# Possible ways to approach this:
190#
191# 1. Explicitly search through .:$(VPATH) for busybox.sh and config.h,
192# then $(shell $(BUSYBOX_SH) $(CONFIG_H) $(BB_SRC_DIR))
193#
194# 2. Explicity search through .:$(VPATH) for slist.mk,
195# then $(shell $(MAKE) -f $(SLIST_MK) VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR))
196#
197# 3. Create slist.mk in this directory, with commands embedded in
198# a $(shell ...) command, and $(MAKE) it immediately.
199#
200# 4. Use a real rule within this makefile to create a file that sets
201# APPLET_SOURCE_LIST, then include that file. Has complications
202# with the first trip through the makefile (before processing the
203# include) trying to do too much, and a spurious warning the first
204# time make is run.
205#
206# This is option 3:
207#
208#APPLET_SOURCES = $(shell \
209# echo -e 'all: busybox.sh Config.h\n\t@ $$(SHELL) $$^ $$(BB_SRC_DIR)' >slist.mk; \
210# make -f slist.mk VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR) \
211#)
212# And option 4:
213-include applet_source_list
214
Eric Andersenc4cef5a2001-04-01 16:01:11 +0000215OBJECTS = $(APPLET_SOURCES:.c=.o) busybox.o messages.o usage.o applets.o
Eric Andersen93a8e2e2001-01-31 01:38:05 +0000216CFLAGS += $(CROSS_CFLAGS)
Erik Andersenfac10d72000-02-07 05:29:42 +0000217CFLAGS += -DBB_VER='"$(VERSION)"'
218CFLAGS += -DBB_BT='"$(BUILDTIME)"'
Erik Andersend387d011999-12-21 02:55:11 +0000219ifdef BB_INIT_SCRIPT
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000220 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
Erik Andersend387d011999-12-21 02:55:11 +0000221endif
222
Mark Whitley76c5e602001-02-02 01:07:17 +0000223ifneq ($(strip $(USE_SYSTEM_PWD_GRP)),true)
Eric Andersen19f86202001-02-17 00:42:47 +0000224 PWD_GRP = pwd_grp
Eric Andersendd917242001-03-09 20:47:27 +0000225 PWD_GRP_DIR = $(BB_SRC_DIR:=/)$(PWD_GRP)
Eric Andersen19f86202001-02-17 00:42:47 +0000226 PWD_LIB = libpwd.a
Eric Andersen19f86202001-02-17 00:42:47 +0000227 PWD_CSRC=__getpwent.c pwent.c getpwnam.c getpwuid.c putpwent.c getpw.c \
228 fgetpwent.c __getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c \
229 initgroups.c setgroups.c
230 PWD_OBJS=$(patsubst %.c,$(PWD_GRP)/%.o, $(PWD_CSRC))
231 PWD_CFLAGS = -I$(PWD_GRP_DIR)
Eric Andersenab050f52001-01-27 06:01:43 +0000232else
233 CFLAGS += -DUSE_SYSTEM_PWD_GRP
234endif
Eric Andersenaad1a882001-03-16 22:47:14 +0000235
236LIBBB = libbb
Eric Andersenaad1a882001-03-16 22:47:14 +0000237LIBBB_LIB = libbb.a
238LIBBB_CSRC= ask_confirmation.c check_wildcard_match.c chomp.c copy_file.c \
Eric Andersenb2e3e9b2001-04-04 19:25:57 +0000239copy_file_chunk.c create_path.c daemon.c device_open.c error_msg.c \
Eric Andersenaad1a882001-03-16 22:47:14 +0000240find_mount_point.c find_pid_by_name.c find_root_device.c full_read.c \
241full_write.c get_console.c get_last_path_component.c get_line_from_file.c \
242human_readable.c inode_hash.c isdirectory.c kernel_version.c loop.c \
243mode_string.c parse_mode.c parse_number.c print_file.c process_escape_sequence.c \
Eric Andersenc75586e2001-03-19 18:37:42 +0000244my_getgrgid.c my_getpwnamegid.c my_getpwuid.c my_getgrnam.c my_getpwnam.c \
Eric Andersena2a978a2001-04-05 06:08:14 +0000245recursive_action.c safe_read.c safe_strncpy.c syscalls.c module_syscalls.c \
Eric Andersenaad1a882001-03-16 22:47:14 +0000246syslog_msg_with_name.c time_string.c trim.c vdprintf.c wfopen.c xfuncs.c \
Eric Andersenb183dfa2001-03-19 19:24:06 +0000247xregcomp.c error_msg_and_die.c perror_msg.c perror_msg_and_die.c \
Eric Andersenc4cef5a2001-04-01 16:01:11 +0000248verror_msg.c vperror_msg.c mtab.c mtab_file.c
Eric Andersenaad1a882001-03-16 22:47:14 +0000249LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC))
Eric Andersenc0c502e2001-04-03 16:38:37 +0000250LIBBB_CFLAGS = -I$(LIBBB)
251ifneq ($(strip $(BB_SRC_DIR)),)
252 LIBBB_CFLAGS += -I$(BB_SRC_DIR)/$(LIBBB)
253endif
254
Eric Andersenab050f52001-01-27 06:01:43 +0000255
Eric Andersen0d5a08e2001-01-22 01:05:04 +0000256# Put user-supplied flags at the end, where they
257# have a chance of winning.
258CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen624cc772000-09-21 02:04:51 +0000259
Eric Andersenab050f52001-01-27 06:01:43 +0000260.EXPORT_ALL_VARIABLES:
261
Eric Andersen19f86202001-02-17 00:42:47 +0000262all: applet_source_list busybox busybox.links doc
263
264applet_source_list: busybox.sh Config.h
265 (echo -n "APPLET_SOURCES := "; $(SHELL) $^ $(BB_SRC_DIR)) > $@
Erik Andersen0a704e82000-05-03 03:19:06 +0000266
Eric Andersen67536ff2000-07-06 22:53:22 +0000267doc: olddoc
Eric Andersen53310252000-07-04 19:42:23 +0000268
269# Old Docs...
John Beppu94e50542001-04-05 19:42:03 +0000270olddoc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
271
272docs/busybox.pod : docs/busybox_header.pod usage.h docs/busybox_footer.pod
273 - ( cat docs/busybox_header.pod; \
274 docs/autodocifier.pl usage.h; \
275 cat docs/busybox_footer.pod ) > docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000276
Eric Andersen67536ff2000-07-06 22:53:22 +0000277docs/BusyBox.txt: docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000278 @echo
279 @echo BusyBox Documentation
280 @echo
Eric Andersen29be79c2000-12-01 22:57:44 +0000281 -mkdir -p docs
Eric Andersen19f86202001-02-17 00:42:47 +0000282 -pod2text $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000283
Eric Andersen67536ff2000-07-06 22:53:22 +0000284docs/BusyBox.1: docs/busybox.pod
Eric Andersen09a34e52000-12-01 19:40:18 +0000285 - mkdir -p docs
Eric Andersen29be79c2000-12-01 22:57:44 +0000286 - pod2man --center=BusyBox --release="version $(VERSION)" \
Eric Andersen19f86202001-02-17 00:42:47 +0000287 $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000288
Eric Andersen67536ff2000-07-06 22:53:22 +0000289docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
Eric Andersen1cf81662001-02-17 15:55:15 +0000290 - mkdir -p docs
Eric Andersene2f6e122000-12-01 19:55:04 +0000291 -@ rm -f docs/BusyBox.html
Eric Andersenb8b8d812000-12-01 20:26:30 +0000292 -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000293
Eric Andersen67536ff2000-07-06 22:53:22 +0000294docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
Eric Andersene2f6e122000-12-01 19:55:04 +0000295 -@ mkdir -p docs/busybox.lineo.com
Eric Andersen19f86202001-02-17 00:42:47 +0000296 - pod2html --noindex $< > \
Eric Andersen29be79c2000-12-01 22:57:44 +0000297 docs/busybox.lineo.com/BusyBox.html
Eric Andersene2f6e122000-12-01 19:55:04 +0000298 -@ rm -f pod2html*
Erik Andersen0a704e82000-05-03 03:19:06 +0000299
Eric Andersen67536ff2000-07-06 22:53:22 +0000300
301# New docs based on DOCBOOK SGML
Eric Andersen488aac22000-09-24 02:42:48 +0000302newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
Eric Andersen67536ff2000-07-06 22:53:22 +0000303
304docs/busybox.txt: docs/busybox.sgml
305 @echo
306 @echo BusyBox Documentation
307 @echo
Eric Andersen09a34e52000-12-01 19:40:18 +0000308 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000309 (cd docs; sgmltools -b txt busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000310
311docs/busybox.dvi: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000312 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000313 (cd docs; sgmltools -b dvi busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000314
Eric Andersena2c83d82000-07-07 20:52:56 +0000315docs/busybox.ps: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000316 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000317 (cd docs; sgmltools -b ps busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000318
Eric Andersena2c83d82000-07-07 20:52:56 +0000319docs/busybox.pdf: docs/busybox.ps
Eric Andersen09a34e52000-12-01 19:40:18 +0000320 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000321 (cd docs; ps2pdf busybox.ps)
Eric Andersen67536ff2000-07-06 22:53:22 +0000322
Eric Andersen488aac22000-09-24 02:42:48 +0000323docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000324 - mkdir -p docs
Eric Andersen67536ff2000-07-06 22:53:22 +0000325 (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
326
327
Eric Andersenaad1a882001-03-16 22:47:14 +0000328busybox: $(PWD_LIB) $(LIBBB_LIB) $(OBJECTS)
Mark Whitley2b549c32001-03-27 18:22:41 +0000329 $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(PWD_LIB) $(LIBBB_LIB) $(LIBRARIES)
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000330 $(STRIP)
Erik Andersen1d1d9502000-04-21 01:26:49 +0000331
Eric Andersen19f86202001-02-17 00:42:47 +0000332# Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h"
333# but with VPATH, some or all of those file names are resolved to the
334# directories in which they live.
335busybox.links: busybox.mkll Config.h applets.h
336 - $(SHELL) $^ >$@
Eric Andersen1667fb41999-11-27 20:34:28 +0000337
Mark Whitleycc54d122000-07-10 23:07:54 +0000338nfsmount.o cmdedit.o: %.o: %.h
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000339sh.o: cmdedit.h
Matt Kraai8392acd2001-01-18 03:03:09 +0000340$(OBJECTS): %.o: %.c Config.h busybox.h applets.h Makefile
Mark Whitley4f76bb62001-02-27 19:53:48 +0000341 $(CC) -I- $(CFLAGS) -I. $(patsubst %,-I%,$(subst :, ,$(BB_SRC_DIR))) -c $< -o $*.o
Eric Andersen19f86202001-02-17 00:42:47 +0000342
Eric Andersen1cf81662001-02-17 15:55:15 +0000343$(PWD_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile
344 - mkdir -p $(PWD_GRP)
Eric Andersen19f86202001-02-17 00:42:47 +0000345 $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o
346
Eric Andersenc75586e2001-03-19 18:37:42 +0000347$(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile libbb/libbb.h
Eric Andersenaad1a882001-03-16 22:47:14 +0000348 - mkdir -p $(LIBBB)
349 $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -c $< -o $*.o
350
Eric Andersenc27b9542001-03-05 17:57:34 +0000351libpwd.a: $(PWD_OBJS)
352 $(AR) $(ARFLAGS) $@ $^
Eric Andersen19f86202001-02-17 00:42:47 +0000353
Eric Andersenaad1a882001-03-16 22:47:14 +0000354libbb.a: $(LIBBB_OBJS)
355 $(AR) $(ARFLAGS) $@ $^
356
Eric Andersen83050062001-02-14 21:52:18 +0000357usage.o: usage.h
358
Eric Andersenaad1a882001-03-16 22:47:14 +0000359libbb/loop.o: libbb/loop.h
Eric Andersen624cc772000-09-21 02:04:51 +0000360
Eric Andersenaad1a882001-03-16 22:47:14 +0000361libbb/loop.h: mk_loop_h.sh
Eric Andersen19f86202001-02-17 00:42:47 +0000362 @ $(SHELL) $< > $@
Eric Andersen624cc772000-09-21 02:04:51 +0000363
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000364test tests:
Mark Whitleyd2117e92001-03-10 00:51:29 +0000365 # old way of doing it
366 #cd tests && $(MAKE) all
367 # new way of doing it
368 cd tests && ./tester.sh
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000369
Eric Andersencc8ed391999-10-05 16:24:54 +0000370clean:
Eric Andersen20ea5c32000-11-29 22:08:35 +0000371 - cd tests && $(MAKE) clean
Eric Andersen67536ff2000-07-06 22:53:22 +0000372 - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
373 docs/busybox.lineo.com/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000374 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
375 docs/busybox.pdf docs/busybox.lineo.com/busybox.html
Eric Andersenaf4ac772001-02-01 22:43:49 +0000376 - rm -f multibuild.log Config.h.orig
Eric Andersenaad1a882001-03-16 22:47:14 +0000377 - rm -rf docs/busybox _install libpwd.a libbb.a
378 - rm -f busybox.links libbb/loop.h *~ slist.mk core applet_source_list
Eric Andersena183f052001-02-20 06:22:54 +0000379 - find -name \*.o -exec rm -f {} \;
Eric Andersencc8ed391999-10-05 16:24:54 +0000380
381distclean: clean
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000382 - rm -f busybox
383 - cd tests && $(MAKE) distclean
Eric Andersencc8ed391999-10-05 16:24:54 +0000384
Eric Andersen19f86202001-02-17 00:42:47 +0000385install: install.sh busybox busybox.links
386 $(SHELL) $< $(PREFIX)
Eric Andersen17d49ef1999-10-06 20:25:32 +0000387
Eric Andersen19f86202001-02-17 00:42:47 +0000388install-hardlinks: install.sh busybox busybox.links
389 $(SHELL) $< $(PREFIX) --hardlinks
Eric Andersen51154ba2000-07-20 21:57:11 +0000390
Eric Andersen09a34e52000-12-01 19:40:18 +0000391debug_pristine:
392 @ echo VPATH=\"$(VPATH)\"
Eric Andersen09a34e52000-12-01 19:40:18 +0000393 @ echo OBJECTS=\"$(OBJECTS)\"
394
Erik Andersen0a704e82000-05-03 03:19:06 +0000395dist release: distclean doc
Erik Andersenfac10d72000-02-07 05:29:42 +0000396 cd ..; \
397 rm -rf busybox-$(VERSION); \
398 cp -a busybox busybox-$(VERSION); \
399 \
400 find busybox-$(VERSION)/ -type d \
401 -name CVS \
402 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000403 -exec rm -rf {} \; ; \
Erik Andersenfac10d72000-02-07 05:29:42 +0000404 \
405 find busybox-$(VERSION)/ -type f \
406 -name .cvsignore \
407 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000408 -exec rm -f {} \; ; \
Erik Andersenfac10d72000-02-07 05:29:42 +0000409 \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000410 find busybox-$(VERSION)/ -type f \
411 -name .\#* \
412 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000413 -exec rm -f {} \; ; \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000414 \
Erik Andersenfac10d72000-02-07 05:29:42 +0000415 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000416
417.PHONY: tags
418tags:
419 ctags -R .