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 \ |
| 12 | defconfig allyesconfig allnoconfig clean distclean \ |
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 |
| 17 | top_srcdir=$(CURDIR) |
| 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 |
| 21 | top_builddir=$(CURDIR) |
| 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 |
| 36 | _all: |
| 37 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 38 | CONFIG_CONFIG_IN = $(top_srcdir)/sysdeps/$(TARGET_OS)/Config.in |
| 39 | CONFIG_DEFCONFIG = $(top_srcdir)/sysdeps/$(TARGET_OS)/defconfig |
| 40 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 41 | ifeq ($(KBUILD_SRC),) |
| 42 | |
| 43 | ifdef O |
| 44 | ifeq ("$(origin O)", "command line") |
| 45 | KBUILD_OUTPUT := $(O) |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame^] | 46 | top_builddir := $(O) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 47 | endif |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 48 | else |
| 49 | # If no alternate output-dir was specified, we build in cwd |
| 50 | # We are using KBUILD_OUTPUT nevertheless to make sure that we create |
| 51 | # Rules.mak and the toplevel Makefile, in case they don't exist. |
| 52 | KBUILD_OUTPUT := $(top_builddir) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 53 | endif |
| 54 | |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame^] | 55 | # All object directories. |
| 56 | OBJ_DIRS := $(DIRS) |
| 57 | all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include) |
| 58 | all_tree: $(all_tree) |
| 59 | $(all_tree): |
| 60 | @mkdir -p "$@" |
| 61 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 62 | ifneq ($(KBUILD_OUTPUT),) |
| 63 | # Invoke a second make in the output directory, passing relevant variables |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame^] | 64 | # Check that the output directory actually exists |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 65 | saved-output := $(KBUILD_OUTPUT) |
| 66 | KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd) |
| 67 | $(if $(wildcard $(KBUILD_OUTPUT)),, \ |
| 68 | $(error output directory "$(saved-output)" does not exist)) |
| 69 | |
| 70 | .PHONY: $(MAKECMDGOALS) |
| 71 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 72 | $(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] | 73 | $(MAKE) -C $(KBUILD_OUTPUT) \ |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 74 | top_srcdir=$(top_srcdir) \ |
| 75 | top_builddir=$(top_builddir) \ |
| 76 | KBUILD_SRC=$(top_srcdir) \ |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame^] | 77 | PREFIX=$(PREFIX) \ |
| 78 | CROSS=$(CROSS) \ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 79 | -f $(CURDIR)/Makefile $@ |
| 80 | |
| 81 | $(KBUILD_OUTPUT)/Rules.mak: |
| 82 | @echo > $@ |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 83 | @echo top_srcdir=$(top_srcdir) >> $@ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 84 | @echo top_builddir=$(KBUILD_OUTPUT) >> $@ |
| 85 | @echo include $(top_srcdir)/Rules.mak >> $@ |
| 86 | |
| 87 | $(KBUILD_OUTPUT)/Makefile: |
| 88 | @echo > $@ |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 89 | @echo top_srcdir=$(top_srcdir) >> $@ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 90 | @echo top_builddir=$(KBUILD_OUTPUT) >> $@ |
| 91 | @echo KBUILD_SRC='$$(top_srcdir)' >> $@ |
| 92 | @echo include '$$(KBUILD_SRC)'/Makefile >> $@ |
| 93 | |
| 94 | # Leave processing to above invocation of make |
| 95 | skip-makefile := 1 |
| 96 | endif # ifneq ($(KBUILD_OUTPUT),) |
| 97 | endif # ifeq ($(KBUILD_SRC),) |
| 98 | |
| 99 | ifeq ($(skip-makefile),) |
| 100 | |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame^] | 101 | # We only need a copy of the Makefile for the config targets and reuse |
| 102 | # the rest from the source directory, i.e. we do not cp ALL_MAKEFILES. |
| 103 | scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile |
| 104 | cp $< $@ |
| 105 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 106 | _all: all |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 107 | |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 108 | help: |
| 109 | @echo 'Cleaning:' |
| 110 | @echo ' clean - delete temporary files created by build' |
| 111 | @echo ' distclean - delete all non-source files (including .config)' |
| 112 | @echo |
| 113 | @echo 'Build:' |
| 114 | @echo ' all - Executable and documentation' |
| 115 | @echo ' busybox - the swiss-army executable' |
| 116 | @echo ' doc - docs/BusyBox.{txt,html,1}' |
| 117 | @echo |
| 118 | @echo 'Configuration:' |
| 119 | @echo ' allnoconfig - disable all symbols in .config' |
| 120 | @echo ' allyesconfig - enable (almost) all symbols in .config' |
| 121 | @echo ' config - text based configurator (of last resort).' |
| 122 | @echo ' defconfig - set .config to defaults' |
| 123 | @echo ' menuconfig - interactive curses-based configurator' |
| 124 | @echo ' oldconfig - resolve any unresolved symbols in .config' |
| 125 | @echo |
| 126 | @echo 'Installation:' |
| 127 | @echo ' install - install busybox and symlinks into $prefix' |
| 128 | @echo ' install-hardlinks - install busybox and hardlinks into $prefix' |
| 129 | @echo ' uninstall' |
| 130 | @echo |
| 131 | @echo 'Development:' |
| 132 | @echo ' check - run the test suite for all applets' |
| 133 | @echo ' randconfig - generate a random configuration' |
| 134 | @echo ' release - create a distribution tarball' |
| 135 | @echo ' sizes - show size of all enabled busybox symbols' |
| 136 | @echo |
| 137 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 138 | |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame^] | 139 | include $(top_srcdir)/Rules.mak |
| 140 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 141 | ifneq ($(strip $(HAVE_DOT_CONFIG)),y) |
| 142 | |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame^] | 143 | # Default target if none was requested explicitly |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 144 | all: menuconfig |
| 145 | |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame^] | 146 | # warn if no configuration exists and we are asked to build a non-config target |
| 147 | .config: |
| 148 | @echo "" |
| 149 | @echo "No $(top_builddir)/$@ found!" |
| 150 | @echo "Please refer to 'make help', section Configuration." |
| 151 | @echo "" |
| 152 | @exit 1 |
| 153 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 154 | # configuration |
| 155 | # --------------------------------------------------------------------------- |
| 156 | |
| 157 | scripts/config/conf: scripts/config/Makefile |
| 158 | $(MAKE) -C scripts/config conf |
| 159 | -@if [ ! -f .config ] ; then \ |
| 160 | cp $(CONFIG_DEFCONFIG) .config; \ |
| 161 | fi |
| 162 | |
| 163 | scripts/config/mconf: scripts/config/Makefile |
| 164 | $(MAKE) -C scripts/config ncurses conf mconf |
| 165 | -@if [ ! -f .config ] ; then \ |
| 166 | cp $(CONFIG_DEFCONFIG) .config; \ |
| 167 | fi |
| 168 | |
| 169 | menuconfig: scripts/config/mconf |
| 170 | @./scripts/config/mconf $(CONFIG_CONFIG_IN) |
| 171 | |
| 172 | config: scripts/config/conf |
| 173 | @./scripts/config/conf $(CONFIG_CONFIG_IN) |
| 174 | |
| 175 | oldconfig: scripts/config/conf |
| 176 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
| 177 | |
| 178 | randconfig: scripts/config/conf |
| 179 | @./scripts/config/conf -r $(CONFIG_CONFIG_IN) |
| 180 | |
| 181 | allyesconfig: scripts/config/conf |
| 182 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) |
| 183 | sed -i -r -e "s/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX).*/# \1 is not set/" .config |
| 184 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
| 185 | |
| 186 | allnoconfig: scripts/config/conf |
| 187 | @./scripts/config/conf -n $(CONFIG_CONFIG_IN) |
| 188 | |
| 189 | defconfig: scripts/config/conf |
| 190 | @./scripts/config/conf -d $(CONFIG_CONFIG_IN) |
| 191 | |
| 192 | else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y) |
Eric Andersen | 0081466 | 2001-04-26 23:29:10 +0000 | [diff] [blame] | 193 | |
Eric Andersen | d4fcb80 | 2003-07-15 00:28:26 +0000 | [diff] [blame] | 194 | all: busybox busybox.links doc |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 195 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 196 | # In this section, we need .config |
| 197 | -include $(top_builddir)/.config.cmd |
| 198 | include $(patsubst %,%/Makefile.in, $(SRC_DIRS)) |
| 199 | -include $(top_builddir)/.depend |
| 200 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 201 | endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y) |
| 202 | |
| 203 | busybox: .depend $(libraries-y) |
Mike Frysinger | 6745184 | 2005-09-27 04:06:39 +0000 | [diff] [blame] | 204 | $(CC) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 205 | $(STRIPCMD) $@ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 206 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 207 | busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 208 | - $(SHELL) $^ >$@ |
| 209 | |
Eric Andersen | 6302486 | 2004-10-13 17:45:57 +0000 | [diff] [blame] | 210 | install: $(top_srcdir)/applets/install.sh busybox busybox.links |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 211 | $(SHELL) $< $(PREFIX) |
Eric Andersen | 1387910 | 2004-08-26 23:13:00 +0000 | [diff] [blame] | 212 | ifeq ($(strip $(CONFIG_FEATURE_SUID)),y) |
| 213 | @echo |
| 214 | @echo |
| 215 | @echo -------------------------------------------------- |
| 216 | @echo You will probably need to make your busybox binary |
| 217 | @echo setuid root to ensure all configured applets will |
| 218 | @echo work properly. |
| 219 | @echo -------------------------------------------------- |
| 220 | @echo |
| 221 | endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 222 | |
Glenn L McGrath | 87470de | 2003-08-29 12:20:31 +0000 | [diff] [blame] | 223 | uninstall: busybox.links |
| 224 | rm -f $(PREFIX)/bin/busybox |
| 225 | for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done |
Eric Andersen | 1f30a41 | 2002-04-13 13:39:48 +0000 | [diff] [blame] | 226 | |
Peter Kjellerstedt | 88da3ef | 2004-11-02 09:05:22 +0000 | [diff] [blame] | 227 | install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 228 | $(SHELL) $< $(PREFIX) --hardlinks |
| 229 | |
Bernhard Reutner-Fischer | e34e878 | 2005-10-06 12:48:03 +0000 | [diff] [blame] | 230 | # see if we are in verbose mode |
| 231 | KBUILD_VERBOSE := |
| 232 | ifdef V |
| 233 | ifeq ("$(origin V)", "command line") |
| 234 | KBUILD_VERBOSE := $(V) |
| 235 | endif |
| 236 | endif |
| 237 | ifneq ($(strip $(KBUILD_VERBOSE)),) |
| 238 | CHECK_VERBOSE := -v |
| 239 | endif |
Mike Frysinger | ce0cf1d | 2005-09-24 05:47:52 +0000 | [diff] [blame] | 240 | check test: busybox |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 241 | bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \ |
Bernhard Reutner-Fischer | e34e878 | 2005-10-06 12:48:03 +0000 | [diff] [blame] | 242 | $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE) |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 243 | |
Rob Landley | d9f7165 | 2005-08-28 08:24:21 +0000 | [diff] [blame] | 244 | sizes: |
Rob Landley | ac692b2 | 2005-09-01 02:40:21 +0000 | [diff] [blame] | 245 | -rm -f busybox |
| 246 | $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \ |
| 247 | -f $(top_srcdir)/Makefile STRIPCMD=/bin/true |
Rob Landley | d9f7165 | 2005-08-28 08:24:21 +0000 | [diff] [blame] | 248 | nm --size-sort busybox |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 249 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 250 | # Documentation Targets |
Eric Andersen | f730088 | 2004-04-06 15:26:25 +0000 | [diff] [blame] | 251 | 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] | 252 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 253 | docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod |
| 254 | -mkdir -p docs |
| 255 | - ( cat $(top_srcdir)/docs/busybox_header.pod; \ |
| 256 | $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h; \ |
| 257 | cat $(top_srcdir)/docs/busybox_footer.pod ) > docs/busybox.pod |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 258 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 259 | docs/BusyBox.txt: docs/busybox.pod |
Mike Frysinger | c99e2c5 | 2005-07-28 22:14:35 +0000 | [diff] [blame] | 260 | $(SECHO) |
| 261 | $(SECHO) BusyBox Documentation |
| 262 | $(SECHO) |
Eric Andersen | 29be79c | 2000-12-01 22:57:44 +0000 | [diff] [blame] | 263 | -mkdir -p docs |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 264 | -pod2text $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 265 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 266 | docs/BusyBox.1: docs/busybox.pod |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 267 | - mkdir -p docs |
Eric Andersen | 29be79c | 2000-12-01 22:57:44 +0000 | [diff] [blame] | 268 | - pod2man --center=BusyBox --release="version $(VERSION)" \ |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 269 | $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 270 | |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 271 | docs/BusyBox.html: docs/busybox.net/BusyBox.html |
Eric Andersen | 1cf8166 | 2001-02-17 15:55:15 +0000 | [diff] [blame] | 272 | - mkdir -p docs |
Eric Andersen | e2f6e12 | 2000-12-01 19:55:04 +0000 | [diff] [blame] | 273 | -@ rm -f docs/BusyBox.html |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 274 | -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 275 | |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 276 | docs/busybox.net/BusyBox.html: docs/busybox.pod |
| 277 | -@ mkdir -p docs/busybox.net |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 278 | - pod2html --noindex $< > \ |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 279 | docs/busybox.net/BusyBox.html |
Eric Andersen | 3676374 | 2001-04-24 21:46:07 +0000 | [diff] [blame] | 280 | -@ rm -f pod2htm* |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 281 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 282 | # The nifty new buildsystem stuff |
"Vladimir N. Oleynik" | 5e60dc4 | 2005-09-12 12:33:27 +0000 | [diff] [blame] | 283 | scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 284 | $(HOSTCC) $(HOSTCFLAGS) -o $@ $< |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 285 | |
Mike Frysinger | de242f6 | 2005-09-25 04:53:35 +0000 | [diff] [blame] | 286 | DEP_INCLUDES := include/config.h include/bb_config.h |
"Vladimir N. Oleynik" | cef737f | 2005-09-21 07:49:34 +0000 | [diff] [blame] | 287 | |
"Vladimir N. Oleynik" | cef737f | 2005-09-21 07:49:34 +0000 | [diff] [blame] | 288 | ifeq ($(strip $(CONFIG_BBCONFIG)),y) |
| 289 | DEP_INCLUDES += include/bbconfigopts.h |
| 290 | |
| 291 | include/bbconfigopts.h: .config |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 292 | $(top_srcdir)/scripts/config/mkconfigs > $@ |
"Vladimir N. Oleynik" | cef737f | 2005-09-21 07:49:34 +0000 | [diff] [blame] | 293 | endif |
| 294 | |
Mike Frysinger | de242f6 | 2005-09-25 04:53:35 +0000 | [diff] [blame] | 295 | depend dep $(top_builddir)/.depend: .depend |
"Vladimir N. Oleynik" | cef737f | 2005-09-21 07:49:34 +0000 | [diff] [blame] | 296 | .depend: scripts/bb_mkdep $(DEP_INCLUDES) |
"Vladimir N. Oleynik" | 5e60dc4 | 2005-09-12 12:33:27 +0000 | [diff] [blame] | 297 | @rm -f .depend |
| 298 | @mkdir -p include/config |
Bernhard Reutner-Fischer | 14b1c1d | 2005-10-05 14:52:21 +0000 | [diff] [blame] | 299 | scripts/bb_mkdep -c include/config.h -c include/bb_config.h -I $(top_srcdir)/include $(top_srcdir)/ > $@.tmp |
Mike Frysinger | 016d628 | 2005-09-24 06:15:23 +0000 | [diff] [blame] | 300 | mv $@.tmp $@ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 301 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 302 | include/config.h: .config |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 303 | @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \ |
Glenn L McGrath | b19c73d | 2003-08-29 13:25:55 +0000 | [diff] [blame] | 304 | $(MAKE) -C scripts/config conf; \ |
Eric Andersen | 3cd2760 | 2001-10-24 07:58:02 +0000 | [diff] [blame] | 305 | fi; |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 306 | @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 307 | |
Rob Landley | 193c8c7 | 2005-07-27 06:55:36 +0000 | [diff] [blame] | 308 | include/bb_config.h: include/config.h |
"Vladimir N. Oleynik" | 5e60dc4 | 2005-09-12 12:33:27 +0000 | [diff] [blame] | 309 | @echo -e "#ifndef BB_CONFIG_H\n#define BB_CONFIG_H" > $@ |
| 310 | @sed -e 's/#undef CONFIG_\(.*\)/#define ENABLE_\1 0/' \ |
Rob Landley | ef8f423 | 2005-07-28 19:36:33 +0000 | [diff] [blame] | 311 | -e 's/#define CONFIG_\(.*\)/#define CONFIG_\1\n#define ENABLE_\1/' \ |
| 312 | < $< >> $@ |
"Vladimir N. Oleynik" | 5e60dc4 | 2005-09-12 12:33:27 +0000 | [diff] [blame] | 313 | @echo "#endif" >> $@ |
Rob Landley | 193c8c7 | 2005-07-27 06:55:36 +0000 | [diff] [blame] | 314 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 315 | clean: |
Rob Landley | a7e14db | 2005-09-11 01:16:47 +0000 | [diff] [blame] | 316 | - $(MAKE) -C scripts/config $@ |
Eric Andersen | f730088 | 2004-04-06 15:26:25 +0000 | [diff] [blame] | 317 | - rm -f docs/busybox.dvi docs/busybox.ps \ |
| 318 | docs/busybox.pod docs/busybox.net/busybox.html \ |
Eric Andersen | 24e098a | 2003-08-22 20:53:38 +0000 | [diff] [blame] | 319 | docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \ |
| 320 | docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ |
| 321 | docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \ |
Rob Landley | 90252bb | 2005-09-20 14:09:57 +0000 | [diff] [blame] | 322 | .config.old busybox |
| 323 | - rm -rf _install testsuite/links |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 324 | - find . -name .\*.flags -exec rm -f {} \; |
Eric Andersen | 8771517 | 2002-07-31 03:45:05 +0000 | [diff] [blame] | 325 | - find . -name \*.o -exec rm -f {} \; |
| 326 | - find . -name \*.a -exec rm -f {} \; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 327 | |
| 328 | distclean: clean |
"Vladimir N. Oleynik" | 5e60dc4 | 2005-09-12 12:33:27 +0000 | [diff] [blame] | 329 | - rm -f scripts/bb_mkdep |
Mike Frysinger | f9bd87b | 2005-08-11 21:59:52 +0000 | [diff] [blame] | 330 | - rm -rf include/config include/config.h include/bb_config.h include/bbconfigopts.h |
Eric Andersen | a995343 | 2003-01-27 22:11:59 +0000 | [diff] [blame] | 331 | - find . -name .depend -exec rm -f {} \; |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 332 | rm -f .config .config.old .config.cmd |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 333 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 334 | release: distclean #doc |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 335 | cd ..; \ |
| 336 | rm -rf $(PROG)-$(VERSION); \ |
| 337 | cp -a busybox $(PROG)-$(VERSION); \ |
| 338 | \ |
| 339 | find $(PROG)-$(VERSION)/ -type d \ |
Eric Andersen | 4306bb1 | 2005-08-17 00:03:23 +0000 | [diff] [blame] | 340 | -name .svn \ |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 341 | -print \ |
| 342 | -exec rm -rf {} \; ; \ |
| 343 | \ |
| 344 | find $(PROG)-$(VERSION)/ -type f \ |
| 345 | -name .\#* \ |
| 346 | -print \ |
| 347 | -exec rm -f {} \; ; \ |
| 348 | \ |
Glenn L McGrath | 0874a61 | 2003-11-17 10:26:43 +0000 | [diff] [blame] | 349 | tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/; |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 350 | |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 351 | tags: |
| 352 | ctags -R . |
Matt Kraai | 4e05da8 | 2001-11-19 19:47:56 +0000 | [diff] [blame] | 353 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 354 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 355 | endif # ifeq ($(skip-makefile),) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 356 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 357 | .PHONY: dummy subdirs release distclean clean config oldconfig \ |
| 358 | menuconfig tags check test depend buildtree |