blob: 5f5c80e6d8820f239f2a2a84c4bad89fe43402fe [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 Andersen0d5051d2001-03-15 22:12:43 +000021VERSION := 0.50
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 Andersen8a2e56c2000-09-21 02:23:30 +000063# If you want large file summit support, turn this on.
64# This has no effect if you don't have a kernel with lfs
65# support, and a system with libc-2.1.3 or later.
66# Some of the programs that can benefit from lfs support
67# are dd, gzip, mount, tar, and mkfs_minix.
68# LFS allows you to use the above programs for files
69# larger than 2GB!
70DOLFS = false
71
Eric Andersen20ea5c32000-11-29 22:08:35 +000072# If you have a "pristine" source directory, point BB_SRC_DIR to it.
Eric Andersen09a34e52000-12-01 19:40:18 +000073# Experimental and incomplete; tell the mailing list
74# <busybox@opensource.lineo.com> if you do or don't like it so far.
Eric Andersen19f86202001-02-17 00:42:47 +000075BB_SRC_DIR =
Eric Andersen8a2e56c2000-09-21 02:23:30 +000076
Eric Andersen1d255be2000-07-19 17:33:54 +000077# If you are running a cross compiler, you may want to set this
Eric Andersen20ea5c32000-11-29 22:08:35 +000078# to something more interesting, like "powerpc-linux-".
79CROSS =
Eric Andersen1d255be2000-07-19 17:33:54 +000080CC = $(CROSS)gcc
Eric Andersen5f2c79d2001-02-16 18:36:04 +000081AR = $(CROSS)ar
Eric Andersen1d255be2000-07-19 17:33:54 +000082STRIPTOOL = $(CROSS)strip
83
Eric Andersened3ef502001-01-27 08:24:39 +000084# To compile vs uClibc, just use the compiler wrapper built by uClibc...
Eric Andersenadea7a62001-02-22 23:36:30 +000085# This make things very easy? Everything should compile and work as
86# expected these days...
Eric Andersened3ef502001-01-27 08:24:39 +000087#CC = ../uClibc/extra/gcc-uClibc/gcc-uClibc-i386
88
89# To compile vs some other alternative libc, you may need to use/adjust
90# the following lines to meet your needs...
Eric Andersen47cdcdd2001-03-05 17:08:52 +000091#
92# If you are using Red Hat 6.x with the compatible RPMs (for developing under
93# Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about
94# using the compatible RPMs (compat-*) at http://www.redhat.com !
95#LIBCDIR=/usr/i386-glibc20-linux
96#
97# The following is used for libc5 (if you install altgcc and libc5-altdev
98# on a Debian system).
Mark Whitley4f76bb62001-02-27 19:53:48 +000099#LIBCDIR=/usr/i486-linuxlibc1
Eric Andersen47cdcdd2001-03-05 17:08:52 +0000100#
101# For other libraries, you are on your own...
Eric Andersen28c88a92000-06-20 21:03:24 +0000102#LDFLAGS+=-nostdlib
Mark Whitley4f76bb62001-02-27 19:53:48 +0000103#LIBRARIES = $(LIBCDIR)/lib/libc.a -lgcc
Eric Andersen4d4b3b12000-12-12 23:23:32 +0000104#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
105#GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
Erik Andersen499f65f2000-05-16 20:07:38 +0000106
Erik Andersen3d427ac2000-05-12 19:38:40 +0000107# use '-Os' optimization if available, else use -O2
Eric Andersen19f86202001-02-17 00:42:47 +0000108OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \
Erik Andersen3d427ac2000-05-12 19:38:40 +0000109 then echo "-Os"; else echo "-O2" ; fi)
Erik Andersenfac10d72000-02-07 05:29:42 +0000110
Pavel Roskin43c17b32000-07-28 19:41:32 +0000111WARNINGS = -Wall
112
Eric Andersen19f86202001-02-17 00:42:47 +0000113#
114#--------------------------------------------------------
115# If you're going to do a lot of builds with a non-vanilla configuration,
116# it makes sense to adjust parameters above, so you can type "make"
117# by itself, instead of following it by the same half-dozen overrides
118# every time. The stuff below, on the other hand, is probably less
119# prone to casual user adjustment.
120#
121
Mark Whitley76c5e602001-02-02 01:07:17 +0000122ifeq ($(strip $(DOLFS)),true)
Eric Andersen8a2e56c2000-09-21 02:23:30 +0000123 # For large file summit support
124 CFLAGS+=-D_FILE_OFFSET_BITS=64
125endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000126ifeq ($(strip $(DODMALLOC)),true)
Eric Andersen1d255be2000-07-19 17:33:54 +0000127 # For testing mem leaks with dmalloc
128 CFLAGS+=-DDMALLOC
129 LIBRARIES = -ldmalloc
130 # Force debug=true, since this is useless when not debugging...
131 DODEBUG = true
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000132endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000133ifeq ($(strip $(DODEBUG)),true)
Eric Andersen9962cd92000-12-11 16:20:40 +0000134 CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE
135 LDFLAGS += -Wl,-warn-common
136 STRIP =
Eric Andersen17d49ef1999-10-06 20:25:32 +0000137else
Pavel Roskin43c17b32000-07-28 19:41:32 +0000138 CFLAGS += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE
Eric Andersen9962cd92000-12-11 16:20:40 +0000139 LDFLAGS += -s -Wl,-warn-common
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000140 STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG)
Eric Andersen2c1faec2000-09-21 22:26:02 +0000141endif
Mark Whitley76c5e602001-02-02 01:07:17 +0000142ifeq ($(strip $(DOSTATIC)),true)
Eric Andersen2c1faec2000-09-21 22:26:02 +0000143 LDFLAGS += --static
144 #
145 #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they
146 # work) to try and strip out any unused junk. Doesn't do much for me,
147 # but you may want to give it a shot...
148 #
149 #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \
150 # -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \
151 # --gc-sections -v >/dev/null && echo 1),1)
152 # CFLAGS += -ffunction-sections -fdata-sections
153 # LDFLAGS += --gc-sections
154 #endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000155endif
156
Eric Anderseneded54b1999-11-12 08:03:23 +0000157ifndef $(PREFIX)
Erik Andersenfac10d72000-02-07 05:29:42 +0000158 PREFIX = `pwd`/_install
Eric Andersen17d49ef1999-10-06 20:25:32 +0000159endif
Eric Andersen17d49ef1999-10-06 20:25:32 +0000160
Eric Andersen09a34e52000-12-01 19:40:18 +0000161# Additional complications due to support for pristine source dir.
Eric Andersen19f86202001-02-17 00:42:47 +0000162# Include files in the build directory should take precedence over
163# the copy in BB_SRC_DIR, both during the compilation phase and the
Eric Andersen09a34e52000-12-01 19:40:18 +0000164# shell script that finds the list of object files.
Eric Andersen09a34e52000-12-01 19:40:18 +0000165# Work in progress by <ldoolitt@recycle.lbl.gov>.
Eric Andersen19f86202001-02-17 00:42:47 +0000166#
167ifneq ($(strip $(BB_SRC_DIR)),)
168 VPATH = $(BB_SRC_DIR)
Eric Andersen09a34e52000-12-01 19:40:18 +0000169endif
Eric Andersen19f86202001-02-17 00:42:47 +0000170#ifneq ($(strip $(VPATH)),)
171# CFLAGS += -I- -I. $(patsubst %,-I%,$(subst :, ,$(VPATH)))
172#endif
Eric Andersen09a34e52000-12-01 19:40:18 +0000173
Eric Andersen19f86202001-02-17 00:42:47 +0000174# We need to set APPLET_SOURCES to something like
175# $(shell busybox.sh Config.h)
176# but in a manner that works with VPATH and BB_SRC_DIR.
177# Possible ways to approach this:
178#
179# 1. Explicitly search through .:$(VPATH) for busybox.sh and config.h,
180# then $(shell $(BUSYBOX_SH) $(CONFIG_H) $(BB_SRC_DIR))
181#
182# 2. Explicity search through .:$(VPATH) for slist.mk,
183# then $(shell $(MAKE) -f $(SLIST_MK) VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR))
184#
185# 3. Create slist.mk in this directory, with commands embedded in
186# a $(shell ...) command, and $(MAKE) it immediately.
187#
188# 4. Use a real rule within this makefile to create a file that sets
189# APPLET_SOURCE_LIST, then include that file. Has complications
190# with the first trip through the makefile (before processing the
191# include) trying to do too much, and a spurious warning the first
192# time make is run.
193#
194# This is option 3:
195#
196#APPLET_SOURCES = $(shell \
197# echo -e 'all: busybox.sh Config.h\n\t@ $$(SHELL) $$^ $$(BB_SRC_DIR)' >slist.mk; \
198# make -f slist.mk VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR) \
199#)
200# And option 4:
201-include applet_source_list
202
Eric Andersenaad1a882001-03-16 22:47:14 +0000203OBJECTS = $(APPLET_SOURCES:.c=.o) busybox.o messages.o usage.o applets.o mtab_file.o
Eric Andersen93a8e2e2001-01-31 01:38:05 +0000204CFLAGS += $(CROSS_CFLAGS)
Erik Andersenfac10d72000-02-07 05:29:42 +0000205CFLAGS += -DBB_VER='"$(VERSION)"'
206CFLAGS += -DBB_BT='"$(BUILDTIME)"'
Erik Andersend387d011999-12-21 02:55:11 +0000207ifdef BB_INIT_SCRIPT
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000208 CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"'
Erik Andersend387d011999-12-21 02:55:11 +0000209endif
210
Mark Whitley76c5e602001-02-02 01:07:17 +0000211ifneq ($(strip $(USE_SYSTEM_PWD_GRP)),true)
Eric Andersen19f86202001-02-17 00:42:47 +0000212 PWD_GRP = pwd_grp
Eric Andersendd917242001-03-09 20:47:27 +0000213 PWD_GRP_DIR = $(BB_SRC_DIR:=/)$(PWD_GRP)
Eric Andersen19f86202001-02-17 00:42:47 +0000214 PWD_LIB = libpwd.a
Eric Andersen19f86202001-02-17 00:42:47 +0000215 PWD_CSRC=__getpwent.c pwent.c getpwnam.c getpwuid.c putpwent.c getpw.c \
216 fgetpwent.c __getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c \
217 initgroups.c setgroups.c
218 PWD_OBJS=$(patsubst %.c,$(PWD_GRP)/%.o, $(PWD_CSRC))
219 PWD_CFLAGS = -I$(PWD_GRP_DIR)
Eric Andersenab050f52001-01-27 06:01:43 +0000220else
221 CFLAGS += -DUSE_SYSTEM_PWD_GRP
222endif
Eric Andersenaad1a882001-03-16 22:47:14 +0000223
224LIBBB = libbb
225LIBBB_DIR = $(BB_SRC_DIR:=/)$(LIBBB)
226LIBBB_LIB = libbb.a
227LIBBB_CSRC= ask_confirmation.c check_wildcard_match.c chomp.c copy_file.c \
228copy_file_chunk.c create_path.c device_open.c error_msg.c \
229find_mount_point.c find_pid_by_name.c find_root_device.c full_read.c \
230full_write.c get_console.c get_last_path_component.c get_line_from_file.c \
231human_readable.c inode_hash.c isdirectory.c kernel_version.c loop.c \
232mode_string.c parse_mode.c parse_number.c print_file.c process_escape_sequence.c \
233pwd_grp_wrappers.c recursive_action.c safe_read.c safe_strncpy.c syscalls.c \
234syslog_msg_with_name.c time_string.c trim.c vdprintf.c wfopen.c xfuncs.c \
235xregcomp.c
236LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC))
237LIBBB_CFLAGS = -I$(LIBBB_DIR)
Eric Andersenab050f52001-01-27 06:01:43 +0000238
Eric Andersen0d5a08e2001-01-22 01:05:04 +0000239# Put user-supplied flags at the end, where they
240# have a chance of winning.
241CFLAGS += $(CFLAGS_EXTRA)
Eric Andersen624cc772000-09-21 02:04:51 +0000242
Eric Andersenab050f52001-01-27 06:01:43 +0000243.EXPORT_ALL_VARIABLES:
244
Eric Andersen19f86202001-02-17 00:42:47 +0000245all: applet_source_list busybox busybox.links doc
246
247applet_source_list: busybox.sh Config.h
248 (echo -n "APPLET_SOURCES := "; $(SHELL) $^ $(BB_SRC_DIR)) > $@
Erik Andersen0a704e82000-05-03 03:19:06 +0000249
Eric Andersen67536ff2000-07-06 22:53:22 +0000250doc: olddoc
Eric Andersen53310252000-07-04 19:42:23 +0000251
252# Old Docs...
Eric Andersen67536ff2000-07-06 22:53:22 +0000253olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000254
Eric Andersen67536ff2000-07-06 22:53:22 +0000255docs/BusyBox.txt: docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000256 @echo
257 @echo BusyBox Documentation
258 @echo
Eric Andersen29be79c2000-12-01 22:57:44 +0000259 -mkdir -p docs
Eric Andersen19f86202001-02-17 00:42:47 +0000260 -pod2text $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000261
Eric Andersen67536ff2000-07-06 22:53:22 +0000262docs/BusyBox.1: docs/busybox.pod
Eric Andersen09a34e52000-12-01 19:40:18 +0000263 - mkdir -p docs
Eric Andersen29be79c2000-12-01 22:57:44 +0000264 - pod2man --center=BusyBox --release="version $(VERSION)" \
Eric Andersen19f86202001-02-17 00:42:47 +0000265 $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000266
Eric Andersen67536ff2000-07-06 22:53:22 +0000267docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html
Eric Andersen1cf81662001-02-17 15:55:15 +0000268 - mkdir -p docs
Eric Andersene2f6e122000-12-01 19:55:04 +0000269 -@ rm -f docs/BusyBox.html
Eric Andersenb8b8d812000-12-01 20:26:30 +0000270 -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000271
Eric Andersen67536ff2000-07-06 22:53:22 +0000272docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod
Eric Andersene2f6e122000-12-01 19:55:04 +0000273 -@ mkdir -p docs/busybox.lineo.com
Eric Andersen19f86202001-02-17 00:42:47 +0000274 - pod2html --noindex $< > \
Eric Andersen29be79c2000-12-01 22:57:44 +0000275 docs/busybox.lineo.com/BusyBox.html
Eric Andersene2f6e122000-12-01 19:55:04 +0000276 -@ rm -f pod2html*
Erik Andersen0a704e82000-05-03 03:19:06 +0000277
Eric Andersen67536ff2000-07-06 22:53:22 +0000278
279# New docs based on DOCBOOK SGML
Eric Andersen488aac22000-09-24 02:42:48 +0000280newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
Eric Andersen67536ff2000-07-06 22:53:22 +0000281
282docs/busybox.txt: docs/busybox.sgml
283 @echo
284 @echo BusyBox Documentation
285 @echo
Eric Andersen09a34e52000-12-01 19:40:18 +0000286 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000287 (cd docs; sgmltools -b txt busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000288
289docs/busybox.dvi: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000290 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000291 (cd docs; sgmltools -b dvi busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000292
Eric Andersena2c83d82000-07-07 20:52:56 +0000293docs/busybox.ps: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000294 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000295 (cd docs; sgmltools -b ps busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000296
Eric Andersena2c83d82000-07-07 20:52:56 +0000297docs/busybox.pdf: docs/busybox.ps
Eric Andersen09a34e52000-12-01 19:40:18 +0000298 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000299 (cd docs; ps2pdf busybox.ps)
Eric Andersen67536ff2000-07-06 22:53:22 +0000300
Eric Andersen488aac22000-09-24 02:42:48 +0000301docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000302 - mkdir -p docs
Eric Andersen67536ff2000-07-06 22:53:22 +0000303 (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml)
304
305
Eric Andersenaad1a882001-03-16 22:47:14 +0000306busybox: $(PWD_LIB) $(LIBBB_LIB) $(OBJECTS)
307 $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBRARIES) $(PWD_LIB) $(LIBBB_LIB)
Erik Andersen7c4b2f32000-02-29 21:49:22 +0000308 $(STRIP)
Erik Andersen1d1d9502000-04-21 01:26:49 +0000309
Eric Andersen19f86202001-02-17 00:42:47 +0000310# Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h"
311# but with VPATH, some or all of those file names are resolved to the
312# directories in which they live.
313busybox.links: busybox.mkll Config.h applets.h
314 - $(SHELL) $^ >$@
Eric Andersen1667fb41999-11-27 20:34:28 +0000315
Mark Whitleycc54d122000-07-10 23:07:54 +0000316nfsmount.o cmdedit.o: %.o: %.h
Eric Andersenb3d6e2d2001-03-13 22:57:56 +0000317sh.o: cmdedit.h
Matt Kraai8392acd2001-01-18 03:03:09 +0000318$(OBJECTS): %.o: %.c Config.h busybox.h applets.h Makefile
Mark Whitley4f76bb62001-02-27 19:53:48 +0000319 $(CC) -I- $(CFLAGS) -I. $(patsubst %,-I%,$(subst :, ,$(BB_SRC_DIR))) -c $< -o $*.o
Eric Andersen19f86202001-02-17 00:42:47 +0000320
Eric Andersen1cf81662001-02-17 15:55:15 +0000321$(PWD_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile
322 - mkdir -p $(PWD_GRP)
Eric Andersen19f86202001-02-17 00:42:47 +0000323 $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o
324
Eric Andersenaad1a882001-03-16 22:47:14 +0000325$(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile
326 - mkdir -p $(LIBBB)
327 $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -c $< -o $*.o
328
Eric Andersenc27b9542001-03-05 17:57:34 +0000329libpwd.a: $(PWD_OBJS)
330 $(AR) $(ARFLAGS) $@ $^
Eric Andersen19f86202001-02-17 00:42:47 +0000331
Eric Andersenaad1a882001-03-16 22:47:14 +0000332libbb.a: $(LIBBB_OBJS)
333 $(AR) $(ARFLAGS) $@ $^
334
Eric Andersen83050062001-02-14 21:52:18 +0000335usage.o: usage.h
336
Eric Andersenaad1a882001-03-16 22:47:14 +0000337libbb/loop.o: libbb/loop.h
Eric Andersen624cc772000-09-21 02:04:51 +0000338
Eric Andersenaad1a882001-03-16 22:47:14 +0000339libbb/loop.h: mk_loop_h.sh
Eric Andersen19f86202001-02-17 00:42:47 +0000340 @ $(SHELL) $< > $@
Eric Andersen624cc772000-09-21 02:04:51 +0000341
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000342test tests:
Mark Whitleyd2117e92001-03-10 00:51:29 +0000343 # old way of doing it
344 #cd tests && $(MAKE) all
345 # new way of doing it
346 cd tests && ./tester.sh
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000347
Eric Andersencc8ed391999-10-05 16:24:54 +0000348clean:
Eric Andersen20ea5c32000-11-29 22:08:35 +0000349 - cd tests && $(MAKE) clean
Eric Andersen67536ff2000-07-06 22:53:22 +0000350 - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
351 docs/busybox.lineo.com/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000352 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
353 docs/busybox.pdf docs/busybox.lineo.com/busybox.html
Eric Andersenaf4ac772001-02-01 22:43:49 +0000354 - rm -f multibuild.log Config.h.orig
Eric Andersenaad1a882001-03-16 22:47:14 +0000355 - rm -rf docs/busybox _install libpwd.a libbb.a
356 - rm -f busybox.links libbb/loop.h *~ slist.mk core applet_source_list
Eric Andersena183f052001-02-20 06:22:54 +0000357 - find -name \*.o -exec rm -f {} \;
Eric Andersencc8ed391999-10-05 16:24:54 +0000358
359distclean: clean
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000360 - rm -f busybox
361 - cd tests && $(MAKE) distclean
Eric Andersencc8ed391999-10-05 16:24:54 +0000362
Eric Andersen19f86202001-02-17 00:42:47 +0000363install: install.sh busybox busybox.links
364 $(SHELL) $< $(PREFIX)
Eric Andersen17d49ef1999-10-06 20:25:32 +0000365
Eric Andersen19f86202001-02-17 00:42:47 +0000366install-hardlinks: install.sh busybox busybox.links
367 $(SHELL) $< $(PREFIX) --hardlinks
Eric Andersen51154ba2000-07-20 21:57:11 +0000368
Eric Andersen09a34e52000-12-01 19:40:18 +0000369debug_pristine:
370 @ echo VPATH=\"$(VPATH)\"
Eric Andersen09a34e52000-12-01 19:40:18 +0000371 @ echo OBJECTS=\"$(OBJECTS)\"
372
Erik Andersen0a704e82000-05-03 03:19:06 +0000373dist release: distclean doc
Erik Andersenfac10d72000-02-07 05:29:42 +0000374 cd ..; \
375 rm -rf busybox-$(VERSION); \
376 cp -a busybox busybox-$(VERSION); \
377 \
378 find busybox-$(VERSION)/ -type d \
379 -name CVS \
380 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000381 -exec rm -rf {} \; ; \
Erik Andersenfac10d72000-02-07 05:29:42 +0000382 \
383 find busybox-$(VERSION)/ -type f \
384 -name .cvsignore \
385 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000386 -exec rm -f {} \; ; \
Erik Andersenfac10d72000-02-07 05:29:42 +0000387 \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000388 find busybox-$(VERSION)/ -type f \
389 -name .\#* \
390 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000391 -exec rm -f {} \; ; \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000392 \
Erik Andersenfac10d72000-02-07 05:29:42 +0000393 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000394
395.PHONY: tags
396tags:
397 ctags -R .