Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 1 | # Makefile for busybox |
| 2 | # |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3 | # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 4 | # |
Rob Landley | a7e14db | 2005-09-11 01:16:47 +0000 | [diff] [blame] | 5 | # Licensed under GPLv2, see the file LICENSE in this tarball for details. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 6 | # |
| 7 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 8 | #-------------------------------------------------------------- |
| 9 | # You shouldn't need to mess with anything beyond this point... |
| 10 | #-------------------------------------------------------------- |
| 11 | noconfig_targets := menuconfig config oldconfig randconfig \ |
Bernhard Reutner-Fischer | be5c103 | 2005-10-08 11:08:28 +0000 | [diff] [blame] | 12 | defconfig allyesconfig allnoconfig allbareconfig \ |
Bernhard Reutner-Fischer | a597211 | 2006-03-06 14:19:15 +0000 | [diff] [blame^] | 13 | clean distclean \ |
Eric Andersen | bcf2724 | 2005-02-13 22:15:59 +0000 | [diff] [blame] | 14 | release tags |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 15 | |
Bernhard Reutner-Fischer | a597211 | 2006-03-06 14:19:15 +0000 | [diff] [blame^] | 16 | # make-3.79.1 didn't support MAKEFILE_LIST |
| 17 | # for building out-of-tree, users of make-3.79 still have to pass top_srcdir= |
| 18 | # to make: make -f /srcs/busybox/Makefile top_srcdir=/srcs/busybox |
| 19 | ifndef MAKEFILE_LIST |
| 20 | MAKEFILE_LIST=. |
| 21 | endif |
Bernhard Reutner-Fischer | 1c943eb | 2005-09-26 16:01:43 +0000 | [diff] [blame] | 22 | # the toplevel sourcedir |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 23 | ifndef top_srcdir |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 24 | top_srcdir:=$(shell cd $(dir $(firstword $(MAKEFILE_LIST))) && pwd) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 25 | endif |
Bernhard Reutner-Fischer | 1c943eb | 2005-09-26 16:01:43 +0000 | [diff] [blame] | 26 | # toplevel directory of the object-tree |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 27 | ifndef top_builddir |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 28 | top_builddir:=$(CURDIR) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 29 | endif |
| 30 | |
Mike Frysinger | 9d6e083 | 2005-07-31 22:50:17 +0000 | [diff] [blame] | 31 | export srctree=$(top_srcdir) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 32 | vpath %/Config.in $(srctree) |
| 33 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 34 | DIRS:=applets archival archival/libunarchive coreutils console-tools \ |
| 35 | debianutils editors findutils init miscutils modutils networking \ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 36 | networking/libiproute networking/udhcp procps loginutils shell \ |
Mike Frysinger | d89e629 | 2005-04-24 05:07:59 +0000 | [diff] [blame] | 37 | sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 38 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 39 | SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS)) |
| 40 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 41 | # That's our default target when none is given on the command line |
| 42 | .PHONY: _all |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 43 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 44 | _all: all |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 45 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 46 | # see if we are in verbose mode |
| 47 | ifdef VERBOSE |
| 48 | CHECK_VERBOSE := -v |
| 49 | PACKAGE_BE_VERBOSE := $(VERBOSE) |
| 50 | endif |
| 51 | ifdef V |
| 52 | CHECK_VERBOSE := -v |
| 53 | PACKAGE_BE_VERBOSE := $(V) |
| 54 | endif |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 55 | |
| 56 | ifdef O |
| 57 | ifeq ("$(origin O)", "command line") |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 58 | PACKAGE_OUTPUTDIR := $(shell cd $(O) && pwd) |
| 59 | top_builddir := $(PACKAGE_OUTPUTDIR) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 60 | endif |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 61 | else |
| 62 | # If no alternate output-dir was specified, we build in cwd |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 63 | PACKAGE_OUTPUTDIR := $(top_builddir) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 64 | endif |
| 65 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 66 | ####################################################################### |
| 67 | # Try to workaround bugs in make |
| 68 | |
Bernhard Reutner-Fischer | a597211 | 2006-03-06 14:19:15 +0000 | [diff] [blame^] | 69 | # make-3.79.1 didn't understand order-only prerequisites ('|'). |
| 70 | # Just treat them as normal prerequisites. Note that this will lead to |
| 71 | # spurious rebuilds. |
| 72 | ifeq ($(MAKE_VERSION),3.79.1) |
| 73 | |: ; |
| 74 | endif |
| 75 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 76 | # Workaround for bugs in make-3.80 |
| 77 | # eval is broken if it is in a conditional |
| 78 | |
| 79 | #$ cat 3.80-eval-in-cond.mak |
| 80 | #all:: ; @echo it |
| 81 | #define Y |
| 82 | # all:: ; @echo worked |
| 83 | #endef |
| 84 | #ifdef BAR |
| 85 | #$(eval $(Y)) |
| 86 | #endif |
| 87 | #$ make -f 3.80-eval-in-cond.mak |
| 88 | #it |
| 89 | #$ make -f 3.80-eval-in-cond.mak BAR=set |
| 90 | #3.80-eval-in-cond.mak:5: *** missing `endif'. Stop. |
| 91 | |
| 92 | # This was fixed in December 2003. |
| 93 | define check_gcc |
| 94 | $(eval $(1)+=$(if $(2),$(if $(shell $(CC) $(2) -S -o /dev/null -xc /dev/null > /dev/null 2>&1 && echo y),$(2),$(if $(3),$(3))),$(if $(3),$(3)))) |
| 95 | endef |
| 96 | |
| 97 | define check_ld |
| 98 | $(eval $(1)+=$(if $(2),$(if $(shell $(LD) $(2) -o /dev/null -b binary /dev/null > /dev/null 2>&1 && echo y),$(shell echo \-Wl,$(2)),$(if $(3),$(3))),$(if $(3),$(3)))) |
| 99 | endef |
| 100 | |
| 101 | ####################################################################### |
| 102 | |
Bernhard Reutner-Fischer | 8c7a7e6 | 2005-10-13 10:40:18 +0000 | [diff] [blame] | 103 | -include $(top_srcdir)/Rules.mak |
Bernhard Reutner-Fischer | 8c7a7e6 | 2005-10-13 10:40:18 +0000 | [diff] [blame] | 104 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 105 | # Handle building out of tree |
| 106 | ifneq ($(top_builddir),$(top_srcdir)) |
| 107 | all_tree := $(patsubst %,$(top_builddir)/%,$(DIRS) scripts scripts/config include include/config) |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 108 | $(all_tree): |
| 109 | @mkdir -p "$@" |
| 110 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 111 | saved-output := $(PACKAGE_OUTPUTDIR) |
| 112 | |
| 113 | $(if $(wildcard $(PACKAGE_OUTPUTDIR)),, \ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 114 | $(error output directory "$(saved-output)" does not exist)) |
| 115 | |
Bernhard Reutner-Fischer | 9b6b894 | 2006-03-02 17:38:15 +0000 | [diff] [blame] | 116 | .PHONY: $(filter $(noconfig_targets),$(MAKECMDGOALS)) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 117 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 118 | $(PACKAGE_OUTPUTDIR)/Rules.mak: |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 119 | @echo > $@ |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 120 | @echo top_srcdir=$(top_srcdir) >> $@ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 121 | @echo top_builddir=$(PACKAGE_OUTPUTDIR) >> $@ |
| 122 | @echo include $$\(top_srcdir\)/Rules.mak >> $@ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 123 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 124 | $(PACKAGE_OUTPUTDIR)/Makefile: |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 125 | @echo > $@ |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 126 | @echo top_srcdir=$(top_srcdir) >> $@ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 127 | @echo top_builddir=$(PACKAGE_OUTPUTDIR) >> $@ |
| 128 | @echo PACKAGE_SOURCEDIR='$$(top_srcdir)' >> $@ |
| 129 | @echo include '$$(PACKAGE_SOURCEDIR)'/Makefile >> $@ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 130 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 131 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 132 | buildtree := $(all_tree) $(PACKAGE_OUTPUTDIR)/Rules.mak $(PACKAGE_OUTPUTDIR)/Makefile |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 133 | |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 134 | # We only need a copy of the Makefile for the config targets and reuse |
| 135 | # the rest from the source directory, i.e. we do not cp ALL_MAKEFILES. |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 136 | scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile | $(buildtree) |
| 137 | @cp $(top_srcdir)/scripts/config/Makefile $@ |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 138 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 139 | else |
| 140 | all_tree := include/config |
| 141 | $(all_tree): |
| 142 | @mkdir -p "$@" |
| 143 | buildtree := $(all_tree) |
| 144 | endif # ifneq ($(PACKAGE_OUTPUTDIR),$(top_srcdir)) |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 145 | |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 146 | help: |
| 147 | @echo 'Cleaning:' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 148 | @echo ' clean - delete temporary files created by build' |
| 149 | @echo ' distclean - delete all non-source files (including .config)' |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 150 | @echo |
| 151 | @echo 'Build:' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 152 | @echo ' all - Executable and documentation' |
| 153 | @echo ' busybox - the swiss-army executable' |
| 154 | @echo ' doc - docs/BusyBox.{txt,html,1}' |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 155 | @echo |
| 156 | @echo 'Configuration:' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 157 | @echo ' allnoconfig - disable all symbols in .config' |
Rob Landley | 1ab4c3d | 2006-02-08 18:50:17 +0000 | [diff] [blame] | 158 | @echo ' allyesconfig - enable all symbols in .config (see defconfig)' |
| 159 | @echo ' allbareconfig - enable all applets without any sub-features' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 160 | @echo ' config - text based configurator (of last resort)' |
Rob Landley | 1ab4c3d | 2006-02-08 18:50:17 +0000 | [diff] [blame] | 161 | @echo ' defconfig - set .config to largest generic configuration' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 162 | @echo ' menuconfig - interactive curses-based configurator' |
| 163 | @echo ' oldconfig - resolve any unresolved symbols in .config' |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 164 | @echo |
| 165 | @echo 'Installation:' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 166 | @echo ' install - install busybox into $prefix' |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 167 | @echo ' uninstall' |
| 168 | @echo |
| 169 | @echo 'Development:' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 170 | @echo ' check - run the test suite for all applets' |
| 171 | @echo ' randconfig - generate a random configuration' |
| 172 | @echo ' release - create a distribution tarball' |
| 173 | @echo ' sizes - show size of all enabled busybox symbols' |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 174 | @echo |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 175 | @echo 'Make flags:' |
| 176 | @echo ' V=<number> - print verbose make output (default: unset)' |
| 177 | @echo ' 0 print CC invocations' |
| 178 | @echo ' 1' |
| 179 | @echo ' 2 also print when make enters a directory' |
| 180 | @echo ' 3 also verbosely print shell invocations' |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 181 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 182 | ifneq ($(strip $(HAVE_DOT_CONFIG)),y) |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 183 | # Default target if none was requested explicitly |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 184 | all: defconfig menuconfig ; |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 185 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 186 | ifneq ($(filter-out $(noconfig_targets),$(MAKECMDGOALS)),) |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 187 | # warn if no configuration exists and we are asked to build a non-config target |
| 188 | .config: |
| 189 | @echo "" |
| 190 | @echo "No $(top_builddir)/$@ found!" |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 191 | @echo "Please refer to 'make help', section Configuration." |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 192 | @echo "" |
| 193 | @exit 1 |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 194 | else |
| 195 | # Avoid implicit rule to kick in by using an empty command |
| 196 | .config: $(buildtree) ; |
| 197 | endif |
| 198 | endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y) |
| 199 | |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 200 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 201 | # configuration |
| 202 | # --------------------------------------------------------------------------- |
| 203 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 204 | CONFIG_CONFIG_IN = $(top_srcdir)/Config.in |
| 205 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 206 | scripts/config/conf: scripts/config/Makefile |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 207 | $(Q)$(MAKE) -C scripts/config conf |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 208 | |
| 209 | scripts/config/mconf: scripts/config/Makefile |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 210 | $(Q)$(MAKE) -C scripts/config ncurses conf mconf |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 211 | |
| 212 | menuconfig: scripts/config/mconf |
| 213 | @./scripts/config/mconf $(CONFIG_CONFIG_IN) |
| 214 | |
| 215 | config: scripts/config/conf |
| 216 | @./scripts/config/conf $(CONFIG_CONFIG_IN) |
| 217 | |
| 218 | oldconfig: scripts/config/conf |
| 219 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
| 220 | |
| 221 | randconfig: scripts/config/conf |
| 222 | @./scripts/config/conf -r $(CONFIG_CONFIG_IN) |
| 223 | |
| 224 | allyesconfig: scripts/config/conf |
| 225 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 226 | @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER)=.*/# \1 is not set/" .config |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 227 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
| 228 | |
| 229 | allnoconfig: scripts/config/conf |
| 230 | @./scripts/config/conf -n $(CONFIG_CONFIG_IN) |
| 231 | |
Rob Landley | 1ab4c3d | 2006-02-08 18:50:17 +0000 | [diff] [blame] | 232 | # defconfig is allyesconfig minus any features that are specialized enough |
| 233 | # or cause enough behavior change that the user really should switch them on |
| 234 | # manually if that's what they want. Sort of "maximum sane config". |
Rob Landley | a167ec5 | 2006-01-31 02:42:50 +0000 | [diff] [blame] | 235 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 236 | defconfig: scripts/config/conf |
Rob Landley | a167ec5 | 2006-01-31 02:42:50 +0000 | [diff] [blame] | 237 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 238 | @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG.*|STATIC|SELINUX|BUILD_(AT_ONCE|LIBBUSYBOX)|FEATURE_(DEVFS|FULL_LIBBUSYBOX|SHARED_BUSYBOX|MTAB_SUPPORT|CLEAN_UP|UDHCP_DEBUG)|INSTALL_NO_USR))=.*/# \1 is not set/" .config |
Rob Landley | a167ec5 | 2006-01-31 02:42:50 +0000 | [diff] [blame] | 239 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
| 240 | |
Bernhard Reutner-Fischer | be5c103 | 2005-10-08 11:08:28 +0000 | [diff] [blame] | 241 | allbareconfig: scripts/config/conf |
| 242 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 243 | @$(SED) -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG|STATIC|SELINUX|DEVFSD|NC_GAPING_SECURITY_HOLE|BUILD_AT_ONCE)).*/# \1 is not set/" .config |
| 244 | @$(SED) -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config |
Bernhard Reutner-Fischer | be5c103 | 2005-10-08 11:08:28 +0000 | [diff] [blame] | 245 | @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config |
| 246 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
Bernhard Reutner-Fischer | a9d8913 | 2005-10-07 18:45:03 +0000 | [diff] [blame] | 247 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 248 | ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
Eric Andersen | 0081466 | 2001-04-26 23:29:10 +0000 | [diff] [blame] | 249 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 250 | # Load all Config.in |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 251 | -include $(top_builddir)/.config.cmd |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 252 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 253 | endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 254 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 255 | # convert $(DIRS) to upper case. Use sed instead of tr since we're already |
| 256 | # depending on it. |
| 257 | DIRS_UPPER:=$(shell echo $(DIRS) | $(SED) 'h;y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/') |
| 258 | |
Bernhard Reutner-Fischer | e3ec99d | 2006-03-02 18:23:13 +0000 | [diff] [blame] | 259 | # First populate the variables ..._OBJ-y et al |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 260 | $(foreach d,$(DIRS_UPPER),$(eval $(notdir $(d))-y:=)) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 261 | |
| 262 | include $(patsubst %,%/Makefile.in,$(SRC_DIRS)) |
| 263 | |
| 264 | # Then we need the dependencies for ..._OBJ |
| 265 | define dir_pattern.o |
| 266 | ifeq ($(os),.os) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 267 | $(if $($(1)_OBJ.os),$($(1)_OBJ.os:.os=.o): $(top_builddir)/$(2)/%.o: $(top_srcdir)/$(2)/%.c) |
| 268 | endif |
| 269 | $(if $($(1)_OBJ$(os)),$($(1)_OBJ$(os)): $(top_builddir)/$(2)/%$(os): $(top_srcdir)/$(2)/%.c) |
| 270 | $(if $($(1)_OBJ),$($(1)_OBJ): $(top_builddir)/$(2)/%.o: $(top_srcdir)/$(2)/%.c) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 271 | endef |
Bernhard Reutner-Fischer | a597211 | 2006-03-06 14:19:15 +0000 | [diff] [blame^] | 272 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 273 | # The actual directory patterns for .o* |
| 274 | $(foreach d,$(DIRS),$(eval $(call dir_pattern.o,$(subst /,_,$(d)),$(d)))) |
| 275 | |
Bernhard Reutner-Fischer | a597211 | 2006-03-06 14:19:15 +0000 | [diff] [blame^] | 276 | define file_lists |
| 277 | $($(1)$(2)) $($(1)$(2).o) $($(1)$(2).os) |
| 278 | endef |
| 279 | bin-obj-y:=$(subst .os,.o,$(foreach d,$(DIRS),$(call file_lists,$(subst /,_,$(d)),_OBJ))) |
| 280 | bin-mobj-y:=$(subst .osm,.om,$(foreach d,$(DIRS),$(call file_lists,$(subst /,_,$(d)),_MOBJ))) |
| 281 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 282 | ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
| 283 | # Finally pull in the dependencies (headers and other includes) of the |
| 284 | # individual object files |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 285 | -include $(top_builddir)/.depend |
| 286 | |
Bernhard Reutner-Fischer | c8e278f | 2006-03-02 18:13:05 +0000 | [diff] [blame] | 287 | $(top_builddir)/applets/applets.o: $(top_builddir)/.config |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 288 | # Everything is set. |
| 289 | |
| 290 | all: busybox busybox.links doc ; |
| 291 | |
| 292 | # Two modes of operation: legacy and IMA |
| 293 | # Legacy mode builds each object through an individual invocation of CC |
| 294 | # IMA compiles all sources at once (aka IPO aka IPA etc.) |
| 295 | |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 296 | ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 297 | # We are not building .o |
| 298 | bin-obj-y:= |
| 299 | bin-mobj-y:= |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 300 | # Which parts of the internal libs are requested? |
| 301 | # Per default we only want what was actually selected. |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 302 | # -a denotes all while -y denotes the selected ones. |
| 303 | ifeq ($(strip $(CONFIG_FEATURE_FULL_LIBBUSYBOX)),y) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 304 | LIBRARY_DEFINE:=$(LIBRARY_DEFINE-a) |
| 305 | LIBRARY_SRC :=$(LIBRARY_SRC-a) |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 306 | else # CONFIG_FEATURE_FULL_LIBBUSYBOX |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 307 | LIBRARY_DEFINE:=$(LIBRARY_DEFINE-y) |
| 308 | LIBRARY_SRC :=$(LIBRARY_SRC-y) |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 309 | endif # CONFIG_FEATURE_FULL_LIBBUSYBOX |
| 310 | APPLET_SRC:=$(APPLET_SRC-y) |
| 311 | APPLETS_DEFINE:=$(APPLETS_DEFINE-y) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 312 | else # CONFIG_BUILD_AT_ONCE |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 313 | # no --combine, build archives out of the individual .o |
| 314 | # This was the old way the binary was built. |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 315 | libbusybox-obj:=$(archival_libunarchive_OBJ$(os)) \ |
| 316 | $(networking_libiproute_OBJ$(os)) \ |
| 317 | $(libpwdgrp_MOBJ$(os)) \ |
| 318 | $(coreutils_libcoreutils_OBJ$(os)) \ |
| 319 | $(libbb_OBJ$(os)) $(libbb_MOBJ$(os)) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 320 | |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 321 | ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 322 | # linking against libbusybox, so don't build the .o already contained in the .so |
| 323 | bin-obj-y:=$(filter-out $(libbusybox-obj) $(libbusybox-obj:.os=.o),$(bin-obj-y)) |
| 324 | bin-mobj-y:=$(filter-out $(libbusybox-obj) $(libbusybox-obj:.osm=.om),$(bin-mobj-y)) |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 325 | endif # CONFIG_FEATURE_SHARED_BUSYBOX |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 326 | endif # CONFIG_BUILD_AT_ONCE |
| 327 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 328 | # build an .a to keep .hash et al small |
Bernhard Reutner-Fischer | cfc5d86 | 2006-03-02 09:44:32 +0000 | [diff] [blame] | 329 | ifneq ($(bin-obj-y)$(bin-mobj-y),) |
| 330 | applets.a:=$(bin-obj-y) $(bin-mobj-y) |
| 331 | endif |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 332 | ifdef applets.a |
| 333 | applets.a: $(applets.a) |
Bernhard Reutner-Fischer | 7ad83b4 | 2006-03-03 14:19:15 +0000 | [diff] [blame] | 334 | $(Q)-rm -f $(@) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 335 | $(do_ar) |
Bernhard Reutner-Fischer | 7ad83b4 | 2006-03-03 14:19:15 +0000 | [diff] [blame] | 336 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 337 | bin-obj.a=applets.a |
| 338 | endif |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 339 | |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 340 | ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y) |
| 341 | LD_LIBBUSYBOX:=libbusybox.so |
| 342 | LIBBUSYBOX_SONAME:=$(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION) |
| 343 | DO_INSTALL_LIBS:=$(LD_LIBBUSYBOX) \ |
| 344 | $(LD_LIBBUSYBOX).$(MAJOR_VERSION) \ |
| 345 | $(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION) |
| 346 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 347 | endif # CONFIG_BUILD_LIBBUSYBOX |
| 348 | |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 349 | ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y) |
| 350 | ifneq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 351 | # --combine but not linking against libbusybox, so compile lib*.c |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 352 | BUSYBOX_SRC := $(LIBRARY_SRC) |
| 353 | BUSYBOX_DEFINE:= $(LIBRARY_DEFINE) |
| 354 | endif # !CONFIG_FEATURE_SHARED_BUSYBOX |
| 355 | $(LIBBUSYBOX_SONAME): $(LIBRARY_SRC) |
| 356 | else # CONFIG_BUILD_AT_ONCE |
| 357 | $(LIBBUSYBOX_SONAME): $(libbusybox-obj) |
| 358 | endif # CONFIG_BUILD_AT_ONCE |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 359 | |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 360 | |
| 361 | ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y) |
| 362 | LDBUSYBOX:=-L$(top_builddir) -lbusybox |
| 363 | endif |
| 364 | |
| 365 | ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 366 | $(LIBBUSYBOX_SONAME): |
| 367 | ifndef MAJOR_VERSION |
| 368 | $(error MAJOR_VERSION needed for $@ is not defined) |
| 369 | endif |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 370 | $(do_link) $(LIB_CFLAGS) $(LIB_LDFLAGS) $(CFLAGS_COMBINE) \ |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 371 | -Wl,-soname=$(LD_LIBBUSYBOX).$(MAJOR_VERSION) \ |
Bernhard Reutner-Fischer | 08a1b50 | 2006-01-27 15:45:56 +0000 | [diff] [blame] | 372 | -Wl,-z,combreloc $(LIB_LDFLAGS) \ |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 373 | -o $(@) \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 374 | -Wl,--start-group \ |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 375 | $(LIBRARY_DEFINE) $(^) \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 376 | -Wl,--end-group |
| 377 | @rm -f $(DO_INSTALL_LIBS) |
| 378 | @for i in $(DO_INSTALL_LIBS); do ln -s $(@) $$i ; done |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 379 | $(do_strip) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 380 | |
| 381 | endif # ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y) |
| 382 | |
Bernhard Reutner-Fischer | cfc5d86 | 2006-03-02 09:44:32 +0000 | [diff] [blame] | 383 | busybox_unstripped: $(top_builddir)/.depend $(LIBBUSYBOX_SONAME) $(BUSYBOX_SRC) $(APPLET_SRC) $(bin-obj.a) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 384 | $(do_link) $(PROG_CFLAGS) $(PROG_LDFLAGS) $(CFLAGS_COMBINE) \ |
| 385 | $(foreach f,$(^:.o=.c),$(CFLAGS-$(notdir $(patsubst %/$,%,$(dir $(f))))-$(notdir $(f)))) \ |
| 386 | $(CFLAGS-$(@)) \ |
| 387 | -o $@ -Wl,--start-group \ |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 388 | $(APPLETS_DEFINE) $(APPLET_SRC) \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 389 | $(BUSYBOX_DEFINE) $(BUSYBOX_SRC) \ |
| 390 | $(bin-obj.a) \ |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 391 | $(LDBUSYBOX) $(LIBRARIES) \ |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 392 | -Wl,--end-group |
Bernhard Reutner-Fischer | cfc5d86 | 2006-03-02 09:44:32 +0000 | [diff] [blame] | 393 | |
| 394 | busybox: busybox_unstripped |
| 395 | $(Q)cp busybox_unstripped busybox |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 396 | $(do_strip) |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 397 | |
Rob Landley | a930bd3 | 2005-12-16 06:12:46 +0000 | [diff] [blame] | 398 | busybox.links: $(top_srcdir)/applets/busybox.mkll include/bb_config.h $(top_srcdir)/include/applets.h |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 399 | $(Q)-$(SHELL) $^ >$@ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 400 | |
Eric Andersen | 6302486 | 2004-10-13 17:45:57 +0000 | [diff] [blame] | 401 | install: $(top_srcdir)/applets/install.sh busybox busybox.links |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 402 | $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \ |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 403 | $(SHELL) $< $(PREFIX) $(INSTALL_OPTS) |
Eric Andersen | 1387910 | 2004-08-26 23:13:00 +0000 | [diff] [blame] | 404 | ifeq ($(strip $(CONFIG_FEATURE_SUID)),y) |
| 405 | @echo |
| 406 | @echo |
| 407 | @echo -------------------------------------------------- |
| 408 | @echo You will probably need to make your busybox binary |
| 409 | @echo setuid root to ensure all configured applets will |
| 410 | @echo work properly. |
| 411 | @echo -------------------------------------------------- |
| 412 | @echo |
| 413 | endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 414 | |
Glenn L McGrath | 87470de | 2003-08-29 12:20:31 +0000 | [diff] [blame] | 415 | uninstall: busybox.links |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 416 | rm -f $(PREFIX)/bin/busybox |
| 417 | for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 418 | ifneq ($(strip $(DO_INSTALL_LIBS)),n) |
| 419 | for i in $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS); do \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 420 | rm -f $(PREFIX)$$i; \ |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 421 | done |
| 422 | endif |
Eric Andersen | 1f30a41 | 2002-04-13 13:39:48 +0000 | [diff] [blame] | 423 | |
Mike Frysinger | ce0cf1d | 2005-09-24 05:47:52 +0000 | [diff] [blame] | 424 | check test: busybox |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 425 | bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \ |
Bernhard Reutner-Fischer | e34e878 | 2005-10-06 12:48:03 +0000 | [diff] [blame] | 426 | $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE) |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 427 | |
Bernhard Reutner-Fischer | cfc5d86 | 2006-03-02 09:44:32 +0000 | [diff] [blame] | 428 | sizes: busybox_unstripped |
| 429 | $(NM) --size-sort $(<) |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 430 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 431 | # Documentation Targets |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 432 | doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html ; |
John Beppu | 94e5054 | 2001-04-05 19:42:03 +0000 | [diff] [blame] | 433 | |
Mike Frysinger | f37529d | 2006-02-05 22:15:39 +0000 | [diff] [blame] | 434 | docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod $(top_srcdir)/docs/autodocifier.pl |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 435 | $(disp_doc) |
| 436 | $(Q)-mkdir -p docs |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 437 | $(Q)-( cat $(top_srcdir)/docs/busybox_header.pod ; \ |
| 438 | $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h ; \ |
| 439 | cat $(top_srcdir)/docs/busybox_footer.pod ; ) > docs/busybox.pod |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 440 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 441 | docs/BusyBox.txt: docs/busybox.pod |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 442 | $(disp_doc) |
| 443 | $(Q)-mkdir -p docs |
| 444 | $(Q)-pod2text $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 445 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 446 | docs/BusyBox.1: docs/busybox.pod |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 447 | $(disp_doc) |
| 448 | $(Q)-mkdir -p docs |
| 449 | $(Q)-pod2man --center=BusyBox --release="version $(VERSION)" \ |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 450 | $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 451 | |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 452 | docs/BusyBox.html: docs/busybox.net/BusyBox.html |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 453 | $(disp_doc) |
| 454 | $(Q)-mkdir -p docs |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 455 | $(Q)-rm -f docs/BusyBox.html |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 456 | $(Q)-cp docs/busybox.net/BusyBox.html docs/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 457 | |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 458 | docs/busybox.net/BusyBox.html: docs/busybox.pod |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 459 | $(Q)-mkdir -p docs/busybox.net |
| 460 | $(Q)-pod2html --noindex $< > \ |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 461 | docs/busybox.net/BusyBox.html |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 462 | $(Q)-rm -f pod2htm* |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 463 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 464 | # The nifty new dependency stuff |
"Vladimir N. Oleynik" | 5e60dc4 | 2005-09-12 12:33:27 +0000 | [diff] [blame] | 465 | scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 466 | $(do_link.h) |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 467 | |
"Vladimir N. Oleynik" | 6732af2 | 2006-02-15 12:29:37 +0000 | [diff] [blame] | 468 | DEP_INCLUDES := include/bb_config.h |
"Vladimir N. Oleynik" | cef737f | 2005-09-21 07:49:34 +0000 | [diff] [blame] | 469 | |
"Vladimir N. Oleynik" | cef737f | 2005-09-21 07:49:34 +0000 | [diff] [blame] | 470 | ifeq ($(strip $(CONFIG_BBCONFIG)),y) |
| 471 | DEP_INCLUDES += include/bbconfigopts.h |
| 472 | |
| 473 | include/bbconfigopts.h: .config |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 474 | $(disp_gen) |
| 475 | $(Q)$(top_srcdir)/scripts/config/mkconfigs > $@ |
"Vladimir N. Oleynik" | cef737f | 2005-09-21 07:49:34 +0000 | [diff] [blame] | 476 | endif |
| 477 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 478 | depend dep: $(top_builddir)/.depend ; |
| 479 | $(top_builddir)/.depend: $(buildtree) scripts/bb_mkdep $(DEP_INCLUDES) |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 480 | $(disp_gen) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 481 | $(Q)rm -f .depend |
| 482 | $(Q)scripts/bb_mkdep $(MKDEP_ARGS) \ |
| 483 | -I $(top_srcdir)/include $(top_srcdir) > $@.tmp |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 484 | $(Q)mv $@.tmp $@ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 485 | |
"Vladimir N. Oleynik" | 6732af2 | 2006-02-15 12:29:37 +0000 | [diff] [blame] | 486 | include/bb_config.h: .config |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 487 | $(disp_gen) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 488 | @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 489 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 490 | endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
| 491 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 492 | clean: |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 493 | - rm -f docs/busybox.dvi docs/busybox.ps \ |
Eric Andersen | f730088 | 2004-04-06 15:26:25 +0000 | [diff] [blame] | 494 | docs/busybox.pod docs/busybox.net/busybox.html \ |
Eric Andersen | 24e098a | 2003-08-22 20:53:38 +0000 | [diff] [blame] | 495 | docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \ |
| 496 | docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ |
"Vladimir N. Oleynik" | 9394b23 | 2006-01-23 11:24:58 +0000 | [diff] [blame] | 497 | docs/busybox.net/BusyBox.html busybox.links \ |
Bernhard Reutner-Fischer | a597211 | 2006-03-06 14:19:15 +0000 | [diff] [blame^] | 498 | libbusybox.so* \ |
Mike Frysinger | 33b45a0 | 2006-03-05 16:25:19 +0000 | [diff] [blame] | 499 | .config.old busybox busybox_unstripped |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 500 | - rm -r -f _install testsuite/links |
| 501 | - find . -name .\*.flags -exec rm -f {} \; |
| 502 | - find . -name \*.o -exec rm -f {} \; |
| 503 | - find . -name \*.om -exec rm -f {} \; |
| 504 | - find . -name \*.os -exec rm -f {} \; |
Mike Frysinger | 56ee779 | 2006-03-05 18:04:23 +0000 | [diff] [blame] | 505 | - find . -name \*.osm -exec rm -f {} \; |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 506 | - find . -name \*.a -exec rm -f {} \; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 507 | |
| 508 | distclean: clean |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 509 | - $(MAKE) -C scripts/config clean |
| 510 | - rm -f scripts/bb_mkdep |
| 511 | - rm -r -f include/config $(DEP_INCLUDES) |
| 512 | - find . -name .depend'*' -exec rm -f {} \; |
| 513 | rm -f .config .config.old .config.cmd |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 514 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 515 | release: distclean #doc |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 516 | cd ..; \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 517 | rm -r -f $(PROG)-$(VERSION); \ |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 518 | cp -a busybox $(PROG)-$(VERSION); \ |
| 519 | \ |
| 520 | find $(PROG)-$(VERSION)/ -type d \ |
Eric Andersen | 4306bb1 | 2005-08-17 00:03:23 +0000 | [diff] [blame] | 521 | -name .svn \ |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 522 | -print \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 523 | -exec rm -r -f {} \; ; \ |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 524 | \ |
| 525 | find $(PROG)-$(VERSION)/ -type f \ |
| 526 | -name .\#* \ |
| 527 | -print \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 528 | -exec rm -f {} \; ; \ |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 529 | \ |
Glenn L McGrath | 0874a61 | 2003-11-17 10:26:43 +0000 | [diff] [blame] | 530 | tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/; |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 531 | |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 532 | tags: |
| 533 | ctags -R . |
Matt Kraai | 4e05da8 | 2001-11-19 19:47:56 +0000 | [diff] [blame] | 534 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 535 | # keep these in sync with noconfig_targets above! |
| 536 | .PHONY: dummy subdirs check test depend dep buildtree \ |
| 537 | menuconfig config oldconfig randconfig \ |
| 538 | defconfig allyesconfig allnoconfig allbareconfig \ |
| 539 | clean distclean \ |
| 540 | release tags |