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