blob: d213dc597cb9502b3f62efc717d0bafa490c43c7 [file] [log] [blame]
Eric Andersenc4996011999-10-20 22:08:37 +00001# Makefile for busybox
2#
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Erik Andersen9ffdaa62000-02-11 21:55:04 +00004#
Rob Landleya7e14db2005-09-11 01:16:47 +00005# Licensed under GPLv2, see the file LICENSE in this tarball for details.
Eric Andersenc4996011999-10-20 22:08:37 +00006#
7
Eric Andersenc9f20d92002-12-05 08:41:41 +00008#--------------------------------------------------------------
9# You shouldn't need to mess with anything beyond this point...
10#--------------------------------------------------------------
11noconfig_targets := menuconfig config oldconfig randconfig \
Bernhard Reutner-Fischerbe5c1032005-10-08 11:08:28 +000012 defconfig allyesconfig allnoconfig allbareconfig \
Bernhard Reutner-Fischera9d89132005-10-07 18:45:03 +000013 clean distclean \
Eric Andersenbcf27242005-02-13 22:15:59 +000014 release tags
Eric Andersen7daa0762004-10-08 07:46:08 +000015
Bernhard Reutner-Fischer1c943eb2005-09-26 16:01:43 +000016# the toplevel sourcedir
Eric Andersen7daa0762004-10-08 07:46:08 +000017ifndef top_srcdir
18top_srcdir=$(CURDIR)
19endif
Bernhard Reutner-Fischer1c943eb2005-09-26 16:01:43 +000020# toplevel directory of the object-tree
Eric Andersen7daa0762004-10-08 07:46:08 +000021ifndef top_builddir
22top_builddir=$(CURDIR)
23endif
24
Mike Frysinger9d6e0832005-07-31 22:50:17 +000025export srctree=$(top_srcdir)
Eric Andersen7daa0762004-10-08 07:46:08 +000026vpath %/Config.in $(srctree)
27
Glenn L McGrath3238ea12003-02-15 10:53:40 +000028DIRS:=applets archival archival/libunarchive coreutils console-tools \
29 debianutils editors findutils init miscutils modutils networking \
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000030 networking/libiproute networking/udhcp procps loginutils shell \
Mike Frysingerd89e6292005-04-24 05:07:59 +000031 sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb
Eric Andersenab050f52001-01-27 06:01:43 +000032
Eric Andersen7daa0762004-10-08 07:46:08 +000033SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS))
34
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000035# That's our default target when none is given on the command line
36.PHONY: _all
37_all:
38
Eric Andersen7daa0762004-10-08 07:46:08 +000039CONFIG_CONFIG_IN = $(top_srcdir)/sysdeps/$(TARGET_OS)/Config.in
40CONFIG_DEFCONFIG = $(top_srcdir)/sysdeps/$(TARGET_OS)/defconfig
41
Eric Andersen7daa0762004-10-08 07:46:08 +000042ifeq ($(KBUILD_SRC),)
43
44ifdef O
45 ifeq ("$(origin O)", "command line")
46 KBUILD_OUTPUT := $(O)
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +000047 top_builddir := $(O)
Eric Andersen7daa0762004-10-08 07:46:08 +000048 endif
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000049else
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 Andersen7daa0762004-10-08 07:46:08 +000054endif
55
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +000056# All object directories.
57OBJ_DIRS := $(DIRS)
58all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include)
59all_tree: $(all_tree)
60$(all_tree):
61 @mkdir -p "$@"
62
Eric Andersen7daa0762004-10-08 07:46:08 +000063ifneq ($(KBUILD_OUTPUT),)
64# Invoke a second make in the output directory, passing relevant variables
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +000065# Check that the output directory actually exists
Eric Andersen7daa0762004-10-08 07:46:08 +000066saved-output := $(KBUILD_OUTPUT)
67KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
68$(if $(wildcard $(KBUILD_OUTPUT)),, \
69 $(error output directory "$(saved-output)" does not exist))
70
71.PHONY: $(MAKECMDGOALS)
72
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000073$(filter-out _all,$(MAKECMDGOALS)) _all: $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUTPUT)/Makefile all_tree
Eric Andersen7daa0762004-10-08 07:46:08 +000074 $(MAKE) -C $(KBUILD_OUTPUT) \
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000075 top_srcdir=$(top_srcdir) \
76 top_builddir=$(top_builddir) \
77 KBUILD_SRC=$(top_srcdir) \
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +000078 PREFIX=$(PREFIX) \
79 CROSS=$(CROSS) \
Eric Andersen7daa0762004-10-08 07:46:08 +000080 -f $(CURDIR)/Makefile $@
81
82$(KBUILD_OUTPUT)/Rules.mak:
83 @echo > $@
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000084 @echo top_srcdir=$(top_srcdir) >> $@
Eric Andersen7daa0762004-10-08 07:46:08 +000085 @echo top_builddir=$(KBUILD_OUTPUT) >> $@
86 @echo include $(top_srcdir)/Rules.mak >> $@
87
88$(KBUILD_OUTPUT)/Makefile:
89 @echo > $@
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +000090 @echo top_srcdir=$(top_srcdir) >> $@
Eric Andersen7daa0762004-10-08 07:46:08 +000091 @echo top_builddir=$(KBUILD_OUTPUT) >> $@
92 @echo KBUILD_SRC='$$(top_srcdir)' >> $@
93 @echo include '$$(KBUILD_SRC)'/Makefile >> $@
94
95# Leave processing to above invocation of make
96skip-makefile := 1
97endif # ifneq ($(KBUILD_OUTPUT),)
98endif # ifeq ($(KBUILD_SRC),)
99
100ifeq ($(skip-makefile),)
101
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +0000102# We only need a copy of the Makefile for the config targets and reuse
103# the rest from the source directory, i.e. we do not cp ALL_MAKEFILES.
104scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile
105 cp $< $@
106
Eric Andersen7daa0762004-10-08 07:46:08 +0000107_all: all
Glenn L McGrath6376b582003-09-24 15:48:29 +0000108
Rob Landleyd24eaac2005-09-26 15:49:41 +0000109help:
110 @echo 'Cleaning:'
111 @echo ' clean - delete temporary files created by build'
112 @echo ' distclean - delete all non-source files (including .config)'
113 @echo
114 @echo 'Build:'
115 @echo ' all - Executable and documentation'
116 @echo ' busybox - the swiss-army executable'
117 @echo ' doc - docs/BusyBox.{txt,html,1}'
118 @echo
119 @echo 'Configuration:'
120 @echo ' allnoconfig - disable all symbols in .config'
121 @echo ' allyesconfig - enable (almost) all symbols in .config'
Bernhard Reutner-Fischerbe5c1032005-10-08 11:08:28 +0000122 @echo ' allbareconfig - enable all basics without any features'
Bernhard Reutner-Fischera9d89132005-10-07 18:45:03 +0000123 @echo ' config - text based configurator (of last resort)'
Rob Landleyd24eaac2005-09-26 15:49:41 +0000124 @echo ' defconfig - set .config to defaults'
125 @echo ' menuconfig - interactive curses-based configurator'
126 @echo ' oldconfig - resolve any unresolved symbols in .config'
127 @echo
128 @echo 'Installation:'
129 @echo ' install - install busybox and symlinks into $prefix'
130 @echo ' install-hardlinks - install busybox and hardlinks into $prefix'
131 @echo ' uninstall'
132 @echo
133 @echo 'Development:'
134 @echo ' check - run the test suite for all applets'
135 @echo ' randconfig - generate a random configuration'
136 @echo ' release - create a distribution tarball'
137 @echo ' sizes - show size of all enabled busybox symbols'
138 @echo
139
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000140
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +0000141include $(top_srcdir)/Rules.mak
142
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000143ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
144
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +0000145# Default target if none was requested explicitly
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000146all: menuconfig
147
Bernhard Reutner-Fischer4d635252005-10-07 10:53:15 +0000148# warn if no configuration exists and we are asked to build a non-config target
149.config:
150 @echo ""
151 @echo "No $(top_builddir)/$@ found!"
152 @echo "Please refer to 'make help', section Configuration."
153 @echo ""
154 @exit 1
155
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000156# configuration
157# ---------------------------------------------------------------------------
158
159scripts/config/conf: scripts/config/Makefile
160 $(MAKE) -C scripts/config conf
161 -@if [ ! -f .config ] ; then \
162 cp $(CONFIG_DEFCONFIG) .config; \
163 fi
164
165scripts/config/mconf: scripts/config/Makefile
166 $(MAKE) -C scripts/config ncurses conf mconf
167 -@if [ ! -f .config ] ; then \
168 cp $(CONFIG_DEFCONFIG) .config; \
169 fi
170
171menuconfig: scripts/config/mconf
172 @./scripts/config/mconf $(CONFIG_CONFIG_IN)
173
174config: scripts/config/conf
175 @./scripts/config/conf $(CONFIG_CONFIG_IN)
176
177oldconfig: scripts/config/conf
178 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
179
180randconfig: scripts/config/conf
181 @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
182
183allyesconfig: scripts/config/conf
184 @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
185 sed -i -r -e "s/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX).*/# \1 is not set/" .config
186 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
187
188allnoconfig: scripts/config/conf
189 @./scripts/config/conf -n $(CONFIG_CONFIG_IN)
190
191defconfig: scripts/config/conf
192 @./scripts/config/conf -d $(CONFIG_CONFIG_IN)
193
Bernhard Reutner-Fischerbe5c1032005-10-08 11:08:28 +0000194allbareconfig: scripts/config/conf
195 @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
196 sed -i -r -e "s/^(CONFIG_DEBUG|USING_CROSS_COMPILER|CONFIG_STATIC|CONFIG_SELINUX).*/# \1 is not set/" .config
197 sed -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config
198 @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config
199 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
Bernhard Reutner-Fischera9d89132005-10-07 18:45:03 +0000200
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000201else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
Eric Andersen00814662001-04-26 23:29:10 +0000202
Eric Andersend4fcb802003-07-15 00:28:26 +0000203all: busybox busybox.links doc
Erik Andersen0a704e82000-05-03 03:19:06 +0000204
Eric Andersen7daa0762004-10-08 07:46:08 +0000205# In this section, we need .config
206-include $(top_builddir)/.config.cmd
207include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
208-include $(top_builddir)/.depend
209
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000210endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
211
212busybox: .depend $(libraries-y)
Mike Frysinger67451842005-09-27 04:06:39 +0000213 $(CC) $(EXTRA_CFLAGS) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
Eric Andersen85208e22002-04-12 12:05:57 +0000214 $(STRIPCMD) $@
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000215
Eric Andersen7daa0762004-10-08 07:46:08 +0000216busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000217 - $(SHELL) $^ >$@
218
Eric Andersen63024862004-10-13 17:45:57 +0000219install: $(top_srcdir)/applets/install.sh busybox busybox.links
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000220 $(SHELL) $< $(PREFIX)
Eric Andersen13879102004-08-26 23:13:00 +0000221ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
222 @echo
223 @echo
224 @echo --------------------------------------------------
225 @echo You will probably need to make your busybox binary
226 @echo setuid root to ensure all configured applets will
227 @echo work properly.
228 @echo --------------------------------------------------
229 @echo
230endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000231
Glenn L McGrath87470de2003-08-29 12:20:31 +0000232uninstall: busybox.links
233 rm -f $(PREFIX)/bin/busybox
234 for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
Eric Andersen1f30a412002-04-13 13:39:48 +0000235
Peter Kjellerstedt88da3ef2004-11-02 09:05:22 +0000236install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000237 $(SHELL) $< $(PREFIX) --hardlinks
238
Bernhard Reutner-Fischere34e8782005-10-06 12:48:03 +0000239# see if we are in verbose mode
240KBUILD_VERBOSE :=
241ifdef V
242 ifeq ("$(origin V)", "command line")
243 KBUILD_VERBOSE := $(V)
244 endif
245endif
246ifneq ($(strip $(KBUILD_VERBOSE)),)
247 CHECK_VERBOSE := -v
248endif
Mike Frysingerce0cf1d2005-09-24 05:47:52 +0000249check test: busybox
Eric Andersen7daa0762004-10-08 07:46:08 +0000250 bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
Bernhard Reutner-Fischere34e8782005-10-06 12:48:03 +0000251 $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000252
Rob Landleyd9f71652005-08-28 08:24:21 +0000253sizes:
Rob Landleyac692b22005-09-01 02:40:21 +0000254 -rm -f busybox
255 $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
256 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true
Rob Landleyd9f71652005-08-28 08:24:21 +0000257 nm --size-sort busybox
Rob Landley16890752005-09-02 00:41:53 +0000258
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000259# Documentation Targets
Eric Andersenf7300882004-04-06 15:26:25 +0000260doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
John Beppu94e50542001-04-05 19:42:03 +0000261
Eric Andersen7daa0762004-10-08 07:46:08 +0000262docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod
263 -mkdir -p docs
264 - ( cat $(top_srcdir)/docs/busybox_header.pod; \
265 $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h; \
266 cat $(top_srcdir)/docs/busybox_footer.pod ) > docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000267
Eric Andersen67536ff2000-07-06 22:53:22 +0000268docs/BusyBox.txt: docs/busybox.pod
Mike Frysingerc99e2c52005-07-28 22:14:35 +0000269 $(SECHO)
270 $(SECHO) BusyBox Documentation
271 $(SECHO)
Eric Andersen29be79c2000-12-01 22:57:44 +0000272 -mkdir -p docs
Eric Andersen19f86202001-02-17 00:42:47 +0000273 -pod2text $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000274
Eric Andersen67536ff2000-07-06 22:53:22 +0000275docs/BusyBox.1: docs/busybox.pod
Eric Andersen09a34e52000-12-01 19:40:18 +0000276 - mkdir -p docs
Eric Andersen29be79c2000-12-01 22:57:44 +0000277 - pod2man --center=BusyBox --release="version $(VERSION)" \
Eric Andersen19f86202001-02-17 00:42:47 +0000278 $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000279
Eric Andersen2423b122001-12-08 01:56:15 +0000280docs/BusyBox.html: docs/busybox.net/BusyBox.html
Eric Andersen1cf81662001-02-17 15:55:15 +0000281 - mkdir -p docs
Eric Andersene2f6e122000-12-01 19:55:04 +0000282 -@ rm -f docs/BusyBox.html
Eric Andersen7daa0762004-10-08 07:46:08 +0000283 -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000284
Eric Andersen2423b122001-12-08 01:56:15 +0000285docs/busybox.net/BusyBox.html: docs/busybox.pod
286 -@ mkdir -p docs/busybox.net
Eric Andersen19f86202001-02-17 00:42:47 +0000287 - pod2html --noindex $< > \
Eric Andersen2423b122001-12-08 01:56:15 +0000288 docs/busybox.net/BusyBox.html
Eric Andersen36763742001-04-24 21:46:07 +0000289 -@ rm -f pod2htm*
Erik Andersen0a704e82000-05-03 03:19:06 +0000290
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000291# The nifty new buildsystem stuff
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000292scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c
Eric Andersen7daa0762004-10-08 07:46:08 +0000293 $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
Erik Andersen1d1d9502000-04-21 01:26:49 +0000294
Mike Frysingerde242f62005-09-25 04:53:35 +0000295DEP_INCLUDES := include/config.h include/bb_config.h
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000296
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000297ifeq ($(strip $(CONFIG_BBCONFIG)),y)
298DEP_INCLUDES += include/bbconfigopts.h
299
300include/bbconfigopts.h: .config
Bernhard Reutner-Fischer5c071bc2005-10-05 07:40:46 +0000301 $(top_srcdir)/scripts/config/mkconfigs > $@
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000302endif
303
"Vladimir N. Oleynik"dfd1eb02005-10-07 15:53:21 +0000304depend dep: .depend
"Vladimir N. Oleynik"cef737f2005-09-21 07:49:34 +0000305.depend: scripts/bb_mkdep $(DEP_INCLUDES)
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000306 @rm -f .depend
307 @mkdir -p include/config
"Vladimir N. Oleynik"dfd1eb02005-10-07 15:53:21 +0000308 scripts/bb_mkdep -c include/config.h -c include/bb_config.h \
309 -I $(top_srcdir)/include $(top_srcdir) > $@.tmp
Mike Frysinger016d6282005-09-24 06:15:23 +0000310 mv $@.tmp $@
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000311
Eric Andersenc9f20d92002-12-05 08:41:41 +0000312include/config.h: .config
Eric Andersen7daa0762004-10-08 07:46:08 +0000313 @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
Glenn L McGrathb19c73d2003-08-29 13:25:55 +0000314 $(MAKE) -C scripts/config conf; \
Eric Andersen3cd27602001-10-24 07:58:02 +0000315 fi;
Eric Andersen7daa0762004-10-08 07:46:08 +0000316 @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
Eric Andersen85208e22002-04-12 12:05:57 +0000317
Rob Landley193c8c72005-07-27 06:55:36 +0000318include/bb_config.h: include/config.h
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000319 @echo -e "#ifndef BB_CONFIG_H\n#define BB_CONFIG_H" > $@
320 @sed -e 's/#undef CONFIG_\(.*\)/#define ENABLE_\1 0/' \
Rob Landleyef8f4232005-07-28 19:36:33 +0000321 -e 's/#define CONFIG_\(.*\)/#define CONFIG_\1\n#define ENABLE_\1/' \
322 < $< >> $@
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000323 @echo "#endif" >> $@
Rob Landley193c8c72005-07-27 06:55:36 +0000324
Eric Andersencc8ed391999-10-05 16:24:54 +0000325clean:
Rob Landleya7e14db2005-09-11 01:16:47 +0000326 - $(MAKE) -C scripts/config $@
Eric Andersenf7300882004-04-06 15:26:25 +0000327 - rm -f docs/busybox.dvi docs/busybox.ps \
328 docs/busybox.pod docs/busybox.net/busybox.html \
Eric Andersen24e098a2003-08-22 20:53:38 +0000329 docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
330 docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
331 docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \
Rob Landley90252bb2005-09-20 14:09:57 +0000332 .config.old busybox
333 - rm -rf _install testsuite/links
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000334 - find . -name .\*.flags -exec rm -f {} \;
Eric Andersen87715172002-07-31 03:45:05 +0000335 - find . -name \*.o -exec rm -f {} \;
336 - find . -name \*.a -exec rm -f {} \;
Eric Andersencc8ed391999-10-05 16:24:54 +0000337
338distclean: clean
"Vladimir N. Oleynik"5e60dc42005-09-12 12:33:27 +0000339 - rm -f scripts/bb_mkdep
Mike Frysingerf9bd87b2005-08-11 21:59:52 +0000340 - rm -rf include/config include/config.h include/bb_config.h include/bbconfigopts.h
Eric Andersena9953432003-01-27 22:11:59 +0000341 - find . -name .depend -exec rm -f {} \;
Eric Andersenc9f20d92002-12-05 08:41:41 +0000342 rm -f .config .config.old .config.cmd
Eric Andersencc8ed391999-10-05 16:24:54 +0000343
Eric Andersenc9f20d92002-12-05 08:41:41 +0000344release: distclean #doc
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000345 cd ..; \
346 rm -rf $(PROG)-$(VERSION); \
347 cp -a busybox $(PROG)-$(VERSION); \
348 \
349 find $(PROG)-$(VERSION)/ -type d \
Eric Andersen4306bb12005-08-17 00:03:23 +0000350 -name .svn \
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000351 -print \
352 -exec rm -rf {} \; ; \
353 \
354 find $(PROG)-$(VERSION)/ -type f \
355 -name .\#* \
356 -print \
357 -exec rm -f {} \; ; \
358 \
Glenn L McGrath0874a612003-11-17 10:26:43 +0000359 tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000360
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000361tags:
362 ctags -R .
Matt Kraai4e05da82001-11-19 19:47:56 +0000363
Eric Andersenc9f20d92002-12-05 08:41:41 +0000364
Eric Andersen7daa0762004-10-08 07:46:08 +0000365endif # ifeq ($(skip-makefile),)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000366
Eric Andersen7daa0762004-10-08 07:46:08 +0000367.PHONY: dummy subdirs release distclean clean config oldconfig \
"Vladimir N. Oleynik"dfd1eb02005-10-07 15:53:21 +0000368 menuconfig tags check test depend dep buildtree