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