Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 1 | # Makefile for busybox |
| 2 | # |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 3 | # Copyright (C) 1999-2000 Erik Andersen <andersee@debian.org> |
| 4 | # Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org> |
| 5 | # |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 6 | # This program is free software; you can redistribute it and/or modify |
| 7 | # it under the terms of the GNU General Public License as published by |
| 8 | # the Free Software Foundation; either version 2 of the License, or |
| 9 | # (at your option) any later version. |
| 10 | # |
| 11 | # This program is distributed in the hope that it will be useful, |
| 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | # General Public License for more details. |
| 15 | # |
| 16 | # You should have received a copy of the GNU General Public License |
| 17 | # along with this program; if not, write to the Free Software |
| 18 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | # |
| 20 | |
Erik Andersen | 7c4b2f3 | 2000-02-29 21:49:22 +0000 | [diff] [blame] | 21 | PROG := busybox |
Eric Andersen | b344c21 | 2000-10-27 18:09:53 +0000 | [diff] [blame] | 22 | VERSION := 0.48pre |
Erik Andersen | 1ad302a | 2000-03-24 00:54:46 +0000 | [diff] [blame] | 23 | BUILDTIME := $(shell TZ=UTC date --utc "+%Y.%m.%d-%H:%M%z") |
John Beppu | cbd6628 | 2000-04-13 22:57:45 +0000 | [diff] [blame] | 24 | export VERSION |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 25 | |
Eric Andersen | 20ea5c3 | 2000-11-29 22:08:35 +0000 | [diff] [blame] | 26 | # With a modern GNU make(1) (highly recommended, that's what all the |
| 27 | # developers use), all of the following configuration values can be |
| 28 | # overridden at the command line. For example: |
| 29 | # make CROSS=powerpc-linux- BB_SRC_DIR=$HOME/busybox PREFIX=/mnt/app |
| 30 | |
Eric Andersen | 51154ba | 2000-07-20 21:57:11 +0000 | [diff] [blame] | 31 | # If you want a static binary, turn this on. |
| 32 | DOSTATIC = false |
| 33 | |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 34 | # Set the following to `true' to make a debuggable build. |
| 35 | # Leave this set to `false' for production use. |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 36 | # eg: `make DODEBUG=true tests' |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 37 | # Do not enable this for production builds... |
Eric Andersen | 854e115 | 2000-06-13 06:57:56 +0000 | [diff] [blame] | 38 | DODEBUG = false |
Eric Andersen | 21943ce | 1999-10-13 18:04:51 +0000 | [diff] [blame] | 39 | |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 40 | # This enables compiling with dmalloc ( http://dmalloc.com/ ) |
| 41 | # which is an excellent public domain mem leak and malloc problem |
| 42 | # detector. To enable dmalloc, before running busybox you will |
| 43 | # want to first set up your environment. |
| 44 | # eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile` |
| 45 | # Do not enable this for production builds... |
| 46 | DODMALLOC = false |
| 47 | |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 48 | # If you want large file summit support, turn this on. |
| 49 | # This has no effect if you don't have a kernel with lfs |
| 50 | # support, and a system with libc-2.1.3 or later. |
| 51 | # Some of the programs that can benefit from lfs support |
| 52 | # are dd, gzip, mount, tar, and mkfs_minix. |
| 53 | # LFS allows you to use the above programs for files |
| 54 | # larger than 2GB! |
| 55 | DOLFS = false |
| 56 | |
Eric Andersen | 20ea5c3 | 2000-11-29 22:08:35 +0000 | [diff] [blame] | 57 | # 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^] | 58 | # Experimental and incomplete; tell the mailing list |
| 59 | # <busybox@opensource.lineo.com> if you do or don't like it so far. |
Eric Andersen | 20ea5c3 | 2000-11-29 22:08:35 +0000 | [diff] [blame] | 60 | BB_SRC_DIR = . |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 61 | |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 62 | # 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] | 63 | # to something more interesting, like "powerpc-linux-". |
| 64 | CROSS = |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 65 | CC = $(CROSS)gcc |
| 66 | STRIPTOOL = $(CROSS)strip |
| 67 | |
Erik Andersen | 499f65f | 2000-05-16 20:07:38 +0000 | [diff] [blame] | 68 | # To compile vs an alternative libc, you may need to use/adjust |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 69 | # the following lines to meet your needs. This is how I make |
| 70 | # busybox compile with uC-Libc... |
| 71 | #LIBCDIR=/home/andersen/CVS/uC-libc |
Eric Andersen | 1e03add | 2000-07-06 09:56:35 +0000 | [diff] [blame] | 72 | #GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp") |
Eric Andersen | c559d30 | 2000-10-27 18:26:18 +0000 | [diff] [blame] | 73 | #CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR) |
Eric Andersen | 28c88a9 | 2000-06-20 21:03:24 +0000 | [diff] [blame] | 74 | #LDFLAGS+=-nostdlib |
Eric Andersen | c559d30 | 2000-10-27 18:26:18 +0000 | [diff] [blame] | 75 | #LIBRARIES = $(LIBCDIR)/libc.a -lgcc |
Erik Andersen | 499f65f | 2000-05-16 20:07:38 +0000 | [diff] [blame] | 76 | |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 77 | #-------------------------------------------------------- |
Eric Andersen | d80e851 | 1999-11-16 00:46:00 +0000 | [diff] [blame] | 78 | |
Erik Andersen | 3d427ac | 2000-05-12 19:38:40 +0000 | [diff] [blame] | 79 | # use '-Os' optimization if available, else use -O2 |
| 80 | OPTIMIZATION = $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2>&1; \ |
| 81 | then echo "-Os"; else echo "-O2" ; fi) |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 82 | |
Pavel Roskin | 43c17b3 | 2000-07-28 19:41:32 +0000 | [diff] [blame] | 83 | WARNINGS = -Wall |
| 84 | |
Eric Andersen | 8a2e56c | 2000-09-21 02:23:30 +0000 | [diff] [blame] | 85 | ifeq ($(DOLFS),true) |
| 86 | # For large file summit support |
| 87 | CFLAGS+=-D_FILE_OFFSET_BITS=64 |
| 88 | endif |
Eric Andersen | 1d255be | 2000-07-19 17:33:54 +0000 | [diff] [blame] | 89 | ifeq ($(DODMALLOC),true) |
| 90 | # For testing mem leaks with dmalloc |
| 91 | CFLAGS+=-DDMALLOC |
| 92 | LIBRARIES = -ldmalloc |
| 93 | # Force debug=true, since this is useless when not debugging... |
| 94 | DODEBUG = true |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 95 | endif |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 96 | # -D_GNU_SOURCE is needed because environ is used in init.c |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 97 | ifeq ($(DODEBUG),true) |
Pavel Roskin | 43c17b3 | 2000-07-28 19:41:32 +0000 | [diff] [blame] | 98 | CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE |
Eric Andersen | 28c88a9 | 2000-06-20 21:03:24 +0000 | [diff] [blame] | 99 | LDFLAGS += |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 100 | STRIP = |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 101 | else |
Pavel Roskin | 43c17b3 | 2000-07-28 19:41:32 +0000 | [diff] [blame] | 102 | CFLAGS += $(WARNINGS) $(OPTIMIZATION) -fomit-frame-pointer -D_GNU_SOURCE |
Eric Andersen | 28c88a9 | 2000-06-20 21:03:24 +0000 | [diff] [blame] | 103 | LDFLAGS += -s |
Erik Andersen | 7c4b2f3 | 2000-02-29 21:49:22 +0000 | [diff] [blame] | 104 | STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG) |
Eric Andersen | 2c1faec | 2000-09-21 22:26:02 +0000 | [diff] [blame] | 105 | endif |
| 106 | ifeq ($(DOSTATIC),true) |
| 107 | LDFLAGS += --static |
| 108 | # |
| 109 | #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they |
| 110 | # work) to try and strip out any unused junk. Doesn't do much for me, |
| 111 | # but you may want to give it a shot... |
| 112 | # |
| 113 | #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \ |
| 114 | # -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \ |
| 115 | # --gc-sections -v >/dev/null && echo 1),1) |
| 116 | # CFLAGS += -ffunction-sections -fdata-sections |
| 117 | # LDFLAGS += --gc-sections |
| 118 | #endif |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 119 | endif |
| 120 | |
Eric Andersen | eded54b | 1999-11-12 08:03:23 +0000 | [diff] [blame] | 121 | ifndef $(PREFIX) |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 122 | PREFIX = `pwd`/_install |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 123 | endif |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 124 | |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 125 | # Additional complications due to support for pristine source dir. |
| 126 | # Config.h in the build directory should take precedence over the |
| 127 | # copy in BB_SRC_DIR, both during the compilation phase and the |
| 128 | # shell script that finds the list of object files. |
| 129 | # |
| 130 | # Work in progress by <ldoolitt@recycle.lbl.gov>. |
| 131 | # If it gets in your way, set DISABLE_VPATH=yes |
| 132 | ifeq ($(DISABLE_VPATH),yes) |
| 133 | CONFIG_H = Config.h |
| 134 | else |
| 135 | VPATH = .:$(BB_SRC_DIR) |
| 136 | CONFIG_LIST = $(addsuffix /Config.h,$(subst :, ,$(VPATH))) |
| 137 | CONFIG_H = $(word 1,$(shell ls -f -1 $(CONFIG_LIST) 2>/dev/null)) |
| 138 | CFLAGS += -I- $(patsubst %,-I%,$(subst :, ,$(VPATH))) |
| 139 | endif |
| 140 | |
| 141 | OBJECTS = $(shell $(BB_SRC_DIR)/busybox.sh $(CONFIG_H) $(BB_SRC_DIR)) busybox.o messages.o usage.o utility.o |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 142 | CFLAGS += -DBB_VER='"$(VERSION)"' |
| 143 | CFLAGS += -DBB_BT='"$(BUILDTIME)"' |
Erik Andersen | d387d01 | 1999-12-21 02:55:11 +0000 | [diff] [blame] | 144 | ifdef BB_INIT_SCRIPT |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 145 | CFLAGS += -DINIT_SCRIPT='"$(BB_INIT_SCRIPT)"' |
Erik Andersen | d387d01 | 1999-12-21 02:55:11 +0000 | [diff] [blame] | 146 | endif |
| 147 | |
Eric Andersen | 624cc77 | 2000-09-21 02:04:51 +0000 | [diff] [blame] | 148 | |
Matt Kraai | 810d38f | 2000-09-22 02:33:29 +0000 | [diff] [blame] | 149 | all: busybox busybox.links doc |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 150 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 151 | doc: olddoc |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 152 | |
| 153 | # Old Docs... |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 154 | olddoc: docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 155 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 156 | docs/BusyBox.txt: docs/busybox.pod |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 157 | @echo |
| 158 | @echo BusyBox Documentation |
| 159 | @echo |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 160 | - mkdir -p docs |
| 161 | - (cd $(BB_SRC_DIR); pod2text docs/busybox.pod) > docs/BusyBox.txt |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 162 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 163 | docs/BusyBox.1: docs/busybox.pod |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 164 | - mkdir -p docs |
| 165 | - (cd $(BB_SRC_DIR); pod2man --center=BusyBox \ |
| 166 | --release="version $(VERSION)" \ |
| 167 | docs/busybox.pod ) > docs/BusyBox.1 |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 168 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 169 | docs/BusyBox.html: docs/busybox.lineo.com/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 170 | - rm -f docs/BusyBox.html |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 171 | - ln -s docs/busybox.lineo.com/BusyBox.html docs/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 172 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 173 | docs/busybox.lineo.com/BusyBox.html: docs/busybox.pod |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 174 | - mkdir -p docs/busybox.lineo.com |
| 175 | - (cd $(BB_SRC_DIR); pod2html --noindex docs/busybox.pod ) \ |
| 176 | > docs/busybox.lineo.com/BusyBox.html |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 177 | - rm -f pod2html* |
| 178 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 179 | |
| 180 | # New docs based on DOCBOOK SGML |
Eric Andersen | 488aac2 | 2000-09-24 02:42:48 +0000 | [diff] [blame] | 181 | newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 182 | |
| 183 | docs/busybox.txt: docs/busybox.sgml |
| 184 | @echo |
| 185 | @echo BusyBox Documentation |
| 186 | @echo |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 187 | - mkdir -p docs |
| 188 | (cd docs; sgmltools -b txt $(BB_SRC_DIR)/busybox.sgml) |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 189 | |
| 190 | docs/busybox.dvi: docs/busybox.sgml |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 191 | - mkdir -p docs |
| 192 | (cd docs; sgmltools -b dvi $(BB_SRC_DIR)/busybox.sgml) |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 193 | |
Eric Andersen | a2c83d8 | 2000-07-07 20:52:56 +0000 | [diff] [blame] | 194 | docs/busybox.ps: docs/busybox.sgml |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 195 | - mkdir -p docs |
| 196 | (cd docs; sgmltools -b ps $(BB_SRC_DIR)/busybox.sgml) |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 197 | |
Eric Andersen | a2c83d8 | 2000-07-07 20:52:56 +0000 | [diff] [blame] | 198 | docs/busybox.pdf: docs/busybox.ps |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 199 | - mkdir -p docs |
| 200 | (cd docs; ps2pdf $(BB_SRC_DIR)/busybox.ps) |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 201 | |
Eric Andersen | 488aac2 | 2000-09-24 02:42:48 +0000 | [diff] [blame] | 202 | docs/busybox/busyboxdocumentation.html: docs/busybox.sgml |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 203 | - mkdir -p docs |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 204 | (cd docs/busybox.lineo.com; sgmltools -b html ../busybox.sgml) |
| 205 | |
| 206 | |
| 207 | |
Eric Andersen | 624cc77 | 2000-09-21 02:04:51 +0000 | [diff] [blame] | 208 | busybox: $(OBJECTS) |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 209 | $(CC) $(LDFLAGS) -o $@ $^ $(LIBRARIES) |
Erik Andersen | 7c4b2f3 | 2000-02-29 21:49:22 +0000 | [diff] [blame] | 210 | $(STRIP) |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 211 | |
Eric Andersen | caffb6e | 2000-09-25 21:28:07 +0000 | [diff] [blame] | 212 | busybox.links: Config.h |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 213 | -(cd $(BB_SRC_DIR); ./busybox.mkll ) | sort >$@ |
Eric Andersen | 1667fb4 | 1999-11-27 20:34:28 +0000 | [diff] [blame] | 214 | |
Mark Whitley | cc54d12 | 2000-07-10 23:07:54 +0000 | [diff] [blame] | 215 | nfsmount.o cmdedit.o: %.o: %.h |
Eric Andersen | 20ea5c3 | 2000-11-29 22:08:35 +0000 | [diff] [blame] | 216 | $(OBJECTS): %.o: %.c Config.h busybox.h Makefile |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 217 | |
Matt Kraai | 810d38f | 2000-09-22 02:33:29 +0000 | [diff] [blame] | 218 | utility.o: loop.h |
Eric Andersen | 624cc77 | 2000-09-21 02:04:51 +0000 | [diff] [blame] | 219 | |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 220 | loop.h: mk_loop_h.sh |
| 221 | @ sh $< |
Eric Andersen | 624cc77 | 2000-09-21 02:04:51 +0000 | [diff] [blame] | 222 | |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 223 | test tests: |
| 224 | cd tests && $(MAKE) all |
| 225 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 226 | clean: |
Eric Andersen | 20ea5c3 | 2000-11-29 22:08:35 +0000 | [diff] [blame] | 227 | - cd tests && $(MAKE) clean |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 228 | - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ |
| 229 | docs/busybox.lineo.com/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 230 | - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \ |
| 231 | docs/busybox.pdf docs/busybox.lineo.com/busybox.html |
Eric Andersen | 080d51b | 2000-08-01 22:44:32 +0000 | [diff] [blame] | 232 | - rm -rf docs/busybox _install |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 233 | - rm -f busybox.links loop.h *~ *.o core |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 234 | |
| 235 | distclean: clean |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 236 | - rm -f busybox |
| 237 | - cd tests && $(MAKE) distclean |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 238 | |
Eric Andersen | 0727458 | 1999-11-21 21:50:07 +0000 | [diff] [blame] | 239 | install: busybox busybox.links |
Eric Andersen | 80974fa | 1999-11-13 04:51:47 +0000 | [diff] [blame] | 240 | ./install.sh $(PREFIX) |
Eric Andersen | 17d49ef | 1999-10-06 20:25:32 +0000 | [diff] [blame] | 241 | |
Eric Andersen | 51154ba | 2000-07-20 21:57:11 +0000 | [diff] [blame] | 242 | install-hardlinks: busybox busybox.links |
| 243 | ./install.sh $(PREFIX) --hardlinks |
| 244 | |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame^] | 245 | debug_pristine: |
| 246 | @ echo VPATH=\"$(VPATH)\" |
| 247 | @ echo CONFIG_LIST=\"$(CONFIG_LIST)\" |
| 248 | @ echo CONFIG_H=\"$(CONFIG_H)\" |
| 249 | @ echo OBJECTS=\"$(OBJECTS)\" |
| 250 | |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 251 | dist release: distclean doc |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 252 | cd ..; \ |
| 253 | rm -rf busybox-$(VERSION); \ |
| 254 | cp -a busybox busybox-$(VERSION); \ |
| 255 | \ |
| 256 | find busybox-$(VERSION)/ -type d \ |
| 257 | -name CVS \ |
| 258 | -print \ |
| 259 | | xargs rm -rf; \ |
| 260 | \ |
| 261 | find busybox-$(VERSION)/ -type f \ |
| 262 | -name .cvsignore \ |
| 263 | -print \ |
| 264 | | xargs rm -f; \ |
| 265 | \ |
Eric Andersen | b0b732b | 2000-07-06 23:17:16 +0000 | [diff] [blame] | 266 | find busybox-$(VERSION)/ -type f \ |
| 267 | -name .\#* \ |
| 268 | -print \ |
| 269 | | xargs rm -f; \ |
| 270 | \ |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 271 | tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/; |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 272 | |
| 273 | .PHONY: tags |
| 274 | tags: |
| 275 | ctags -R . |