blob: ca1a726c4a3f86148890c960df9dcf65a844185f [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 Andersen9e6089e2001-08-02 19:31:08 +000021VERSION := 0.60.0
Matt Kraai6ba1a802001-04-12 20:11:55 +000022BUILDTIME := $(shell TZ=UTC date -u "+%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.
Randolph Chung1e1d9d12000-12-07 03:56:10 +000040DODEBUG = false
Eric Andersen21943ce1999-10-13 18:04:51 +000041
Eric Andersenab050f52001-01-27 06:01:43 +000042# 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
Eric Andersenda7f0952001-05-07 17:51:34 +000046# 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. Most people will want to leave this set to false.
Eric Andersenbdc8db92001-03-14 01:49:10 +000052USE_SYSTEM_PWD_GRP = true
Eric Andersenab050f52001-01-27 06:01:43 +000053
Eric Andersen1d255be2000-07-19 17:33:54 +000054# 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...
60DODMALLOC = false
61
Eric Andersen06070532001-04-04 19:32:00 +000062# Electric-fence is another very useful malloc debugging library.
Eric Andersen24073c72001-04-03 22:53:19 +000063# Do not enable this for production builds...
64DOEFENCE = false
65
Eric Andersen8a2e56c2000-09-21 02:23:30 +000066# 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!
73DOLFS = false
74
Eric Andersen20ea5c32000-11-29 22:08:35 +000075# If you have a "pristine" source directory, point BB_SRC_DIR to it.
Eric Andersen09a34e52000-12-01 19:40:18 +000076# Experimental and incomplete; tell the mailing list
77# <busybox@opensource.lineo.com> if you do or don't like it so far.
Eric Andersen19f86202001-02-17 00:42:47 +000078BB_SRC_DIR =
Eric Andersen8a2e56c2000-09-21 02:23:30 +000079
Eric Andersen1d255be2000-07-19 17:33:54 +000080# If you are running a cross compiler, you may want to set this
Eric Andersen20ea5c32000-11-29 22:08:35 +000081# to something more interesting, like "powerpc-linux-".
82CROSS =
Eric Andersen1d255be2000-07-19 17:33:54 +000083CC = $(CROSS)gcc
Eric Andersen5f2c79d2001-02-16 18:36:04 +000084AR = $(CROSS)ar
Eric Andersen1d255be2000-07-19 17:33:54 +000085STRIPTOOL = $(CROSS)strip
86
Eric Andersened3ef502001-01-27 08:24:39 +000087# To compile vs uClibc, just use the compiler wrapper built by uClibc...
Eric Andersenadea7a62001-02-22 23:36:30 +000088# This make things very easy? Everything should compile and work as
89# expected these days...
Eric Andersenb9af8942001-04-10 18:35:02 +000090#CC = ../uClibc/extra/gcc-uClibc/i386-uclibc-gcc
Eric Andersened3ef502001-01-27 08:24:39 +000091
92# To compile vs some other alternative libc, you may need to use/adjust
93# the following lines to meet your needs...
Eric Andersen47cdcdd2001-03-05 17:08:52 +000094#
95# If you are using Red Hat 6.x with the compatible RPMs (for developing under
96# Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about
97# using the compatible RPMs (compat-*) at http://www.redhat.com !
98#LIBCDIR=/usr/i386-glibc20-linux
99#
100# The following is used for libc5 (if you install altgcc and libc5-altdev
101# on a Debian system).
Mark Whitley4f76bb62001-02-27 19:53:48 +0000102#LIBCDIR=/usr/i486-linuxlibc1
Eric Andersen47cdcdd2001-03-05 17:08:52 +0000103#
104# For other libraries, you are on your own...
Eric Andersen28c88a92000-06-20 21:03:24 +0000105#LDFLAGS+=-nostdlib
Mark Whitley4f76bb62001-02-27 19:53:48 +0000106#LIBRARIES = $(LIBCDIR)/lib/libc.a -lgcc
Eric Andersen4d4b3b12000-12-12 23:23:32 +0000107#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
108#GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
Erik Andersen499f65f2000-05-16 20:07:38 +0000109
Erik Andersen3d427ac2000-05-12 19:38:40 +0000110# use '-Os' optimization if available, else use -O2
Eric Andersen19f86202001-02-17 00:42:47 +0000111OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
Erik Andersen3d427ac2000-05-12 19:38:40 +0000112 then echo "-Os"; else echo "-O2" ; fi)
Erik Andersenfac10d72000-02-07 05:29:42 +0000113
Eric Andersen1ca20a72001-03-21 07:34:27 +0000114WARNINGS = -Wall -Wshadow
Pavel Roskin43c17b32000-07-28 19:41:32 +0000115
Eric Andersenb183dfa2001-03-19 19:24:06 +0000116ARFLAGS = -r
117
Eric Andersen19f86202001-02-17 00:42:47 +0000118#
119#--------------------------------------------------------
120# If you're going to do a lot of builds with a non-vanilla configuration,
121# it makes sense to adjust parameters above, so you can type "make"
122# by itself, instead of following it by the same half-dozen overrides
123# every time. The stuff below, on the other hand, is probably less
124# prone to casual user adjustment.
125#
126
Mark Whitley76c5e602001-02-02 01:07:17 +0000127ifeq ($(strip $(DOLFS)),true)
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000128 # For large file summit support
129 CFLAGS+=-D_FILE_OFFSET_BITS=64
130endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000131ifeq ($(strip $(DODMALLOC)),true)
Eric Andersen1d255be2000-07-19 17:33:54 +0000132 # For testing mem leaks with dmalloc
133 CFLAGS+=-DDMALLOC
134 LIBRARIES = -ldmalloc
135 # Force debug=true, since this is useless when not debugging...
136 DODEBUG = true
Eric Andersen24073c72001-04-03 22:53:19 +0000137else
138 ifeq ($(strip $(DOEFENCE)),true)
139 LIBRARIES = -lefence
140 # Force debug=true, since this is useless when not debugging...
141 DODEBUG = true
142 endif
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000143endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000144ifeq ($(strip $(DODEBUG)),true)
Eric Andersen9962cd92000-12-11 16:20:40 +0000145 CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE
146 LDFLAGS += -Wl,-warn-common
147 STRIP =
Eric Andersen17d49ef1999-10-06 20:25:32 +0000148else
Pavel Roskin43c17b32000-07-28 19:41:32 +0000149 CFLAGS += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
Eric Andersen9962cd92000-12-11 16:20:40 +0000150 LDFLAGS += -s -Wl,-warn-common
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000151 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
Eric Andersen2c1faec2000-09-21 22:26:02 +0000152endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000153ifeq ($(strip $(DOSTATIC)),true)
Eric Andersen2c1faec2000-09-21 22:26:02 +0000154 LDFLAGS += --static
155 #
156 #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they
157 # work) to try and strip out any unused junk. Doesn't do much for me,
158 # but you may want to give it a shot...
159 #
160 #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
161 # -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
162 # --gc-sections -v >/dev/null && echo 1),1)
163 # CFLAGS += -ffunction-sections -fdata-sections
164 # LDFLAGS += --gc-sections
165 #endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000166endif
167
Eric Anderseneded54b1999-11-12 08:03:23 +0000168ifndef $(PREFIX)
Erik Andersenfac10d72000-02-07 05:29:42 +0000169 PREFIX = `pwd`/_install
Eric Andersen17d49ef1999-10-06 20:25:32 +0000170endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000171
Eric Andersen09a34e52000-12-01 19:40:18 +0000172# Additional complications due to support for pristine source dir.
Eric Andersen19f86202001-02-17 00:42:47 +0000173# Include files in the build directory should take precedence over
174# the copy in BB_SRC_DIR, both during the compilation phase and the
Eric Andersen09a34e52000-12-01 19:40:18 +0000175# shell script that finds the list of object files.
Eric Andersen09a34e52000-12-01 19:40:18 +0000176# Work in progress by <ldoolitt@recycle.lbl.gov>.
Eric Andersen19f86202001-02-17 00:42:47 +0000177#
178ifneq ($(strip $(BB_SRC_DIR)),)
179 VPATH = $(BB_SRC_DIR)
Eric Andersen09a34e52000-12-01 19:40:18 +0000180endif
Eric Andersen19f86202001-02-17 00:42:47 +0000181#ifneq ($(strip $(VPATH)),)
182# CFLAGS += -I- -I. $(patsubst %,-I%,$(subst :, ,$(VPATH)))
183#endif
Eric Andersen09a34e52000-12-01 19:40:18 +0000184
Eric Andersen19f86202001-02-17 00:42:47 +0000185# We need to set APPLET_SOURCES to something like
186# $(shell busybox.sh Config.h)
187# but in a manner that works with VPATH and BB_SRC_DIR.
188# Possible ways to approach this:
189#
190# 1. Explicitly search through .:$(VPATH) for busybox.sh and config.h,
191# then $(shell $(BUSYBOX_SH) $(CONFIG_H) $(BB_SRC_DIR))
192#
193# 2. Explicity search through .:$(VPATH) for slist.mk,
194# then $(shell $(MAKE) -f $(SLIST_MK) VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR))
195#
196# 3. Create slist.mk in this directory, with commands embedded in
197# a $(shell ...) command, and $(MAKE) it immediately.
198#
199# 4. Use a real rule within this makefile to create a file that sets
200# APPLET_SOURCE_LIST, then include that file. Has complications
201# with the first trip through the makefile (before processing the
202# include) trying to do too much, and a spurious warning the first
203# time make is run.
204#
205# This is option 3:
206#
207#APPLET_SOURCES = $(shell \
208# echo -e 'all: busybox.sh Config.h\n\t@ $$(SHELL) $$^ $$(BB_SRC_DIR)' >slist.mk; \
209# make -f slist.mk VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR) \
210#)
211# And option 4:
212-include applet_source_list
213
Eric Andersen04095e52001-04-25 05:39:18 +0000214OBJECTS = $(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
Eric Andersen93a8e2e2001-01-31 01:38:05 +0000215CFLAGS += $(CROSS_CFLAGS)
Erik Andersenfac10d72000-02-07 05:29:42 +0000216CFLAGS += -DBB_VER='"$(VERSION)"'
217CFLAGS += -DBB_BT='"$(BUILDTIME)"'
Erik Andersend387d011999-12-21 02:55:11 +0000218ifdef BB_INIT_SCRIPT
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000219 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
Erik Andersend387d011999-12-21 02:55:11 +0000220endif
221
Mark Whitley76c5e602001-02-02 01:07:17 +0000222ifneq ($(strip $(USE_SYSTEM_PWD_GRP)),true)
Eric Andersen19f86202001-02-17 00:42:47 +0000223 PWD_GRP = pwd_grp
Eric Andersendd917242001-03-09 20:47:27 +0000224 PWD_GRP_DIR = $(BB_SRC_DIR:=/)$(PWD_GRP)
Eric Andersen19f86202001-02-17 00:42:47 +0000225 PWD_LIB = libpwd.a
Eric Andersen19f86202001-02-17 00:42:47 +0000226 PWD_CSRC=__getpwent.c pwent.c getpwnam.c getpwuid.c putpwent.c getpw.c \
227 fgetpwent.c __getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c \
228 initgroups.c setgroups.c
229 PWD_OBJS=$(patsubst %.c,$(PWD_GRP)/%.o, $(PWD_CSRC))
230 PWD_CFLAGS = -I$(PWD_GRP_DIR)
Eric Andersenab050f52001-01-27 06:01:43 +0000231else
232 CFLAGS += -DUSE_SYSTEM_PWD_GRP
233endif
Eric Andersenaad1a882001-03-16 22:47:14 +0000234
235LIBBB = libbb
Eric Andersenaad1a882001-03-16 22:47:14 +0000236LIBBB_LIB = libbb.a
Glenn L McGratheb1c9402001-06-20 07:48:00 +0000237LIBBB_CSRC= ask_confirmation.c chomp.c concat_path_file.c copy_file.c \
Eric Andersenbe0c3602001-08-02 10:55:32 +0000238copy_file_chunk.c libc5.c device_open.c error_msg.c \
Glenn L McGratheb1c9402001-06-20 07:48:00 +0000239error_msg_and_die.c fgets_str.c find_mount_point.c find_pid_by_name.c \
240find_root_device.c full_read.c full_write.c get_console.c \
241get_last_path_component.c get_line_from_file.c gz_open.c human_readable.c \
242isdirectory.c kernel_version.c loop.c mode_string.c module_syscalls.c mtab.c \
243mtab_file.c my_getgrnam.c my_getgrgid.c my_getpwnam.c my_getpwnamegid.c \
244my_getpwuid.c parse_mode.c parse_number.c perror_msg.c perror_msg_and_die.c \
245print_file.c process_escape_sequence.c read_package_field.c recursive_action.c \
246safe_read.c safe_strncpy.c syscalls.c syslog_msg_with_name.c time_string.c \
Eric Andersen30f1eaf2001-06-22 03:00:21 +0000247trim.c unzip.c vdprintf.c verror_msg.c vperror_msg.c wfopen.c xfuncs.c \
Glenn L McGrath9aff9032001-06-13 07:26:39 +0000248xgetcwd.c xreadlink.c xregcomp.c interface.c remove_file.c last_char_is.c \
Matt Kraaiceeff732001-06-21 19:41:37 +0000249copyfd.c vherror_msg.c herror_msg.c herror_msg_and_die.c xgethostbyname.c \
Eric Andersen34506362001-08-02 05:02:46 +0000250dirname.c make_directory.c create_icmp_socket.c u_signal_names.c arith.c
Eric Andersenaad1a882001-03-16 22:47:14 +0000251LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC))
Eric Andersenc0c502e2001-04-03 16:38:37 +0000252LIBBB_CFLAGS = -I$(LIBBB)
253ifneq ($(strip $(BB_SRC_DIR)),)
254 LIBBB_CFLAGS += -I$(BB_SRC_DIR)/$(LIBBB)
255endif
256
Eric Andersen04095e52001-04-25 05:39:18 +0000257LIBBB_MSRC=libbb/messages.c
258LIBBB_MESSAGES= full_version name_too_long omitting_directory not_a_directory \
259memory_exhausted invalid_date invalid_option io_error dash_dash_help \
Eric Andersen7467c8d2001-07-12 20:26:32 +0000260write_error too_few_args name_longer_than_foo unknown can_not_create_raw_socket
Eric Andersen04095e52001-04-25 05:39:18 +0000261LIBBB_MOBJ=$(patsubst %,$(LIBBB)/%.o, $(LIBBB_MESSAGES))
262
Eric Andersen30f1eaf2001-06-22 03:00:21 +0000263LIBBB_ARCSRC=libbb/unarchive.c
264LIBBB_ARCOBJ= archive_offset seek_sub_file extract_archive unarchive \
265get_header_ar get_header_cpio get_header_tar deb_extract
266LIBBB_AROBJS=$(patsubst %,$(LIBBB)/%.o, $(LIBBB_ARCOBJ))
267
Eric Andersenab050f52001-01-27 06:01:43 +0000268
Eric Andersen0d5a08e2001-01-22 01:05:04 +0000269# Put user-supplied flags at the end, where they
270# have a chance of winning.
271CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen624cc772000-09-21 02:04:51 +0000272
Eric Andersenab050f52001-01-27 06:01:43 +0000273.EXPORT_ALL_VARIABLES:
274
Eric Andersen07e462f2001-04-27 18:36:43 +0000275all: applet_source_list busybox busybox.links doc
Eric Andersen00814662001-04-26 23:29:10 +0000276
Eric Andersend28cb032001-07-06 19:28:49 +0000277applet_source_list: busybox.sh Config.h
Eric Andersen3f99b562001-05-01 01:40:34 +0000278 (echo -n "APPLET_SOURCES := "; BB_SRC_DIR=$(BB_SRC_DIR) $(SHELL) $^) > $@
Erik Andersen0a704e82000-05-03 03:19:06 +0000279
Eric Andersen67536ff2000-07-06 22:53:22 +0000280doc: olddoc
Eric Andersen53310252000-07-04 19:42:23 +0000281
282# Old Docs...
John Beppu94e50542001-04-05 19:42:03 +0000283olddoc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
284
285docs/busybox.pod : docs/busybox_header.pod usage.h docs/busybox_footer.pod
286 - ( cat docs/busybox_header.pod; \
287 docs/autodocifier.pl usage.h; \
288 cat docs/busybox_footer.pod ) > docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000289
Eric Andersen67536ff2000-07-06 22:53:22 +0000290docs/BusyBox.txt: docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000291 @echo
292 @echo BusyBox Documentation
293 @echo
Eric Andersen29be79c2000-12-01 22:57:44 +0000294 -mkdir -p docs
Eric Andersen19f86202001-02-17 00:42:47 +0000295 -pod2text $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000296
Eric Andersen67536ff2000-07-06 22:53:22 +0000297docs/BusyBox.1: docs/busybox.pod
Eric Andersen09a34e52000-12-01 19:40:18 +0000298 - mkdir -p docs
Eric Andersen29be79c2000-12-01 22:57:44 +0000299 - pod2man --center=BusyBox --release="version $(VERSION)" \
Eric Andersen19f86202001-02-17 00:42:47 +0000300 $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000301
Eric Andersen67536ff2000-07-06 22:53:22 +0000302docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
Eric Andersen1cf81662001-02-17 15:55:15 +0000303 - mkdir -p docs
Eric Andersene2f6e122000-12-01 19:55:04 +0000304 -@ rm -f docs/BusyBox.html
Eric Andersenb8b8d812000-12-01 20:26:30 +0000305 -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000306
Eric Andersen67536ff2000-07-06 22:53:22 +0000307docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
Eric Andersene2f6e122000-12-01 19:55:04 +0000308 -@ mkdir -p docs/busybox.lineo.com
Eric Andersen19f86202001-02-17 00:42:47 +0000309 - pod2html --noindex $< > \
Eric Andersen29be79c2000-12-01 22:57:44 +0000310 docs/busybox.lineo.com/BusyBox.html
Eric Andersen36763742001-04-24 21:46:07 +0000311 -@ rm -f pod2htm*
Erik Andersen0a704e82000-05-03 03:19:06 +0000312
Eric Andersen67536ff2000-07-06 22:53:22 +0000313
314# New docs based on DOCBOOK SGML
Eric Andersen488aac22000-09-24 02:42:48 +0000315newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
Eric Andersen67536ff2000-07-06 22:53:22 +0000316
317docs/busybox.txt: docs/busybox.sgml
318 @echo
319 @echo BusyBox Documentation
320 @echo
Eric Andersen09a34e52000-12-01 19:40:18 +0000321 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000322 (cd docs; sgmltools -b txt busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000323
324docs/busybox.dvi: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000325 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000326 (cd docs; sgmltools -b dvi busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000327
Eric Andersena2c83d82000-07-07 20:52:56 +0000328docs/busybox.ps: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000329 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000330 (cd docs; sgmltools -b ps busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000331
Eric Andersena2c83d82000-07-07 20:52:56 +0000332docs/busybox.pdf: docs/busybox.ps
Eric Andersen09a34e52000-12-01 19:40:18 +0000333 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000334 (cd docs; ps2pdf busybox.ps)
Eric Andersen67536ff2000-07-06 22:53:22 +0000335
Eric Andersen488aac22000-09-24 02:42:48 +0000336docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000337 - mkdir -p docs
Eric Andersen67536ff2000-07-06 22:53:22 +0000338 (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
339
340
Eric Andersenaad1a882001-03-16 22:47:14 +0000341busybox: $(PWD_LIB) $(LIBBB_LIB) $(OBJECTS)
Matt Kraai8a24a652001-04-23 16:11:57 +0000342 $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBBB_LIB) $(PWD_LIB) $(LIBRARIES)
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000343 $(STRIP)
Erik Andersen1d1d9502000-04-21 01:26:49 +0000344
Eric Andersen19f86202001-02-17 00:42:47 +0000345# Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h"
346# but with VPATH, some or all of those file names are resolved to the
347# directories in which they live.
348busybox.links: busybox.mkll Config.h applets.h
349 - $(SHELL) $^ >$@
Eric Andersen1667fb41999-11-27 20:34:28 +0000350
Mark Whitleycc54d122000-07-10 23:07:54 +0000351nfsmount.o cmdedit.o: %.o: %.h
Matt Kraai2d91deb2001-08-01 17:21:35 +0000352ash.o hush.o lash.o msh.o: cmdedit.h
Matt Kraai8392acd2001-01-18 03:03:09 +0000353$(OBJECTS): %.o: %.c Config.h busybox.h applets.h Makefile
Eric Andersen8d79ce82001-07-22 23:00:15 +0000354 $(CC) $(CFLAGS) -I. $(patsubst %,-I%,$(subst :, ,$(BB_SRC_DIR))) -c $< -o $*.o
Eric Andersen19f86202001-02-17 00:42:47 +0000355
Eric Andersen1cf81662001-02-17 15:55:15 +0000356$(PWD_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile
357 - mkdir -p $(PWD_GRP)
Eric Andersen19f86202001-02-17 00:42:47 +0000358 $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o
359
Eric Andersenc75586e2001-03-19 18:37:42 +0000360$(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile libbb/libbb.h
Eric Andersenaad1a882001-03-16 22:47:14 +0000361 - mkdir -p $(LIBBB)
362 $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -c $< -o $*.o
363
Eric Andersen04095e52001-04-25 05:39:18 +0000364$(LIBBB_MOBJ): $(LIBBB_MSRC)
Mark Whitleye5598782001-04-25 23:49:43 +0000365 - mkdir -p $(LIBBB)
Eric Andersen04095e52001-04-25 05:39:18 +0000366 $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -DL_$(patsubst libbb/%,%,$*) -c $< -o $*.o
367
Eric Andersen7467c8d2001-07-12 20:26:32 +0000368$(LIBBB_AROBJS): $(LIBBB_ARCSRC)
Eric Andersen30f1eaf2001-06-22 03:00:21 +0000369 - mkdir -p $(LIBBB)
Glenn L McGrath654944f2001-07-10 14:33:22 +0000370 $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -DL_$(patsubst libbb/%,%,$*) -c $< -o $*.o
Eric Andersen30f1eaf2001-06-22 03:00:21 +0000371
Eric Andersenc27b9542001-03-05 17:57:34 +0000372libpwd.a: $(PWD_OBJS)
373 $(AR) $(ARFLAGS) $@ $^
Eric Andersen19f86202001-02-17 00:42:47 +0000374
Eric Andersen30f1eaf2001-06-22 03:00:21 +0000375libbb.a: $(LIBBB_MOBJ) $(LIBBB_AROBJS) $(LIBBB_OBJS)
Eric Andersenaad1a882001-03-16 22:47:14 +0000376 $(AR) $(ARFLAGS) $@ $^
377
Eric Andersen83050062001-02-14 21:52:18 +0000378usage.o: usage.h
379
Eric Andersenaad1a882001-03-16 22:47:14 +0000380libbb/loop.o: libbb/loop.h
Eric Andersen624cc772000-09-21 02:04:51 +0000381
Eric Andersenaad1a882001-03-16 22:47:14 +0000382libbb/loop.h: mk_loop_h.sh
Eric Andersen19f86202001-02-17 00:42:47 +0000383 @ $(SHELL) $< > $@
Eric Andersen624cc772000-09-21 02:04:51 +0000384
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000385test tests:
Mark Whitleyd2117e92001-03-10 00:51:29 +0000386 # old way of doing it
387 #cd tests && $(MAKE) all
388 # new way of doing it
389 cd tests && ./tester.sh
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000390
Eric Andersencc8ed391999-10-05 16:24:54 +0000391clean:
Eric Andersen20ea5c32000-11-29 22:08:35 +0000392 - cd tests && $(MAKE) clean
Eric Andersen67536ff2000-07-06 22:53:22 +0000393 - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
394 docs/busybox.lineo.com/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000395 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
396 docs/busybox.pdf docs/busybox.lineo.com/busybox.html
Eric Andersen20aab262001-07-19 22:28:02 +0000397 - rm -f multibuild.log Config.h.orig *.gdb *.elf
Eric Andersen36763742001-04-24 21:46:07 +0000398 - rm -rf docs/busybox _install libpwd.a libbb.a pod2htm*
Eric Andersenaad1a882001-03-16 22:47:14 +0000399 - rm -f busybox.links libbb/loop.h *~ slist.mk core applet_source_list
Eric Andersena183f052001-02-20 06:22:54 +0000400 - find -name \*.o -exec rm -f {} \;
Eric Andersencc8ed391999-10-05 16:24:54 +0000401
402distclean: clean
Eric Andersenf12cc4e2001-05-30 19:09:40 +0000403 - rm -f busybox applet_source_list
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000404 - cd tests && $(MAKE) distclean
Eric Andersencc8ed391999-10-05 16:24:54 +0000405
Eric Andersen19f86202001-02-17 00:42:47 +0000406install: install.sh busybox busybox.links
407 $(SHELL) $< $(PREFIX)
Eric Andersen17d49ef1999-10-06 20:25:32 +0000408
Eric Andersen19f86202001-02-17 00:42:47 +0000409install-hardlinks: install.sh busybox busybox.links
410 $(SHELL) $< $(PREFIX) --hardlinks
Eric Andersen51154ba2000-07-20 21:57:11 +0000411
Eric Andersen09a34e52000-12-01 19:40:18 +0000412debug_pristine:
413 @ echo VPATH=\"$(VPATH)\"
Eric Andersen09a34e52000-12-01 19:40:18 +0000414 @ echo OBJECTS=\"$(OBJECTS)\"
415
Erik Andersen0a704e82000-05-03 03:19:06 +0000416dist release: distclean doc
Erik Andersenfac10d72000-02-07 05:29:42 +0000417 cd ..; \
418 rm -rf busybox-$(VERSION); \
419 cp -a busybox busybox-$(VERSION); \
420 \
421 find busybox-$(VERSION)/ -type d \
422 -name CVS \
423 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000424 -exec rm -rf {} \; ; \
Erik Andersenfac10d72000-02-07 05:29:42 +0000425 \
426 find busybox-$(VERSION)/ -type f \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000427 -name .\#* \
428 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000429 -exec rm -f {} \; ; \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000430 \
Erik Andersenfac10d72000-02-07 05:29:42 +0000431 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000432
Eric Andersendefa4f92001-04-30 17:52:36 +0000433.PHONY: tags
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000434tags:
435 ctags -R .