blob: 16da9fd4741892314950b1aa4e60f1d7a9abadda [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 Andersend283e1c2001-05-09 17:31:27 +000021VERSION := 0.52pre
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.
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
Eric Andersenda7f0952001-05-07 17:51:34 +000048# 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.
Eric Andersenbdc8db92001-03-14 01:49:10 +000054USE_SYSTEM_PWD_GRP = true
Eric Andersenab050f52001-01-27 06:01:43 +000055
Eric Andersen1d255be2000-07-19 17:33:54 +000056# 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...
62DODMALLOC = false
63
Eric Andersen06070532001-04-04 19:32:00 +000064# Electric-fence is another very useful malloc debugging library.
Eric Andersen24073c72001-04-03 22:53:19 +000065# Do not enable this for production builds...
66DOEFENCE = false
67
Eric Andersen8a2e56c2000-09-21 02:23:30 +000068# 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!
75DOLFS = false
76
Eric Andersen20ea5c32000-11-29 22:08:35 +000077# If you have a "pristine" source directory, point BB_SRC_DIR to it.
Eric Andersen09a34e52000-12-01 19:40:18 +000078# Experimental and incomplete; tell the mailing list
79# <busybox@opensource.lineo.com> if you do or don't like it so far.
Eric Andersen19f86202001-02-17 00:42:47 +000080BB_SRC_DIR =
Eric Andersen8a2e56c2000-09-21 02:23:30 +000081
Eric Andersen1d255be2000-07-19 17:33:54 +000082# If you are running a cross compiler, you may want to set this
Eric Andersen20ea5c32000-11-29 22:08:35 +000083# to something more interesting, like "powerpc-linux-".
84CROSS =
Eric Andersen1d255be2000-07-19 17:33:54 +000085CC = $(CROSS)gcc
Eric Andersen5f2c79d2001-02-16 18:36:04 +000086AR = $(CROSS)ar
Eric Andersen1d255be2000-07-19 17:33:54 +000087STRIPTOOL = $(CROSS)strip
88
Eric Andersened3ef502001-01-27 08:24:39 +000089# To compile vs uClibc, just use the compiler wrapper built by uClibc...
Eric Andersenadea7a62001-02-22 23:36:30 +000090# This make things very easy? Everything should compile and work as
91# expected these days...
Eric Andersenb9af8942001-04-10 18:35:02 +000092#CC = ../uClibc/extra/gcc-uClibc/i386-uclibc-gcc
Eric Andersened3ef502001-01-27 08:24:39 +000093
94# To compile vs some other alternative libc, you may need to use/adjust
95# the following lines to meet your needs...
Eric Andersen47cdcdd2001-03-05 17:08:52 +000096#
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).
Mark Whitley4f76bb62001-02-27 19:53:48 +0000104#LIBCDIR=/usr/i486-linuxlibc1
Eric Andersen47cdcdd2001-03-05 17:08:52 +0000105#
106# For other libraries, you are on your own...
Eric Andersen28c88a92000-06-20 21:03:24 +0000107#LDFLAGS+=-nostdlib
Mark Whitley4f76bb62001-02-27 19:53:48 +0000108#LIBRARIES = $(LIBCDIR)/lib/libc.a -lgcc
Eric Andersen4d4b3b12000-12-12 23:23:32 +0000109#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
110#GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
Erik Andersen499f65f2000-05-16 20:07:38 +0000111
Erik Andersen3d427ac2000-05-12 19:38:40 +0000112# use '-Os' optimization if available, else use -O2
Eric Andersen19f86202001-02-17 00:42:47 +0000113OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
Erik Andersen3d427ac2000-05-12 19:38:40 +0000114 then echo "-Os"; else echo "-O2" ; fi)
Erik Andersenfac10d72000-02-07 05:29:42 +0000115
Eric Andersen1ca20a72001-03-21 07:34:27 +0000116WARNINGS = -Wall -Wshadow
Pavel Roskin43c17b32000-07-28 19:41:32 +0000117
Eric Andersenb183dfa2001-03-19 19:24:06 +0000118ARFLAGS = -r
119
Eric Andersen19f86202001-02-17 00:42:47 +0000120#
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
Mark Whitley76c5e602001-02-02 01:07:17 +0000129ifeq ($(strip $(DOLFS)),true)
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000130 # For large file summit support
131 CFLAGS+=-D_FILE_OFFSET_BITS=64
132endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000133ifeq ($(strip $(DODMALLOC)),true)
Eric Andersen1d255be2000-07-19 17:33:54 +0000134 # 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
Eric Andersen24073c72001-04-03 22:53:19 +0000139else
140 ifeq ($(strip $(DOEFENCE)),true)
141 LIBRARIES = -lefence
142 # Force debug=true, since this is useless when not debugging...
143 DODEBUG = true
144 endif
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000145endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000146ifeq ($(strip $(DODEBUG)),true)
Eric Andersen9962cd92000-12-11 16:20:40 +0000147 CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE
148 LDFLAGS += -Wl,-warn-common
149 STRIP =
Eric Andersen17d49ef1999-10-06 20:25:32 +0000150else
Pavel Roskin43c17b32000-07-28 19:41:32 +0000151 CFLAGS += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
Eric Andersen9962cd92000-12-11 16:20:40 +0000152 LDFLAGS += -s -Wl,-warn-common
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000153 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
Eric Andersen2c1faec2000-09-21 22:26:02 +0000154endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000155ifeq ($(strip $(DOSTATIC)),true)
Eric Andersen2c1faec2000-09-21 22:26:02 +0000156 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
Eric Andersen17d49ef1999-10-06 20:25:32 +0000168endif
169
Eric Anderseneded54b1999-11-12 08:03:23 +0000170ifndef $(PREFIX)
Erik Andersenfac10d72000-02-07 05:29:42 +0000171 PREFIX = `pwd`/_install
Eric Andersen17d49ef1999-10-06 20:25:32 +0000172endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000173
Eric Andersen09a34e52000-12-01 19:40:18 +0000174# Additional complications due to support for pristine source dir.
Eric Andersen19f86202001-02-17 00:42:47 +0000175# Include files in the build directory should take precedence over
176# the copy in BB_SRC_DIR, both during the compilation phase and the
Eric Andersen09a34e52000-12-01 19:40:18 +0000177# shell script that finds the list of object files.
Eric Andersen09a34e52000-12-01 19:40:18 +0000178# Work in progress by <ldoolitt@recycle.lbl.gov>.
Eric Andersen19f86202001-02-17 00:42:47 +0000179#
180ifneq ($(strip $(BB_SRC_DIR)),)
181 VPATH = $(BB_SRC_DIR)
Eric Andersen09a34e52000-12-01 19:40:18 +0000182endif
Eric Andersen19f86202001-02-17 00:42:47 +0000183#ifneq ($(strip $(VPATH)),)
184# CFLAGS += -I- -I. $(patsubst %,-I%,$(subst :, ,$(VPATH)))
185#endif
Eric Andersen09a34e52000-12-01 19:40:18 +0000186
Eric Andersen19f86202001-02-17 00:42:47 +0000187# 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
Eric Andersen04095e52001-04-25 05:39:18 +0000216OBJECTS = $(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
Eric Andersen93a8e2e2001-01-31 01:38:05 +0000217CFLAGS += $(CROSS_CFLAGS)
Erik Andersenfac10d72000-02-07 05:29:42 +0000218CFLAGS += -DBB_VER='"$(VERSION)"'
219CFLAGS += -DBB_BT='"$(BUILDTIME)"'
Erik Andersend387d011999-12-21 02:55:11 +0000220ifdef BB_INIT_SCRIPT
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000221 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
Erik Andersend387d011999-12-21 02:55:11 +0000222endif
223
Mark Whitley76c5e602001-02-02 01:07:17 +0000224ifneq ($(strip $(USE_SYSTEM_PWD_GRP)),true)
Eric Andersen19f86202001-02-17 00:42:47 +0000225 PWD_GRP = pwd_grp
Eric Andersendd917242001-03-09 20:47:27 +0000226 PWD_GRP_DIR = $(BB_SRC_DIR:=/)$(PWD_GRP)
Eric Andersen19f86202001-02-17 00:42:47 +0000227 PWD_LIB = libpwd.a
Eric Andersen19f86202001-02-17 00:42:47 +0000228 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)
Eric Andersenab050f52001-01-27 06:01:43 +0000233else
234 CFLAGS += -DUSE_SYSTEM_PWD_GRP
235endif
Eric Andersenaad1a882001-03-16 22:47:14 +0000236
237LIBBB = libbb
Eric Andersenaad1a882001-03-16 22:47:14 +0000238LIBBB_LIB = libbb.a
Eric Andersen14d35432001-05-14 17:07:32 +0000239LIBBB_CSRC= ask_confirmation.c chomp.c \
Glenn L McGratha6ce6702001-04-12 02:26:04 +0000240concat_path_file.c copy_file.c copy_file_chunk.c create_path.c \
241daemon.c deb_extract.c device_open.c error_msg.c error_msg_and_die.c \
242find_mount_point.c find_pid_by_name.c find_root_device.c full_read.c \
243full_write.c get_ar_headers.c get_console.c get_last_path_component.c \
244get_line_from_file.c gz_open.c human_readable.c inode_hash.c isdirectory.c \
245kernel_version.c loop.c mode_string.c module_syscalls.c mtab.c mtab_file.c \
246my_getgrnam.c my_getgrgid.c my_getpwnam.c my_getpwnamegid.c my_getpwuid.c \
247parse_mode.c parse_number.c perror_msg.c perror_msg_and_die.c print_file.c \
Glenn L McGratha529d882001-04-15 12:50:15 +0000248process_escape_sequence.c read_package_field.c read_text_file_to_buffer.c \
249recursive_action.c safe_read.c safe_strncpy.c seek_ared_file.c syscalls.c \
250syslog_msg_with_name.c time_string.c trim.c untar.c unzip.c vdprintf.c \
Matt Kraaic55b8d42001-05-16 15:40:51 +0000251verror_msg.c vperror_msg.c wfopen.c xfuncs.c xgetcwd.c xreadlink.c \
252xregcomp.c interface.c remove_file.c last_char_is.c copyfd.c \
253vherror_msg.c herror_msg.c herror_msg_and_die.c xgethostbyname.c
Eric Andersenaad1a882001-03-16 22:47:14 +0000254LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC))
Eric Andersenc0c502e2001-04-03 16:38:37 +0000255LIBBB_CFLAGS = -I$(LIBBB)
256ifneq ($(strip $(BB_SRC_DIR)),)
257 LIBBB_CFLAGS += -I$(BB_SRC_DIR)/$(LIBBB)
258endif
259
Eric Andersen04095e52001-04-25 05:39:18 +0000260LIBBB_MSRC=libbb/messages.c
261LIBBB_MESSAGES= full_version name_too_long omitting_directory not_a_directory \
262memory_exhausted invalid_date invalid_option io_error dash_dash_help \
Eric Andersen5f265b72001-05-11 16:58:46 +0000263write_error too_few_args name_longer_than_foo unknown
Eric Andersen04095e52001-04-25 05:39:18 +0000264LIBBB_MOBJ=$(patsubst %,$(LIBBB)/%.o, $(LIBBB_MESSAGES))
265
Eric Andersenab050f52001-01-27 06:01:43 +0000266
Eric Andersen0d5a08e2001-01-22 01:05:04 +0000267# Put user-supplied flags at the end, where they
268# have a chance of winning.
269CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen624cc772000-09-21 02:04:51 +0000270
Eric Andersenab050f52001-01-27 06:01:43 +0000271.EXPORT_ALL_VARIABLES:
272
Eric Andersen07e462f2001-04-27 18:36:43 +0000273all: applet_source_list busybox busybox.links doc
Eric Andersen00814662001-04-26 23:29:10 +0000274
Eric Andersendefa4f92001-04-30 17:52:36 +0000275sh.c:
Eric Andersenf12cc4e2001-05-30 19:09:40 +0000276 @if [ ! -L sh.c ] ; then ln -s hush.c sh.c ; fi
Eric Andersen19f86202001-02-17 00:42:47 +0000277
Eric Andersenabde0652001-05-01 14:37:03 +0000278applet_source_list: busybox.sh Config.h sh.c
Eric Andersen3f99b562001-05-01 01:40:34 +0000279 (echo -n "APPLET_SOURCES := "; BB_SRC_DIR=$(BB_SRC_DIR) $(SHELL) $^) > $@
Erik Andersen0a704e82000-05-03 03:19:06 +0000280
Eric Andersen67536ff2000-07-06 22:53:22 +0000281doc: olddoc
Eric Andersen53310252000-07-04 19:42:23 +0000282
283# Old Docs...
John Beppu94e50542001-04-05 19:42:03 +0000284olddoc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
285
286docs/busybox.pod : docs/busybox_header.pod usage.h docs/busybox_footer.pod
287 - ( cat docs/busybox_header.pod; \
288 docs/autodocifier.pl usage.h; \
289 cat docs/busybox_footer.pod ) > docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000290
Eric Andersen67536ff2000-07-06 22:53:22 +0000291docs/BusyBox.txt: docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000292 @echo
293 @echo BusyBox Documentation
294 @echo
Eric Andersen29be79c2000-12-01 22:57:44 +0000295 -mkdir -p docs
Eric Andersen19f86202001-02-17 00:42:47 +0000296 -pod2text $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000297
Eric Andersen67536ff2000-07-06 22:53:22 +0000298docs/BusyBox.1: docs/busybox.pod
Eric Andersen09a34e52000-12-01 19:40:18 +0000299 - mkdir -p docs
Eric Andersen29be79c2000-12-01 22:57:44 +0000300 - pod2man --center=BusyBox --release="version $(VERSION)" \
Eric Andersen19f86202001-02-17 00:42:47 +0000301 $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000302
Eric Andersen67536ff2000-07-06 22:53:22 +0000303docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
Eric Andersen1cf81662001-02-17 15:55:15 +0000304 - mkdir -p docs
Eric Andersene2f6e122000-12-01 19:55:04 +0000305 -@ rm -f docs/BusyBox.html
Eric Andersenb8b8d812000-12-01 20:26:30 +0000306 -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000307
Eric Andersen67536ff2000-07-06 22:53:22 +0000308docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
Eric Andersene2f6e122000-12-01 19:55:04 +0000309 -@ mkdir -p docs/busybox.lineo.com
Eric Andersen19f86202001-02-17 00:42:47 +0000310 - pod2html --noindex $< > \
Eric Andersen29be79c2000-12-01 22:57:44 +0000311 docs/busybox.lineo.com/BusyBox.html
Eric Andersen36763742001-04-24 21:46:07 +0000312 -@ rm -f pod2htm*
Erik Andersen0a704e82000-05-03 03:19:06 +0000313
Eric Andersen67536ff2000-07-06 22:53:22 +0000314
315# New docs based on DOCBOOK SGML
Eric Andersen488aac22000-09-24 02:42:48 +0000316newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
Eric Andersen67536ff2000-07-06 22:53:22 +0000317
318docs/busybox.txt: docs/busybox.sgml
319 @echo
320 @echo BusyBox Documentation
321 @echo
Eric Andersen09a34e52000-12-01 19:40:18 +0000322 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000323 (cd docs; sgmltools -b txt busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000324
325docs/busybox.dvi: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000326 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000327 (cd docs; sgmltools -b dvi busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000328
Eric Andersena2c83d82000-07-07 20:52:56 +0000329docs/busybox.ps: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000330 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000331 (cd docs; sgmltools -b ps busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000332
Eric Andersena2c83d82000-07-07 20:52:56 +0000333docs/busybox.pdf: docs/busybox.ps
Eric Andersen09a34e52000-12-01 19:40:18 +0000334 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000335 (cd docs; ps2pdf busybox.ps)
Eric Andersen67536ff2000-07-06 22:53:22 +0000336
Eric Andersen488aac22000-09-24 02:42:48 +0000337docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000338 - mkdir -p docs
Eric Andersen67536ff2000-07-06 22:53:22 +0000339 (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
340
341
Eric Andersenaad1a882001-03-16 22:47:14 +0000342busybox: $(PWD_LIB) $(LIBBB_LIB) $(OBJECTS)
Matt Kraai8a24a652001-04-23 16:11:57 +0000343 $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBBB_LIB) $(PWD_LIB) $(LIBRARIES)
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000344 $(STRIP)
Erik Andersen1d1d9502000-04-21 01:26:49 +0000345
Eric Andersen19f86202001-02-17 00:42:47 +0000346# Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h"
347# but with VPATH, some or all of those file names are resolved to the
348# directories in which they live.
349busybox.links: busybox.mkll Config.h applets.h
350 - $(SHELL) $^ >$@
Eric Andersen1667fb41999-11-27 20:34:28 +0000351
Mark Whitleycc54d122000-07-10 23:07:54 +0000352nfsmount.o cmdedit.o: %.o: %.h
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000353sh.o: cmdedit.h
Matt Kraai8392acd2001-01-18 03:03:09 +0000354$(OBJECTS): %.o: %.c Config.h busybox.h applets.h Makefile
Mark Whitley4f76bb62001-02-27 19:53:48 +0000355 $(CC) -I- $(CFLAGS) -I. $(patsubst %,-I%,$(subst :, ,$(BB_SRC_DIR))) -c $< -o $*.o
Eric Andersen19f86202001-02-17 00:42:47 +0000356
Eric Andersen1cf81662001-02-17 15:55:15 +0000357$(PWD_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile
358 - mkdir -p $(PWD_GRP)
Eric Andersen19f86202001-02-17 00:42:47 +0000359 $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o
360
Eric Andersenc75586e2001-03-19 18:37:42 +0000361$(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile libbb/libbb.h
Eric Andersenaad1a882001-03-16 22:47:14 +0000362 - mkdir -p $(LIBBB)
363 $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -c $< -o $*.o
364
Eric Andersen04095e52001-04-25 05:39:18 +0000365$(LIBBB_MOBJ): $(LIBBB_MSRC)
Mark Whitleye5598782001-04-25 23:49:43 +0000366 - mkdir -p $(LIBBB)
Eric Andersen04095e52001-04-25 05:39:18 +0000367 $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -DL_$(patsubst libbb/%,%,$*) -c $< -o $*.o
368
Eric Andersenc27b9542001-03-05 17:57:34 +0000369libpwd.a: $(PWD_OBJS)
370 $(AR) $(ARFLAGS) $@ $^
Eric Andersen19f86202001-02-17 00:42:47 +0000371
Eric Andersen04095e52001-04-25 05:39:18 +0000372libbb.a: $(LIBBB_MOBJ) $(LIBBB_OBJS)
Eric Andersenaad1a882001-03-16 22:47:14 +0000373 $(AR) $(ARFLAGS) $@ $^
374
Eric Andersen83050062001-02-14 21:52:18 +0000375usage.o: usage.h
376
Eric Andersenaad1a882001-03-16 22:47:14 +0000377libbb/loop.o: libbb/loop.h
Eric Andersen624cc772000-09-21 02:04:51 +0000378
Eric Andersenaad1a882001-03-16 22:47:14 +0000379libbb/loop.h: mk_loop_h.sh
Eric Andersen19f86202001-02-17 00:42:47 +0000380 @ $(SHELL) $< > $@
Eric Andersen624cc772000-09-21 02:04:51 +0000381
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000382test tests:
Mark Whitleyd2117e92001-03-10 00:51:29 +0000383 # old way of doing it
384 #cd tests && $(MAKE) all
385 # new way of doing it
386 cd tests && ./tester.sh
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000387
Eric Andersencc8ed391999-10-05 16:24:54 +0000388clean:
Eric Andersen20ea5c32000-11-29 22:08:35 +0000389 - cd tests && $(MAKE) clean
Eric Andersen67536ff2000-07-06 22:53:22 +0000390 - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
391 docs/busybox.lineo.com/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000392 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
393 docs/busybox.pdf docs/busybox.lineo.com/busybox.html
Eric Andersenaf4ac772001-02-01 22:43:49 +0000394 - rm -f multibuild.log Config.h.orig
Eric Andersen36763742001-04-24 21:46:07 +0000395 - rm -rf docs/busybox _install libpwd.a libbb.a pod2htm*
Eric Andersenaad1a882001-03-16 22:47:14 +0000396 - rm -f busybox.links libbb/loop.h *~ slist.mk core applet_source_list
Eric Andersena183f052001-02-20 06:22:54 +0000397 - find -name \*.o -exec rm -f {} \;
Eric Andersencc8ed391999-10-05 16:24:54 +0000398
399distclean: clean
Eric Andersenf12cc4e2001-05-30 19:09:40 +0000400 - rm -f busybox applet_source_list
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000401 - cd tests && $(MAKE) distclean
Eric Andersencc8ed391999-10-05 16:24:54 +0000402
Eric Andersen19f86202001-02-17 00:42:47 +0000403install: install.sh busybox busybox.links
404 $(SHELL) $< $(PREFIX)
Eric Andersen17d49ef1999-10-06 20:25:32 +0000405
Eric Andersen19f86202001-02-17 00:42:47 +0000406install-hardlinks: install.sh busybox busybox.links
407 $(SHELL) $< $(PREFIX) --hardlinks
Eric Andersen51154ba2000-07-20 21:57:11 +0000408
Eric Andersen09a34e52000-12-01 19:40:18 +0000409debug_pristine:
410 @ echo VPATH=\"$(VPATH)\"
Eric Andersen09a34e52000-12-01 19:40:18 +0000411 @ echo OBJECTS=\"$(OBJECTS)\"
412
Erik Andersen0a704e82000-05-03 03:19:06 +0000413dist release: distclean doc
Erik Andersenfac10d72000-02-07 05:29:42 +0000414 cd ..; \
415 rm -rf busybox-$(VERSION); \
416 cp -a busybox busybox-$(VERSION); \
417 \
418 find busybox-$(VERSION)/ -type d \
419 -name CVS \
420 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000421 -exec rm -rf {} \; ; \
Erik Andersenfac10d72000-02-07 05:29:42 +0000422 \
423 find busybox-$(VERSION)/ -type f \
424 -name .cvsignore \
425 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000426 -exec rm -f {} \; ; \
Erik Andersenfac10d72000-02-07 05:29:42 +0000427 \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000428 find busybox-$(VERSION)/ -type f \
429 -name .\#* \
430 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000431 -exec rm -f {} \; ; \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000432 \
Erik Andersenfac10d72000-02-07 05:29:42 +0000433 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000434
Eric Andersendefa4f92001-04-30 17:52:36 +0000435.PHONY: tags
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000436tags:
437 ctags -R .