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