1999-10-20 22:08:37 +00:00
# Makefile for busybox
#
2004-03-15 08:29:22 +00:00
# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
2000-02-11 21:55:04 +00:00
#
2005-09-11 01:16:47 +00:00
# Licensed under GPLv2, see the file LICENSE in this tarball for details.
1999-10-20 22:08:37 +00:00
#
2002-12-05 08:41:41 +00:00
#--------------------------------------------------------------
# You shouldn't need to mess with anything beyond this point...
#--------------------------------------------------------------
noconfig_targets := menuconfig config oldconfig randconfig \
2005-10-08 11:08:28 +00:00
defconfig allyesconfig allnoconfig allbareconfig \
2005-10-07 18:45:03 +00:00
clean distclean \
2005-02-13 22:15:59 +00:00
release tags
2004-10-08 07:46:08 +00:00
2005-09-26 16:01:43 +00:00
# the toplevel sourcedir
2004-10-08 07:46:08 +00:00
i f n d e f t o p _ s r c d i r
top_srcdir = $( CURDIR)
e n d i f
2005-09-26 16:01:43 +00:00
# toplevel directory of the object-tree
2004-10-08 07:46:08 +00:00
i f n d e f t o p _ b u i l d d i r
top_builddir = $( CURDIR)
e n d i f
2005-07-31 22:50:17 +00:00
export srctree = $( top_srcdir)
2004-10-08 07:46:08 +00:00
v p a t h % / C o n f i g . i n $( srctree )
2003-02-15 10:53:40 +00:00
DIRS := applets archival archival/libunarchive coreutils console-tools \
debianutils editors findutils init miscutils modutils networking \
2002-11-10 01:33:55 +00:00
networking/libiproute networking/udhcp procps loginutils shell \
2005-04-24 05:07:59 +00:00
sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb
2001-10-24 05:00:29 +00:00
2004-10-08 07:46:08 +00:00
SRC_DIRS := $( patsubst %,$( top_srcdir) /%,$( DIRS) )
2005-10-05 07:40:46 +00:00
# That's our default target when none is given on the command line
.PHONY : _all
_all :
2006-01-20 17:47:09 +00:00
CONFIG_CONFIG_IN = $( top_srcdir) /Config.in
CONFIG_DEFCONFIG = $( top_srcdir) /defconfig
2004-10-08 07:46:08 +00:00
i f e q ( $( KBUILD_SRC ) , )
i f d e f O
ifeq ( " $( origin O) " , "command line" )
KBUILD_OUTPUT := $( O)
2005-10-07 10:53:15 +00:00
top_builddir := $( O)
2004-10-08 07:46:08 +00:00
endif
2005-10-05 07:40:46 +00:00
e l s e
# If no alternate output-dir was specified, we build in cwd
# We are using KBUILD_OUTPUT nevertheless to make sure that we create
# Rules.mak and the toplevel Makefile, in case they don't exist.
KBUILD_OUTPUT := $( top_builddir)
2004-10-08 07:46:08 +00:00
e n d i f
2005-10-13 10:40:18 +00:00
i f n e q ( $( strip $ ( HAVE_DOT_CONFIG ) ) , y )
# pull in OS specific commands like cp, mkdir, etc. early
- i n c l u d e $( top_srcdir ) / R u l e s . m a k
e n d i f
2005-10-07 10:53:15 +00:00
# All object directories.
OBJ_DIRS := $( DIRS)
all_tree := $( patsubst %,$( top_builddir) /%,$( OBJ_DIRS) scripts scripts/config include)
all_tree : $( all_tree )
$(all_tree) :
@mkdir -p " $@ "
2004-10-08 07:46:08 +00:00
i f n e q ( $( KBUILD_OUTPUT ) , )
# Invoke a second make in the output directory, passing relevant variables
2005-10-07 10:53:15 +00:00
# Check that the output directory actually exists
2004-10-08 07:46:08 +00:00
saved-output := $( KBUILD_OUTPUT)
KBUILD_OUTPUT := $( shell cd $( KBUILD_OUTPUT) && /bin/pwd)
$( if $ ( wildcard $ ( KBUILD_OUTPUT ) ) ,, \
$( error output directory " $( saved-output) " does not exist) )
.PHONY : $( MAKECMDGOALS )
2005-10-05 07:40:46 +00:00
$(filter-out _all,$(MAKECMDGOALS)) _all : $( KBUILD_OUTPUT ) /Rules .mak $( KBUILD_OUTPUT ) /Makefile all_tree
2006-02-02 01:41:53 +00:00
$( Q) $( MAKE) -C $( KBUILD_OUTPUT) \
2005-10-05 07:40:46 +00:00
top_srcdir = $( top_srcdir) \
top_builddir = $( top_builddir) \
KBUILD_SRC = $( top_srcdir) \
2004-10-08 07:46:08 +00:00
-f $( CURDIR) /Makefile $@
$(KBUILD_OUTPUT)/Rules.mak :
@echo > $@
2005-10-05 07:40:46 +00:00
@echo top_srcdir = $( top_srcdir) >> $@
2004-10-08 07:46:08 +00:00
@echo top_builddir = $( KBUILD_OUTPUT) >> $@
@echo include $( top_srcdir) /Rules.mak >> $@
$(KBUILD_OUTPUT)/Makefile :
@echo > $@
2005-10-05 07:40:46 +00:00
@echo top_srcdir = $( top_srcdir) >> $@
2004-10-08 07:46:08 +00:00
@echo top_builddir = $( KBUILD_OUTPUT) >> $@
@echo KBUILD_SRC = '$$(top_srcdir)' >> $@
@echo include '$$(KBUILD_SRC)' /Makefile >> $@
# Leave processing to above invocation of make
skip-makefile := 1
e n d i f # ifneq ($(KBUILD_OUTPUT),)
e n d i f # ifeq ($(KBUILD_SRC),)
i f e q ( $( skip -makefile ) , )
2005-10-07 10:53:15 +00:00
# We only need a copy of the Makefile for the config targets and reuse
# the rest from the source directory, i.e. we do not cp ALL_MAKEFILES.
scripts/config/Makefile : $( top_srcdir ) /scripts /config /Makefile
cp $< $@
2004-10-08 07:46:08 +00:00
_all : all
2003-09-24 15:48:29 +00:00
2005-09-26 15:49:41 +00:00
help :
@echo 'Cleaning:'
2006-01-23 11:39:05 +00:00
@echo ' clean - delete temporary files created by build'
@echo ' distclean - delete all non-source files (including .config)'
2005-09-26 15:49:41 +00:00
@echo
@echo 'Build:'
2006-01-23 11:39:05 +00:00
@echo ' all - Executable and documentation'
@echo ' busybox - the swiss-army executable'
@echo ' doc - docs/BusyBox.{txt,html,1}'
2005-09-26 15:49:41 +00:00
@echo
@echo 'Configuration:'
2006-01-23 11:39:05 +00:00
@echo ' allnoconfig - disable all symbols in .config'
2006-02-08 18:50:17 +00:00
@echo ' allyesconfig - enable all symbols in .config (see defconfig)'
@echo ' allbareconfig - enable all applets without any sub-features'
2006-01-23 11:39:05 +00:00
@echo ' config - text based configurator (of last resort)'
2006-02-08 18:50:17 +00:00
@echo ' defconfig - set .config to largest generic configuration'
2006-01-23 11:39:05 +00:00
@echo ' menuconfig - interactive curses-based configurator'
@echo ' oldconfig - resolve any unresolved symbols in .config'
2005-09-26 15:49:41 +00:00
@echo
@echo 'Installation:'
2006-01-23 11:39:05 +00:00
@echo ' install - install busybox into $prefix'
2005-09-26 15:49:41 +00:00
@echo ' uninstall'
@echo
@echo 'Development:'
2006-01-23 11:39:05 +00:00
@echo ' check - run the test suite for all applets'
@echo ' randconfig - generate a random configuration'
@echo ' release - create a distribution tarball'
@echo ' sizes - show size of all enabled busybox symbols'
2005-09-26 15:49:41 +00:00
@echo
2001-10-24 05:00:29 +00:00
2005-10-07 10:53:15 +00:00
i n c l u d e $( top_srcdir ) / R u l e s . m a k
2005-10-05 07:40:46 +00:00
i f n e q ( $( strip $ ( HAVE_DOT_CONFIG ) ) , y )
2005-10-07 10:53:15 +00:00
# Default target if none was requested explicitly
2005-10-05 07:40:46 +00:00
all : menuconfig
2001-04-03 16:38:37 +00:00
2005-10-07 10:53:15 +00:00
# warn if no configuration exists and we are asked to build a non-config target
.config :
@echo ""
@echo " No $( top_builddir) / $@ found! "
@echo "Please refer to 'make help', section Configuration."
@echo ""
@exit 1
2005-10-05 07:40:46 +00:00
# configuration
# ---------------------------------------------------------------------------
2004-10-08 07:46:08 +00:00
2005-10-05 07:40:46 +00:00
scripts/config/conf : scripts /config /Makefile
2006-02-02 01:41:53 +00:00
$( Q) $( MAKE) -C scripts/config conf
2005-10-05 07:40:46 +00:00
-@if [ ! -f .config ] ; then \
cp $( CONFIG_DEFCONFIG) .config; \
fi
scripts/config/mconf : scripts /config /Makefile
2006-02-02 01:41:53 +00:00
$( Q) $( MAKE) -C scripts/config ncurses conf mconf
2005-10-05 07:40:46 +00:00
-@if [ ! -f .config ] ; then \
cp $( CONFIG_DEFCONFIG) .config; \
fi
menuconfig : scripts /config /mconf
@./scripts/config/mconf $( CONFIG_CONFIG_IN)
config : scripts /config /conf
@./scripts/config/conf $( CONFIG_CONFIG_IN)
oldconfig : scripts /config /conf
@./scripts/config/conf -o $( CONFIG_CONFIG_IN)
randconfig : scripts /config /conf
@./scripts/config/conf -r $( CONFIG_CONFIG_IN)
allyesconfig : scripts /config /conf
@./scripts/config/conf -y $( CONFIG_CONFIG_IN)
2006-01-31 02:42:50 +00:00
sed -i -r -e "s/^(USING_CROSS_COMPILER)=.*/# \1 is not set/" .config
2005-10-05 07:40:46 +00:00
@./scripts/config/conf -o $( CONFIG_CONFIG_IN)
allnoconfig : scripts /config /conf
@./scripts/config/conf -n $( CONFIG_CONFIG_IN)
2006-02-08 18:50:17 +00:00
# defconfig is allyesconfig minus any features that are specialized enough
# or cause enough behavior change that the user really should switch them on
# manually if that's what they want. Sort of "maximum sane config".
2006-01-31 02:42:50 +00:00
2005-10-05 07:40:46 +00:00
defconfig : scripts /config /conf
2006-01-31 02:42:50 +00:00
@./scripts/config/conf -y $( CONFIG_CONFIG_IN)
New USE() macros
For each CONFIG_SYMBOL, include/bb_config.h now has both ENABLE_SYMBOL
and USE_SYMBOL(x). ENABLE_SYMBOL is still always defined (1 or 0) so that
if(ENABLE) should optimize out when it's zero. The USE_SYMBOL(X) will only
splice in X if the symbol is defined, otherwise it'll be empty.
Thus we can convert this:
#ifdef CONFIG_ARGS
opt = bb_getopt_ulflags(argc, argv, "ab:c"
#ifdef CONFIG_THINGY
"d:"
#endif
, &bvalue
#ifdef CONFIG_THINGY
, &thingy
#endif
);
#endif
into this:
if (ENABLE_ARGS) {
opt = bb_getopt_ulflags(argc, argv, "ab:c" USE_THINGY("d:"), &bvalue
USE_THINGY(, &thingy));
}
And it should produce the same code.
Unlike the old versions in include/_usage.h, the new USE_SYMBOL(x) can handle
commas in its arguments (as shown above). (The _usage.h file is obsolete and
no longer generated.)
Nobody should need to include config.h directly anymore, bb_config.h should
define all the configuration stuff we need. Someday, the CONFIG_SYMBOL
versions should go away in favor of ENABLE_SYMBOL and USE_SYMBOL().
Thanks to vodz for the new version of bb_mkdep.c that works with function
macros.
2006-02-13 19:16:41 +00:00
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)))=.*/# \1 is not set/" .config
2006-01-31 02:42:50 +00:00
@./scripts/config/conf -o $( CONFIG_CONFIG_IN)
2005-10-05 07:40:46 +00:00
2005-10-08 11:08:28 +00:00
allbareconfig : scripts /config /conf
@./scripts/config/conf -y $( CONFIG_CONFIG_IN)
2006-01-24 18:15:20 +00:00
@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
2005-12-02 18:27:39 +00:00
@sed -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config
2005-10-08 11:08:28 +00:00
@echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config
@./scripts/config/conf -o $( CONFIG_CONFIG_IN)
2005-10-07 18:45:03 +00:00
2005-10-05 07:40:46 +00:00
e l s e # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
all : busybox busybox .links doc
2004-10-08 07:46:08 +00:00
2002-12-05 08:41:41 +00:00
# In this section, we need .config
2004-10-08 07:46:08 +00:00
- i n c l u d e $( top_builddir ) / . c o n f i g . c m d
i n c l u d e $( patsubst %,%/Makefile .in , $ ( SRC_DIRS ) )
2001-10-24 07:58:02 +00:00
2005-10-05 07:40:46 +00:00
e n d i f # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
2006-01-15 14:04:57 +00:00
- i n c l u d e $( top_builddir ) / . c o n f i g
- i n c l u d e $( top_builddir ) / . d e p e n d
2006-01-25 15:58:04 +00:00
i f e q ( $( strip $ ( CONFIG_BUILD_AT_ONCE ) ) , y )
libraries-y :=
2006-01-15 14:04:57 +00:00
# Which parts of the internal libs are requested?
# Per default we only want what was actually selected.
2006-01-25 15:58:04 +00:00
# -a denotes all while -y denotes the selected ones.
i f e q ( $( strip $ ( CONFIG_FEATURE_FULL_LIBBUSYBOX ) ) , y )
2006-01-15 14:04:57 +00:00
LIBRARY_DEFINE := $( LIBRARY_DEFINE-a)
LIBRARY_SRC := $( LIBRARY_SRC-a)
2006-01-25 15:58:04 +00:00
e l s e # CONFIG_FEATURE_FULL_LIBBUSYBOX
2006-01-15 14:04:57 +00:00
LIBRARY_DEFINE := $( LIBRARY_DEFINE-y)
LIBRARY_SRC := $( LIBRARY_SRC-y)
2006-01-25 15:58:04 +00:00
e n d i f # CONFIG_FEATURE_FULL_LIBBUSYBOX
APPLET_SRC := $( APPLET_SRC-y)
APPLETS_DEFINE := $( APPLETS_DEFINE-y)
2006-01-15 14:04:57 +00:00
e l s e # CONFIG_BUILD_AT_ONCE
2006-01-25 15:58:04 +00:00
# no --combine, build archives out of the individual .o
# This was the old way the binary was built.
2006-01-15 14:04:57 +00:00
libbusybox-obj := archival/libunarchive/libunarchive.a \
networking/libiproute/libiproute.a \
libpwdgrp/libpwdgrp.a \
coreutils/libcoreutils/libcoreutils.a \
libbb/libbb.a
libbusybox-obj := $( patsubst %,$( top_builddir) /%,$( libbusybox-obj) )
2006-01-25 15:58:04 +00:00
i f e q ( $( strip $ ( CONFIG_FEATURE_SHARED_BUSYBOX ) ) , y )
# linking against libbusybox, so don't build the .a already contained in the .so
libraries-y := $( filter-out $( libbusybox-obj) ,$( libraries-y) )
e n d i f # CONFIG_FEATURE_SHARED_BUSYBOX
e n d i f # CONFIG_BUILD_AT_ONCE
2006-01-15 14:04:57 +00:00
2006-01-25 15:58:04 +00:00
i f e q ( $( strip $ ( CONFIG_BUILD_LIBBUSYBOX ) ) , y )
LD_LIBBUSYBOX := libbusybox.so
LIBBUSYBOX_SONAME := $( LD_LIBBUSYBOX) .$( MAJOR_VERSION) .$( MINOR_VERSION) .$( SUBLEVEL_VERSION)
DO_INSTALL_LIBS := $( LD_LIBBUSYBOX) \
$( LD_LIBBUSYBOX) .$( MAJOR_VERSION) \
$( LD_LIBBUSYBOX) .$( MAJOR_VERSION) .$( MINOR_VERSION)
i f e q ( $( strip $ ( CONFIG_BUILD_AT_ONCE ) ) , y )
i f n e q ( $( strip $ ( CONFIG_FEATURE_SHARED_BUSYBOX ) ) , y )
# --combine but not linking against libbusybox, so compile all
BUSYBOX_SRC := $( LIBRARY_SRC)
BUSYBOX_DEFINE := $( LIBRARY_DEFINE)
e n d i f # !CONFIG_FEATURE_SHARED_BUSYBOX
$(LIBBUSYBOX_SONAME) : $( LIBRARY_SRC )
e l s e # CONFIG_BUILD_AT_ONCE
$(LIBBUSYBOX_SONAME) : $( libbusybox -obj )
2006-01-15 14:04:57 +00:00
e n d i f # CONFIG_BUILD_AT_ONCE
2006-01-25 15:58:04 +00:00
e n d i f # CONFIG_BUILD_LIBBUSYBOX
2006-01-15 14:04:57 +00:00
2006-01-25 15:58:04 +00:00
i f e q ( $( strip $ ( CONFIG_FEATURE_SHARED_BUSYBOX ) ) , y )
LDBUSYBOX := -L$( top_builddir) -lbusybox
e n d i f
2006-01-15 14:04:57 +00:00
2006-01-25 15:58:04 +00:00
i f e q ( $( strip $ ( CONFIG_BUILD_LIBBUSYBOX ) ) , y )
2006-01-15 14:04:57 +00:00
$(LIBBUSYBOX_SONAME) :
i f n d e f M A J O R _ V E R S I O N
$( error MAJOR_VERSION needed for $@ is not defined)
e n d i f
2006-02-02 01:41:53 +00:00
$( do_link) $( LIB_CFLAGS) $( LIB_LDFLAGS) \
2006-01-15 14:04:57 +00:00
-Wl,-soname= $( LD_LIBBUSYBOX) .$( MAJOR_VERSION) \
2006-01-27 15:45:56 +00:00
-Wl,-z,combreloc $( LIB_LDFLAGS) \
2006-01-15 14:04:57 +00:00
-o $( @) \
-Wl,--start-group -Wl,--whole-archive \
$( LIBRARY_DEFINE) $( ^) \
-Wl,--no-whole-archive -Wl,--end-group
$( RM_F) $( DO_INSTALL_LIBS)
for i in $( DO_INSTALL_LIBS) ; do $( LN_S) -v $( @) $$ i ; done
2006-02-02 01:41:53 +00:00
$( do_strip)
2006-01-15 14:04:57 +00:00
e n d i f # ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
busybox : .depend $( LIBBUSYBOX_SONAME ) $( BUSYBOX_SRC ) $( libraries -y )
2006-02-02 01:41:53 +00:00
$( do_link) $( PROG_CFLAGS) \
2006-01-15 14:04:57 +00:00
-o $@ -Wl,--start-group \
2006-01-25 15:58:04 +00:00
$( APPLETS_DEFINE) $( APPLET_SRC) \
$( BUSYBOX_DEFINE) $( BUSYBOX_SRC) $( libraries-y) \
$( LDBUSYBOX) $( LIBRARIES) \
2006-01-15 14:04:57 +00:00
-Wl,--end-group
2006-02-02 01:41:53 +00:00
$( do_strip)
2000-09-21 02:04:51 +00:00
2005-12-16 06:12:46 +00:00
busybox.links : $( top_srcdir ) /applets /busybox .mkll include /bb_config .h $( top_srcdir ) /include /applets .h
2006-02-02 01:41:53 +00:00
$( Q) -$( SHELL) $^ >$@
2001-10-24 05:00:29 +00:00
2004-10-13 17:45:57 +00:00
install : $( top_srcdir ) /applets /install .sh busybox busybox .links
2006-01-15 14:04:57 +00:00
DO_INSTALL_LIBS = " $( strip $( LIBBUSYBOX_SONAME) $( DO_INSTALL_LIBS) ) " \
$( SHELL) $< $( PREFIX) $( INSTALL_OPTS)
2004-08-26 23:13:00 +00:00
i f e q ( $( strip $ ( CONFIG_FEATURE_SUID ) ) , y )
@echo
@echo
@echo --------------------------------------------------
@echo You will probably need to make your busybox binary
@echo setuid root to ensure all configured applets will
@echo work properly.
@echo --------------------------------------------------
@echo
e n d i f
2001-01-27 06:01:43 +00:00
2003-08-29 12:20:31 +00:00
uninstall : busybox .links
2006-01-15 14:04:57 +00:00
$( RM_F) $( PREFIX) /bin/busybox
for i in ` cat busybox.links` ; do $( RM_F) $( PREFIX) $$ i; done
i f n e q ( $( strip $ ( DO_INSTALL_LIBS ) ) , n )
for i in $( LIBBUSYBOX_SONAME) $( DO_INSTALL_LIBS) ; do \
$( RM_F) $( PREFIX) $$ i; \
done
e n d i f
2002-04-13 13:39:48 +00:00
2005-10-06 12:48:03 +00:00
# see if we are in verbose mode
KBUILD_VERBOSE :=
i f d e f V
ifeq ( " $( origin V) " , "command line" )
KBUILD_VERBOSE := $( V)
endif
e n d i f
i f n e q ( $( strip $ ( KBUILD_VERBOSE ) ) , )
CHECK_VERBOSE := -v
2006-01-15 14:04:57 +00:00
# ARFLAGS+=v
2005-10-06 12:48:03 +00:00
e n d i f
2005-09-24 05:47:52 +00:00
check test : busybox
2004-10-08 07:46:08 +00:00
bindir = $( top_builddir) srcdir = $( top_srcdir) /testsuite \
2005-10-06 12:48:03 +00:00
$( top_srcdir) /testsuite/runtest $( CHECK_VERBOSE)
2000-05-03 03:19:06 +00:00
2005-08-28 08:24:21 +00:00
sizes :
2006-01-15 14:04:57 +00:00
-$( RM_F) busybox
2005-09-01 02:40:21 +00:00
$( MAKE) top_srcdir = $( top_srcdir) top_builddir = $( top_builddir) \
-f $( top_srcdir) /Makefile STRIPCMD = /bin/true
2005-10-13 10:40:18 +00:00
$( NM) --size-sort busybox
2005-09-02 00:41:53 +00:00
2001-10-24 05:00:29 +00:00
# Documentation Targets
2004-04-06 15:26:25 +00:00
doc : docs /busybox .pod docs /BusyBox .txt docs /BusyBox .1 docs /BusyBox .html
2001-04-05 19:42:03 +00:00
2006-02-05 22:15:39 +00:00
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
2006-02-02 01:41:53 +00:00
$( disp_doc)
$( Q) -mkdir -p docs
$( Q) -( cat $( top_srcdir) /docs/busybox_header.pod; \
2004-10-08 07:46:08 +00:00
$( top_srcdir) /docs/autodocifier.pl $( top_srcdir) /include/usage.h; \
cat $( top_srcdir) /docs/busybox_footer.pod ) > docs/busybox.pod
2000-07-04 19:42:23 +00:00
2000-07-06 22:53:22 +00:00
docs/BusyBox.txt : docs /busybox .pod
2006-02-02 01:41:53 +00:00
$( disp_doc)
$( Q) -mkdir -p docs
$( Q) -pod2text $< > $@
2000-07-04 19:42:23 +00:00
2000-07-06 22:53:22 +00:00
docs/BusyBox.1 : docs /busybox .pod
2006-02-02 01:41:53 +00:00
$( disp_doc)
$( Q) -mkdir -p docs
$( Q) -pod2man --center= BusyBox --release= " version $( VERSION) " \
2001-02-17 00:42:47 +00:00
$< > $@
2000-07-04 19:42:23 +00:00
2001-12-08 01:56:15 +00:00
docs/BusyBox.html : docs /busybox .net /BusyBox .html
2006-02-02 01:41:53 +00:00
$( disp_doc)
$( Q) -mkdir -p docs
$( Q) -$( RM_F) docs/BusyBox.html
$( Q) -cp docs/busybox.net/BusyBox.html docs/BusyBox.html
2000-07-04 19:42:23 +00:00
2001-12-08 01:56:15 +00:00
docs/busybox.net/BusyBox.html : docs /busybox .pod
2006-02-02 01:41:53 +00:00
$( Q) -mkdir -p docs/busybox.net
$( Q) -pod2html --noindex $< > \
2001-12-08 01:56:15 +00:00
docs/busybox.net/BusyBox.html
2006-02-02 01:41:53 +00:00
$( Q) -$( RM_F) pod2htm*
2000-07-04 19:42:23 +00:00
2001-10-24 05:00:29 +00:00
# The nifty new buildsystem stuff
2005-09-12 12:33:27 +00:00
scripts/bb_mkdep : $( top_srcdir ) /scripts /bb_mkdep .c
2006-02-18 20:12:39 +00:00
$( Q) $( HOSTCC) $( HOSTCFLAGS) -o $@ $<
2000-04-21 01:26:49 +00:00
2006-02-15 12:29:37 +00:00
DEP_INCLUDES := include/bb_config.h
2005-09-21 07:49:34 +00:00
i f e q ( $( strip $ ( CONFIG_BBCONFIG ) ) , y )
DEP_INCLUDES += include/bbconfigopts.h
include/bbconfigopts.h : .config
2006-02-02 01:41:53 +00:00
$( disp_gen)
$( Q) $( top_srcdir) /scripts/config/mkconfigs > $@
2005-09-21 07:49:34 +00:00
e n d i f
2005-10-07 15:53:21 +00:00
depend dep : .depend
2005-09-21 07:49:34 +00:00
.depend : scripts /bb_mkdep $( DEP_INCLUDES )
2006-02-02 01:41:53 +00:00
$( disp_gen)
$( Q) $( RM_F) .depend
$( Q) mkdir -p include/config
2006-02-15 12:29:37 +00:00
$( Q) scripts/bb_mkdep -I $( top_srcdir) /include $( top_srcdir) > $@ .tmp
2006-02-02 01:41:53 +00:00
$( Q) mv $@ .tmp $@
2001-03-16 22:47:14 +00:00
2006-02-15 12:29:37 +00:00
include/bb_config.h : .config
2004-10-08 07:46:08 +00:00
@if [ ! -x $( top_builddir) /scripts/config/conf ] ; then \
2003-08-29 13:25:55 +00:00
$( MAKE) -C scripts/config conf; \
2001-10-24 07:58:02 +00:00
fi ;
2004-10-08 07:46:08 +00:00
@$( top_builddir) /scripts/config/conf -o $( CONFIG_CONFIG_IN)
2002-04-27 00:06:47 +00:00
1999-10-05 16:24:54 +00:00
clean :
2005-09-11 01:16:47 +00:00
- $( MAKE) -C scripts/config $@
2006-01-15 14:04:57 +00:00
- $( RM_F) docs/busybox.dvi docs/busybox.ps \
2004-04-06 15:26:25 +00:00
docs/busybox.pod docs/busybox.net/busybox.html \
2003-08-22 20:53:38 +00:00
docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
2006-01-23 11:24:58 +00:00
docs/busybox.net/BusyBox.html busybox.links \
2006-01-15 14:04:57 +00:00
$( DO_INSTALL_LIBS) $( LIBBUSYBOX_SONAME) \
2005-09-20 14:09:57 +00:00
.config.old busybox
- rm -rf _install testsuite/links
2006-01-15 14:04:57 +00:00
- find . -name .\* .flags -exec $( RM_F) { } \;
- find . -name \* .o -exec $( RM_F) { } \;
- find . -name \* .a -exec $( RM_F) { } \;
- find . -name \* .so -exec $( RM_F) { } \;
1999-10-05 16:24:54 +00:00
distclean : clean
2006-01-15 14:04:57 +00:00
- $( RM_F) scripts/bb_mkdep
2006-01-23 11:24:58 +00:00
- rm -rf include/config $( DEP_INCLUDES)
2006-02-18 20:13:22 +00:00
- find . -name .depend'*' -exec $( RM_F) { } \;
2006-01-15 14:04:57 +00:00
$( RM_F) .config .config.old .config.cmd
1999-10-06 20:25:32 +00:00
2002-12-05 08:41:41 +00:00
release : distclean #doc
2005-08-01 20:48:00 +00:00
cd ..; \
rm -rf $( PROG) -$( VERSION) ; \
cp -a busybox $( PROG) -$( VERSION) ; \
\
find $( PROG) -$( VERSION) / -type d \
2005-08-17 00:03:23 +00:00
-name .svn \
2005-08-01 20:48:00 +00:00
-print \
-exec rm -rf { } \; ; \
\
find $( PROG) -$( VERSION) / -type f \
-name .\# * \
-print \
2006-01-15 14:04:57 +00:00
-exec $( RM_F) { } \; ; \
2005-08-01 20:48:00 +00:00
\
2003-11-17 10:26:43 +00:00
tar -cvzf $( PROG) -$( VERSION) .tar.gz $( PROG) -$( VERSION) /;
2000-07-10 23:00:47 +00:00
2002-12-05 08:41:41 +00:00
tags :
ctags -R .
2001-10-24 05:00:29 +00:00
2004-10-08 07:46:08 +00:00
e n d i f # ifeq ($(skip-makefile),)
2001-11-19 19:47:56 +00:00
2004-10-08 07:46:08 +00:00
.PHONY : dummy subdirs release distclean clean config oldconfig \
2005-10-07 15:53:21 +00:00
menuconfig tags check test depend dep buildtree