Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 1 | # Makefile for busybox |
| 2 | # |
Eric Andersen | 8ec10a9 | 2001-01-27 09:33:39 +0000 | [diff] [blame] | 3 | # Copyright (C) 1999,2000,2001 Erik Andersen <andersee@debian.org> |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 4 | # |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 5 | # 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 Andersen | 7c4b2f3 | 2000-02-29 21:49:22 +0000 | [diff] [blame] | 20 | PROG := busybox |
Eric Andersen | 36eff9a | 2001-03-24 06:34:59 +0000 | [diff] [blame] | 21 | VERSION := 0.51pre |
Erik Andersen | 1ad302a | 2000-03-24 00:54:46 +0000 | [diff] [blame] | 22 | BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z") |
John Beppu | cbd6628 | 2000-04-13 22:57:45 +0000 | [diff] [blame] | 23 | export VERSION |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 24 | |
Eric Andersen | 20ea5c3 | 2000-11-29 22:08:35 +0000 | [diff] [blame] | 25 | # 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 Andersen | 0d5a08e | 2001-01-22 01:05:04 +0000 | [diff] [blame] | 30 | # 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. |
| 33 | CFLAGS_EXTRA = |
| 34 | |
Eric Andersen | 51154ba | 2000-07-20 21:57:11 +0000 | [diff] [blame] | 35 | # If you want a static binary, turn this on. |
| 36 | DOSTATIC = false |
| 37 | |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 38 | # Set the following to `true' to make a debuggable build. |
| 39 | # Leave this set to `false' for production use. |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 40 | # eg: `make DODEBUG=true tests' |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 41 | # Do not enable this for production builds... |
Randolph Chung | 1e1d9d1 | 2000-12-07 03:56:10 +0000 | [diff] [blame] | 42 | DODEBUG = false |
Eric Andersen | 21943ce | 1999-10-13 18:04:51 +0000 | [diff] [blame] | 43 | |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 44 | # 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 Andersen | bdc8db9 | 2001-03-14 01:49:10 +0000 | [diff] [blame] | 53 | USE_SYSTEM_PWD_GRP = true |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 54 | |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 55 | # 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... |
| 61 | DODMALLOC = false |
| 62 | |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 63 | # 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! |
| 70 | DOLFS = false |
| 71 | |
Eric Andersen | 20ea5c3 | 2000-11-29 22:08:35 +0000 | [diff] [blame] | 72 | # If you have a "pristine" source directory, point BB_SRC_DIR to it. |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 73 | # Experimental and incomplete; tell the mailing list |
| 74 | # <busybox@opensource.lineo.com> if you do or don't like it so far. |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 75 | BB_SRC_DIR = |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 76 | |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 77 | # If you are running a cross compiler, you may want to set this |
Eric Andersen | 20ea5c3 | 2000-11-29 22:08:35 +0000 | [diff] [blame] | 78 | # to something more interesting, like "powerpc-linux-". |
| 79 | CROSS = |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 80 | CC = $(CROSS)gcc |
Eric Andersen | 5f2c79d | 2001-02-16 18:36:04 +0000 | [diff] [blame] | 81 | AR = $(CROSS)ar |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 82 | STRIPTOOL = $(CROSS)strip |
| 83 | |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 84 | # To compile vs uClibc, just use the compiler wrapper built by uClibc... |
Eric Andersen | adea7a6 | 2001-02-22 23:36:30 +0000 | [diff] [blame] | 85 | # This make things very easy? Everything should compile and work as |
| 86 | # expected these days... |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 87 | #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 Andersen | 47cdcdd | 2001-03-05 17:08:52 +0000 | [diff] [blame] | 91 | # |
| 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 Whitley | 4f76bb6 | 2001-02-27 19:53:48 +0000 | [diff] [blame] | 99 | #LIBCDIR=/usr/i486-linuxlibc1 |
Eric Andersen | 47cdcdd | 2001-03-05 17:08:52 +0000 | [diff] [blame] | 100 | # |
| 101 | # For other libraries, you are on your own... |
Eric Andersen | 28c88a9 | 2000-06-20 21:03:24 +0000 | [diff] [blame] | 102 | #LDFLAGS+=-nostdlib |
Mark Whitley | 4f76bb6 | 2001-02-27 19:53:48 +0000 | [diff] [blame] | 103 | #LIBRARIES = $(LIBCDIR)/lib/libc.a -lgcc |
Eric Andersen | 4d4b3b1 | 2000-12-12 23:23:32 +0000 | [diff] [blame] | 104 | #CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) |
| 105 | #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") |
Erik Andersen | 499f65f | 2000-05-16 20:07:38 +0000 | [diff] [blame] | 106 | |
Erik Andersen | 3d427ac | 2000-05-12 19:38:40 +0000 | [diff] [blame] | 107 | # use '-Os' optimization if available, else use -O2 |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 108 | OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \ |
Erik Andersen | 3d427ac | 2000-05-12 19:38:40 +0000 | [diff] [blame] | 109 | then echo "-Os"; else echo "-O2" ; fi) |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 110 | |
Eric Andersen | 1ca20a7 | 2001-03-21 07:34:27 +0000 | [diff] [blame] | 111 | WARNINGS = -Wall -Wshadow |
Pavel Roskin | 43c17b3 | 2000-07-28 19:41:32 +0000 | [diff] [blame] | 112 | |
Eric Andersen | b183dfa | 2001-03-19 19:24:06 +0000 | [diff] [blame] | 113 | ARFLAGS = -r |
| 114 | |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 115 | # |
| 116 | #-------------------------------------------------------- |
| 117 | # If you're going to do a lot of builds with a non-vanilla configuration, |
| 118 | # it makes sense to adjust parameters above, so you can type "make" |
| 119 | # by itself, instead of following it by the same half-dozen overrides |
| 120 | # every time. The stuff below, on the other hand, is probably less |
| 121 | # prone to casual user adjustment. |
| 122 | # |
| 123 | |
Mark Whitley | 76c5e60 | 2001-02-02 01:07:17 +0000 | [diff] [blame] | 124 | ifeq ($(strip $(DOLFS)),true) |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 125 | # For large file summit support |
| 126 | CFLAGS+=-D_FILE_OFFSET_BITS=64 |
| 127 | endif |
Mark Whitley | 76c5e60 | 2001-02-02 01:07:17 +0000 | [diff] [blame] | 128 | ifeq ($(strip $(DODMALLOC)),true) |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 129 | # For testing mem leaks with dmalloc |
| 130 | CFLAGS+=-DDMALLOC |
| 131 | LIBRARIES = -ldmalloc |
| 132 | # Force debug=true, since this is useless when not debugging... |
| 133 | DODEBUG = true |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 134 | endif |
Mark Whitley | 76c5e60 | 2001-02-02 01:07:17 +0000 | [diff] [blame] | 135 | ifeq ($(strip $(DODEBUG)),true) |
Eric Andersen | 9962cd9 | 2000-12-11 16:20:40 +0000 | [diff] [blame] | 136 | CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE |
| 137 | LDFLAGS += -Wl,-warn-common |
| 138 | STRIP = |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 139 | else |
Pavel Roskin | 43c17b3 | 2000-07-28 19:41:32 +0000 | [diff] [blame] | 140 | CFLAGS += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE |
Eric Andersen | 9962cd9 | 2000-12-11 16:20:40 +0000 | [diff] [blame] | 141 | LDFLAGS += -s -Wl,-warn-common |
Erik Andersen | 7c4b2f3 | 2000-02-29 21:49:22 +0000 | [diff] [blame] | 142 | STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG) |
Eric Andersen | 2c1faec | 2000-09-21 22:26:02 +0000 | [diff] [blame] | 143 | endif |
Mark Whitley | 76c5e60 | 2001-02-02 01:07:17 +0000 | [diff] [blame] | 144 | ifeq ($(strip $(DOSTATIC)),true) |
Eric Andersen | 2c1faec | 2000-09-21 22:26:02 +0000 | [diff] [blame] | 145 | LDFLAGS += --static |
| 146 | # |
| 147 | #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they |
| 148 | # work) to try and strip out any unused junk. Doesn't do much for me, |
| 149 | # but you may want to give it a shot... |
| 150 | # |
| 151 | #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \ |
| 152 | # -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \ |
| 153 | # --gc-sections -v >/dev/null && echo 1),1) |
| 154 | # CFLAGS += -ffunction-sections -fdata-sections |
| 155 | # LDFLAGS += --gc-sections |
| 156 | #endif |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 157 | endif |
| 158 | |
Eric Andersen | eded54b | 1999-11-12 08:03:23 +0000 | [diff] [blame] | 159 | ifndef $(PREFIX) |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 160 | PREFIX = `pwd`/_install |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 161 | endif |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 162 | |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 163 | # Additional complications due to support for pristine source dir. |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 164 | # Include files in the build directory should take precedence over |
| 165 | # the copy in BB_SRC_DIR, both during the compilation phase and the |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 166 | # shell script that finds the list of object files. |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 167 | # Work in progress by <ldoolitt@recycle.lbl.gov>. |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 168 | # |
| 169 | ifneq ($(strip $(BB_SRC_DIR)),) |
| 170 | VPATH = $(BB_SRC_DIR) |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 171 | endif |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 172 | #ifneq ($(strip $(VPATH)),) |
| 173 | # CFLAGS += -I- -I. $(patsubst %,-I%,$(subst :, ,$(VPATH))) |
| 174 | #endif |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 175 | |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 176 | # We need to set APPLET_SOURCES to something like |
| 177 | # $(shell busybox.sh Config.h) |
| 178 | # but in a manner that works with VPATH and BB_SRC_DIR. |
| 179 | # Possible ways to approach this: |
| 180 | # |
| 181 | # 1. Explicitly search through .:$(VPATH) for busybox.sh and config.h, |
| 182 | # then $(shell $(BUSYBOX_SH) $(CONFIG_H) $(BB_SRC_DIR)) |
| 183 | # |
| 184 | # 2. Explicity search through .:$(VPATH) for slist.mk, |
| 185 | # then $(shell $(MAKE) -f $(SLIST_MK) VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR)) |
| 186 | # |
| 187 | # 3. Create slist.mk in this directory, with commands embedded in |
| 188 | # a $(shell ...) command, and $(MAKE) it immediately. |
| 189 | # |
| 190 | # 4. Use a real rule within this makefile to create a file that sets |
| 191 | # APPLET_SOURCE_LIST, then include that file. Has complications |
| 192 | # with the first trip through the makefile (before processing the |
| 193 | # include) trying to do too much, and a spurious warning the first |
| 194 | # time make is run. |
| 195 | # |
| 196 | # This is option 3: |
| 197 | # |
| 198 | #APPLET_SOURCES = $(shell \ |
| 199 | # echo -e 'all: busybox.sh Config.h\n\t@ $$(SHELL) $$^ $$(BB_SRC_DIR)' >slist.mk; \ |
| 200 | # make -f slist.mk VPATH=$(VPATH) BB_SRC_DIR=$(BB_SRC_DIR) \ |
| 201 | #) |
| 202 | # And option 4: |
| 203 | -include applet_source_list |
| 204 | |
Eric Andersen | c4cef5a | 2001-04-01 16:01:11 +0000 | [diff] [blame^] | 205 | OBJECTS = $(APPLET_SOURCES:.c=.o) busybox.o messages.o usage.o applets.o |
Eric Andersen | 93a8e2e | 2001-01-31 01:38:05 +0000 | [diff] [blame] | 206 | CFLAGS += $(CROSS_CFLAGS) |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 207 | CFLAGS += -DBB_VER='"$(VERSION)"' |
| 208 | CFLAGS += -DBB_BT='"$(BUILDTIME)"' |
Erik Andersen | d387d01 | 1999-12-21 02:55:11 +0000 | [diff] [blame] | 209 | ifdef BB_INIT_SCRIPT |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 210 | CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"' |
Erik Andersen | d387d01 | 1999-12-21 02:55:11 +0000 | [diff] [blame] | 211 | endif |
| 212 | |
Mark Whitley | 76c5e60 | 2001-02-02 01:07:17 +0000 | [diff] [blame] | 213 | ifneq ($(strip $(USE_SYSTEM_PWD_GRP)),true) |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 214 | PWD_GRP = pwd_grp |
Eric Andersen | dd91724 | 2001-03-09 20:47:27 +0000 | [diff] [blame] | 215 | PWD_GRP_DIR = $(BB_SRC_DIR:=/)$(PWD_GRP) |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 216 | PWD_LIB = libpwd.a |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 217 | PWD_CSRC=__getpwent.c pwent.c getpwnam.c getpwuid.c putpwent.c getpw.c \ |
| 218 | fgetpwent.c __getgrent.c grent.c getgrnam.c getgrgid.c fgetgrent.c \ |
| 219 | initgroups.c setgroups.c |
| 220 | PWD_OBJS=$(patsubst %.c,$(PWD_GRP)/%.o, $(PWD_CSRC)) |
| 221 | PWD_CFLAGS = -I$(PWD_GRP_DIR) |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 222 | else |
| 223 | CFLAGS += -DUSE_SYSTEM_PWD_GRP |
| 224 | endif |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 225 | |
| 226 | LIBBB = libbb |
| 227 | LIBBB_DIR = $(BB_SRC_DIR:=/)$(LIBBB) |
| 228 | LIBBB_LIB = libbb.a |
| 229 | LIBBB_CSRC= ask_confirmation.c check_wildcard_match.c chomp.c copy_file.c \ |
| 230 | copy_file_chunk.c create_path.c device_open.c error_msg.c \ |
| 231 | find_mount_point.c find_pid_by_name.c find_root_device.c full_read.c \ |
| 232 | full_write.c get_console.c get_last_path_component.c get_line_from_file.c \ |
| 233 | human_readable.c inode_hash.c isdirectory.c kernel_version.c loop.c \ |
| 234 | mode_string.c parse_mode.c parse_number.c print_file.c process_escape_sequence.c \ |
Eric Andersen | c75586e | 2001-03-19 18:37:42 +0000 | [diff] [blame] | 235 | my_getgrgid.c my_getpwnamegid.c my_getpwuid.c my_getgrnam.c my_getpwnam.c \ |
| 236 | recursive_action.c safe_read.c safe_strncpy.c syscalls.c \ |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 237 | syslog_msg_with_name.c time_string.c trim.c vdprintf.c wfopen.c xfuncs.c \ |
Eric Andersen | b183dfa | 2001-03-19 19:24:06 +0000 | [diff] [blame] | 238 | xregcomp.c error_msg_and_die.c perror_msg.c perror_msg_and_die.c \ |
Eric Andersen | c4cef5a | 2001-04-01 16:01:11 +0000 | [diff] [blame^] | 239 | verror_msg.c vperror_msg.c mtab.c mtab_file.c |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 240 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) |
| 241 | LIBBB_CFLAGS = -I$(LIBBB_DIR) |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 242 | |
Eric Andersen | 0d5a08e | 2001-01-22 01:05:04 +0000 | [diff] [blame] | 243 | # Put user-supplied flags at the end, where they |
| 244 | # have a chance of winning. |
| 245 | CFLAGS += $(CFLAGS_EXTRA) |
Eric Andersen | 624cc77 | 2000-09-21 02:04:51 +0000 | [diff] [blame] | 246 | |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 247 | .EXPORT_ALL_VARIABLES: |
| 248 | |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 249 | all: applet_source_list busybox busybox.links doc |
| 250 | |
| 251 | applet_source_list: busybox.sh Config.h |
| 252 | (echo -n "APPLET_SOURCES := "; $(SHELL) $^ $(BB_SRC_DIR)) > $@ |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 253 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 254 | doc: olddoc |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 255 | |
| 256 | # Old Docs... |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 257 | olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 258 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 259 | docs/BusyBox.txt: docs/busybox.pod |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 260 | @echo |
| 261 | @echo BusyBox Documentation |
| 262 | @echo |
Eric Andersen | 29be79c | 2000-12-01 22:57:44 +0000 | [diff] [blame] | 263 | -mkdir -p docs |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 264 | -pod2text $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 265 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 266 | docs/BusyBox.1: docs/busybox.pod |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 267 | - mkdir -p docs |
Eric Andersen | 29be79c | 2000-12-01 22:57:44 +0000 | [diff] [blame] | 268 | - pod2man --center=BusyBox --release="version $(VERSION)" \ |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 269 | $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 270 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 271 | docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html |
Eric Andersen | 1cf8166 | 2001-02-17 15:55:15 +0000 | [diff] [blame] | 272 | - mkdir -p docs |
Eric Andersen | e2f6e12 | 2000-12-01 19:55:04 +0000 | [diff] [blame] | 273 | -@ rm -f docs/BusyBox.html |
Eric Andersen | b8b8d81 | 2000-12-01 20:26:30 +0000 | [diff] [blame] | 274 | -@ ln -s busybox.lineo.com/BusyBox.html docs/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 275 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 276 | docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod |
Eric Andersen | e2f6e12 | 2000-12-01 19:55:04 +0000 | [diff] [blame] | 277 | -@ mkdir -p docs/busybox.lineo.com |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 278 | - pod2html --noindex $< > \ |
Eric Andersen | 29be79c | 2000-12-01 22:57:44 +0000 | [diff] [blame] | 279 | docs/busybox.lineo.com/BusyBox.html |
Eric Andersen | e2f6e12 | 2000-12-01 19:55:04 +0000 | [diff] [blame] | 280 | -@ rm -f pod2html* |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 281 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 282 | |
| 283 | # New docs based on DOCBOOK SGML |
Eric Andersen | 488aac2 | 2000-09-24 02:42:48 +0000 | [diff] [blame] | 284 | newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 285 | |
| 286 | docs/busybox.txt: docs/busybox.sgml |
| 287 | @echo |
| 288 | @echo BusyBox Documentation |
| 289 | @echo |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 290 | - mkdir -p docs |
Eric Andersen | 868c057 | 2000-12-02 00:44:48 +0000 | [diff] [blame] | 291 | (cd docs; sgmltools -b txt busybox.sgml) |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 292 | |
| 293 | docs/busybox.dvi: docs/busybox.sgml |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 294 | - mkdir -p docs |
Eric Andersen | 868c057 | 2000-12-02 00:44:48 +0000 | [diff] [blame] | 295 | (cd docs; sgmltools -b dvi busybox.sgml) |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 296 | |
Eric Andersen | a2c83d8 | 2000-07-07 20:52:56 +0000 | [diff] [blame] | 297 | docs/busybox.ps: docs/busybox.sgml |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 298 | - mkdir -p docs |
Eric Andersen | 868c057 | 2000-12-02 00:44:48 +0000 | [diff] [blame] | 299 | (cd docs; sgmltools -b ps busybox.sgml) |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 300 | |
Eric Andersen | a2c83d8 | 2000-07-07 20:52:56 +0000 | [diff] [blame] | 301 | docs/busybox.pdf: docs/busybox.ps |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 302 | - mkdir -p docs |
Eric Andersen | 868c057 | 2000-12-02 00:44:48 +0000 | [diff] [blame] | 303 | (cd docs; ps2pdf busybox.ps) |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 304 | |
Eric Andersen | 488aac2 | 2000-09-24 02:42:48 +0000 | [diff] [blame] | 305 | docs/busybox/busyboxdocumentation.html: docs/busybox.sgml |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 306 | - mkdir -p docs |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 307 | (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml) |
| 308 | |
| 309 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 310 | busybox: $(PWD_LIB) $(LIBBB_LIB) $(OBJECTS) |
Mark Whitley | 2b549c3 | 2001-03-27 18:22:41 +0000 | [diff] [blame] | 311 | $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(PWD_LIB) $(LIBBB_LIB) $(LIBRARIES) |
Erik Andersen | 7c4b2f3 | 2000-02-29 21:49:22 +0000 | [diff] [blame] | 312 | $(STRIP) |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 313 | |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 314 | # Without VPATH, rule expands to "/bin/sh busybox.mkll Config.h applets.h" |
| 315 | # but with VPATH, some or all of those file names are resolved to the |
| 316 | # directories in which they live. |
| 317 | busybox.links: busybox.mkll Config.h applets.h |
| 318 | - $(SHELL) $^ >$@ |
Eric Andersen | 1667fb4 | 1999-11-27 20:34:28 +0000 | [diff] [blame] | 319 | |
Mark Whitley | cc54d12 | 2000-07-10 23:07:54 +0000 | [diff] [blame] | 320 | nfsmount.o cmdedit.o: %.o: %.h |
Eric Andersen | b3d6e2d | 2001-03-13 22:57:56 +0000 | [diff] [blame] | 321 | sh.o: cmdedit.h |
Matt Kraai | 8392acd | 2001-01-18 03:03:09 +0000 | [diff] [blame] | 322 | $(OBJECTS): %.o: %.c Config.h busybox.h applets.h Makefile |
Mark Whitley | 4f76bb6 | 2001-02-27 19:53:48 +0000 | [diff] [blame] | 323 | $(CC) -I- $(CFLAGS) -I. $(patsubst %,-I%,$(subst :, ,$(BB_SRC_DIR))) -c $< -o $*.o |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 324 | |
Eric Andersen | 1cf8166 | 2001-02-17 15:55:15 +0000 | [diff] [blame] | 325 | $(PWD_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile |
| 326 | - mkdir -p $(PWD_GRP) |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 327 | $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o |
| 328 | |
Eric Andersen | c75586e | 2001-03-19 18:37:42 +0000 | [diff] [blame] | 329 | $(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile libbb/libbb.h |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 330 | - mkdir -p $(LIBBB) |
| 331 | $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -c $< -o $*.o |
| 332 | |
Eric Andersen | c27b954 | 2001-03-05 17:57:34 +0000 | [diff] [blame] | 333 | libpwd.a: $(PWD_OBJS) |
| 334 | $(AR) $(ARFLAGS) $@ $^ |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 335 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 336 | libbb.a: $(LIBBB_OBJS) |
| 337 | $(AR) $(ARFLAGS) $@ $^ |
| 338 | |
Eric Andersen | 8305006 | 2001-02-14 21:52:18 +0000 | [diff] [blame] | 339 | usage.o: usage.h |
| 340 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 341 | libbb/loop.o: libbb/loop.h |
Eric Andersen | 624cc77 | 2000-09-21 02:04:51 +0000 | [diff] [blame] | 342 | |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 343 | libbb/loop.h: mk_loop_h.sh |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 344 | @ $(SHELL) $< > $@ |
Eric Andersen | 624cc77 | 2000-09-21 02:04:51 +0000 | [diff] [blame] | 345 | |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 346 | test tests: |
Mark Whitley | d2117e9 | 2001-03-10 00:51:29 +0000 | [diff] [blame] | 347 | # old way of doing it |
| 348 | #cd tests && $(MAKE) all |
| 349 | # new way of doing it |
| 350 | cd tests && ./tester.sh |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 351 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 352 | clean: |
Eric Andersen | 20ea5c3 | 2000-11-29 22:08:35 +0000 | [diff] [blame] | 353 | - cd tests && $(MAKE) clean |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 354 | - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ |
| 355 | docs/busybox.lineo.com/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 356 | - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \ |
| 357 | docs/busybox.pdf docs/busybox.lineo.com/busybox.html |
Eric Andersen | af4ac77 | 2001-02-01 22:43:49 +0000 | [diff] [blame] | 358 | - rm -f multibuild.log Config.h.orig |
Eric Andersen | aad1a88 | 2001-03-16 22:47:14 +0000 | [diff] [blame] | 359 | - rm -rf docs/busybox _install libpwd.a libbb.a |
| 360 | - rm -f busybox.links libbb/loop.h *~ slist.mk core applet_source_list |
Eric Andersen | a183f05 | 2001-02-20 06:22:54 +0000 | [diff] [blame] | 361 | - find -name \*.o -exec rm -f {} \; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 362 | |
| 363 | distclean: clean |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 364 | - rm -f busybox |
| 365 | - cd tests && $(MAKE) distclean |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 366 | |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 367 | install: install.sh busybox busybox.links |
| 368 | $(SHELL) $< $(PREFIX) |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 369 | |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 370 | install-hardlinks: install.sh busybox busybox.links |
| 371 | $(SHELL) $< $(PREFIX) --hardlinks |
Eric Andersen | 51154ba | 2000-07-20 21:57:11 +0000 | [diff] [blame] | 372 | |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 373 | debug_pristine: |
| 374 | @ echo VPATH=\"$(VPATH)\" |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 375 | @ echo OBJECTS=\"$(OBJECTS)\" |
| 376 | |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 377 | dist release: distclean doc |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 378 | cd ..; \ |
| 379 | rm -rf busybox-$(VERSION); \ |
| 380 | cp -a busybox busybox-$(VERSION); \ |
| 381 | \ |
| 382 | find busybox-$(VERSION)/ -type d \ |
| 383 | -name CVS \ |
| 384 | -print \ |
Eric Andersen | 53b55ac | 2001-03-16 07:43:53 +0000 | [diff] [blame] | 385 | -exec rm -rf {} \; ; \ |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 386 | \ |
| 387 | find busybox-$(VERSION)/ -type f \ |
| 388 | -name .cvsignore \ |
| 389 | -print \ |
Eric Andersen | 53b55ac | 2001-03-16 07:43:53 +0000 | [diff] [blame] | 390 | -exec rm -f {} \; ; \ |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 391 | \ |
Eric Andersen | b0b732b | 2000-07-06 23:17:16 +0000 | [diff] [blame] | 392 | find busybox-$(VERSION)/ -type f \ |
| 393 | -name .\#* \ |
| 394 | -print \ |
Eric Andersen | 53b55ac | 2001-03-16 07:43:53 +0000 | [diff] [blame] | 395 | -exec rm -f {} \; ; \ |
Eric Andersen | b0b732b | 2000-07-06 23:17:16 +0000 | [diff] [blame] | 396 | \ |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 397 | tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 398 | |
| 399 | .PHONY: tags |
| 400 | tags: |
| 401 | ctags -R . |