1999-10-21 03:38:37 +05:30
# Makefile for busybox
#
2004-03-15 13:59:22 +05:30
# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
2000-02-12 03:25:04 +05:30
#
2005-09-11 06:46:47 +05:30
# Licensed under GPLv2, see the file LICENSE in this tarball for details.
1999-10-21 03:38:37 +05:30
#
2002-12-05 14:11:41 +05:30
#--------------------------------------------------------------
# You shouldn't need to mess with anything beyond this point...
#--------------------------------------------------------------
noconfig_targets := menuconfig config oldconfig randconfig \
2005-10-08 16:38:28 +05:30
defconfig allyesconfig allnoconfig allbareconfig \
2006-03-13 08:49:46 +05:30
clean distclean help \
2005-02-14 03:45:59 +05:30
release tags
2004-10-08 13:16:08 +05:30
2005-09-26 21:31:43 +05:30
# the toplevel sourcedir
2004-10-08 13:16:08 +05:30
i f n d e f t o p _ s r c d i r
2006-03-14 00:34:00 +05:30
top_srcdir = $( CURDIR)
2004-10-08 13:16:08 +05:30
e n d i f
2005-09-26 21:31:43 +05:30
# toplevel directory of the object-tree
2004-10-08 13:16:08 +05:30
i f n d e f t o p _ b u i l d d i r
2006-03-14 00:34:00 +05:30
top_builddir = $( CURDIR)
2004-10-08 13:16:08 +05:30
e n d i f
2005-08-01 04:20:17 +05:30
export srctree = $( top_srcdir)
2004-10-08 13:16:08 +05:30
v p a t h % / C o n f i g . i n $( srctree )
2003-02-15 16:23:40 +05:30
DIRS := applets archival archival/libunarchive coreutils console-tools \
debianutils editors findutils init miscutils modutils networking \
2006-05-05 23:50:42 +05:30
networking/libiproute procps loginutils shell \
2005-04-24 10:37:59 +05:30
sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb
2001-10-24 10:30:29 +05:30
2004-10-08 13:16:08 +05:30
SRC_DIRS := $( patsubst %,$( top_srcdir) /%,$( DIRS) )
2005-10-05 13:10:46 +05:30
# That's our default target when none is given on the command line
.PHONY : _all
2006-03-14 00:34:00 +05:30
_all :
2005-10-05 13:10:46 +05:30
2006-03-14 00:34:00 +05:30
CONFIG_CONFIG_IN = $( top_srcdir) /Config.in
2004-10-08 13:16:08 +05:30
2006-03-14 00:34:00 +05:30
i f e q ( $( KBUILD_SRC ) , )
2004-10-08 13:16:08 +05:30
i f d e f O
ifeq ( " $( origin O) " , "command line" )
2006-03-14 00:34:00 +05:30
KBUILD_OUTPUT := $( O)
top_builddir := $( O)
2004-10-08 13:16:08 +05:30
endif
2005-10-05 13:10:46 +05:30
e l s e
# If no alternate output-dir was specified, we build in cwd
2006-03-14 00:34:00 +05:30
# 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 13:16:08 +05:30
e n d i f
2006-03-14 00:34:00 +05:30
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
2006-03-09 14:33:37 +05:30
e n d i f
2006-03-14 00:34:00 +05:30
# All object directories.
OBJ_DIRS := $( DIRS)
all_tree := $( patsubst %,$( top_builddir) /%,$( OBJ_DIRS) scripts scripts/config include)
all_tree : $( all_tree )
2005-10-07 16:23:15 +05:30
$(all_tree) :
@mkdir -p " $@ "
2006-03-14 00:34:00 +05:30
i f n e q ( $( KBUILD_OUTPUT ) , )
# Invoke a second make in the output directory, passing relevant variables
# Check that the output directory actually exists
saved-output := $( KBUILD_OUTPUT)
KBUILD_OUTPUT := $( shell cd $( KBUILD_OUTPUT) && /bin/pwd)
$( if $ ( wildcard $ ( KBUILD_OUTPUT ) ) ,, \
2004-10-08 13:16:08 +05:30
$( error output directory " $( saved-output) " does not exist) )
2006-03-14 00:34:00 +05:30
.PHONY : $( MAKECMDGOALS )
$(filter-out _all,$(MAKECMDGOALS)) _all : $( KBUILD_OUTPUT ) /Rules .mak $( KBUILD_OUTPUT ) /Makefile all_tree
$( Q) $( MAKE) -C $( KBUILD_OUTPUT) \
top_srcdir = $( top_srcdir) \
top_builddir = $( top_builddir) \
KBUILD_SRC = $( top_srcdir) \
-f $( CURDIR) /Makefile $@
2004-10-08 13:16:08 +05:30
2006-03-14 00:34:00 +05:30
$(KBUILD_OUTPUT)/Rules.mak :
2004-10-08 13:16:08 +05:30
@echo > $@
2005-10-05 13:10:46 +05:30
@echo top_srcdir = $( top_srcdir) >> $@
2006-03-14 00:34:00 +05:30
@echo top_builddir = $( KBUILD_OUTPUT) >> $@
@echo include $( top_srcdir) /Rules.mak >> $@
2004-10-08 13:16:08 +05:30
2006-03-14 00:34:00 +05:30
$(KBUILD_OUTPUT)/Makefile :
2004-10-08 13:16:08 +05:30
@echo > $@
2005-10-05 13:10:46 +05:30
@echo top_srcdir = $( top_srcdir) >> $@
2006-03-14 00:34:00 +05:30
@echo top_builddir = $( KBUILD_OUTPUT) >> $@
@echo KBUILD_SRC = '$$(top_srcdir)' >> $@
@echo include '$$(KBUILD_SRC)' /Makefile >> $@
2004-10-08 13:16:08 +05:30
2006-03-14 00:34:00 +05:30
# 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),)
2004-10-08 13:16:08 +05:30
2006-03-14 00:34:00 +05:30
i f e q ( $( skip -makefile ) , )
2004-10-08 13:16:08 +05:30
2005-10-07 16:23:15 +05:30
# 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.
2006-03-14 00:34:00 +05:30
scripts/config/Makefile : $( top_srcdir ) /scripts /config /Makefile
cp $< $@
2005-10-07 16:23:15 +05:30
2006-03-14 00:34:00 +05:30
_all : all
2003-09-24 21:18:29 +05:30
2005-09-26 21:19:41 +05:30
help :
@echo 'Cleaning:'
2006-01-23 17:09:05 +05:30
@echo ' clean - delete temporary files created by build'
@echo ' distclean - delete all non-source files (including .config)'
2005-09-26 21:19:41 +05:30
@echo
@echo 'Build:'
2006-01-23 17:09:05 +05:30
@echo ' all - Executable and documentation'
@echo ' busybox - the swiss-army executable'
@echo ' doc - docs/BusyBox.{txt,html,1}'
2005-09-26 21:19:41 +05:30
@echo
@echo 'Configuration:'
2006-01-23 17:09:05 +05:30
@echo ' allnoconfig - disable all symbols in .config'
2006-02-09 00:20:17 +05:30
@echo ' allyesconfig - enable all symbols in .config (see defconfig)'
@echo ' allbareconfig - enable all applets without any sub-features'
2006-01-23 17:09:05 +05:30
@echo ' config - text based configurator (of last resort)'
2006-02-09 00:20:17 +05:30
@echo ' defconfig - set .config to largest generic configuration'
2006-01-23 17:09:05 +05:30
@echo ' menuconfig - interactive curses-based configurator'
@echo ' oldconfig - resolve any unresolved symbols in .config'
2005-09-26 21:19:41 +05:30
@echo
@echo 'Installation:'
2006-03-20 23:20:08 +05:30
@echo ' install - install busybox into $(PREFIX)'
2005-09-26 21:19:41 +05:30
@echo ' uninstall'
@echo
@echo 'Development:'
2006-01-23 17:09:05 +05:30
@echo ' check - run the test suite for all applets'
2006-05-04 17:08:33 +05:30
@echo ' checkhelp - check for missing help-entries in Config.in'
2006-01-23 17:09:05 +05:30
@echo ' randconfig - generate a random configuration'
@echo ' release - create a distribution tarball'
@echo ' sizes - show size of all enabled busybox symbols'
2006-04-26 15:40:25 +05:30
@echo ' objsizes - show size of each .o object built'
2005-09-26 21:19:41 +05:30
@echo
2005-10-07 16:23:15 +05:30
2006-03-14 00:34:00 +05:30
i n c l u d e $( top_srcdir ) / R u l e s . m a k
2006-03-09 14:33:37 +05:30
2005-10-05 13:10:46 +05:30
i f n e q ( $( strip $ ( HAVE_DOT_CONFIG ) ) , y )
2006-03-14 00:34:00 +05:30
2005-10-07 16:23:15 +05:30
# Default target if none was requested explicitly
2006-03-14 01:00:06 +05:30
all : menuconfig
2001-04-03 22:08:37 +05:30
2005-10-07 16:23:15 +05:30
# warn if no configuration exists and we are asked to build a non-config target
.config :
@echo ""
@echo " No $( top_builddir) / $@ found! "
2006-03-14 00:34:00 +05:30
@echo "Please refer to 'make help', section Configuration."
2005-10-07 16:23:15 +05:30
@echo ""
@exit 1
2005-10-05 13:10:46 +05:30
# configuration
# ---------------------------------------------------------------------------
2004-10-08 13:16:08 +05:30
2005-10-05 13:10:46 +05:30
scripts/config/conf : scripts /config /Makefile
2006-02-02 07:11:53 +05:30
$( Q) $( MAKE) -C scripts/config conf
2006-03-14 00:34:00 +05:30
-@if [ ! -f .config ] ; then \
touch .config; \
fi
2005-10-05 13:10:46 +05:30
scripts/config/mconf : scripts /config /Makefile
2006-02-02 07:11:53 +05:30
$( Q) $( MAKE) -C scripts/config ncurses conf mconf
2006-03-14 00:34:00 +05:30
-@if [ ! -f .config ] ; then \
touch .config; \
fi
2005-10-05 13:10:46 +05:30
menuconfig : scripts /config /mconf
2006-03-13 08:22:23 +05:30
@[ -f .config ] || make $( MAKEFLAGS) defconfig
2005-10-05 13:10:46 +05:30
@./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-03-02 04:24:48 +05:30
@$( SED) -i -r -e "s/^(USING_CROSS_COMPILER)=.*/# \1 is not set/" .config
2005-10-05 13:10:46 +05:30
@./scripts/config/conf -o $( CONFIG_CONFIG_IN)
allnoconfig : scripts /config /conf
@./scripts/config/conf -n $( CONFIG_CONFIG_IN)
2006-02-09 00:20:17 +05:30
# 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 08:12:50 +05:30
2005-10-05 13:10:46 +05:30
defconfig : scripts /config /conf
2006-01-31 08:12:50 +05:30
@./scripts/config/conf -y $( CONFIG_CONFIG_IN)
2006-03-02 04:24:48 +05:30
@$( SED) -i -r -e "s/^(USING_CROSS_COMPILER|CONFIG_(DEBUG.*|STATIC|SELINUX|BUILD_(AT_ONCE|LIBBUSYBOX)|FEATURE_(DEVFS|FULL_LIBBUSYBOX|SHARED_BUSYBOX|MTAB_SUPPORT|CLEAN_UP|UDHCP_DEBUG)|INSTALL_NO_USR))=.*/# \1 is not set/" .config
2006-01-31 08:12:50 +05:30
@./scripts/config/conf -o $( CONFIG_CONFIG_IN)
2006-03-14 00:34:00 +05:30
2005-10-08 16:38:28 +05:30
allbareconfig : scripts /config /conf
@./scripts/config/conf -y $( CONFIG_CONFIG_IN)
2006-03-02 04:24:48 +05:30
@$( 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
@$( SED) -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config
2005-10-08 16:38:28 +05:30
@echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config
2006-03-22 20:54:24 +05:30
@yes n | ./scripts/config/conf -o $( CONFIG_CONFIG_IN)
2005-10-08 00:15:03 +05:30
2006-03-14 00:34:00 +05:30
e l s e # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
2004-10-08 13:16:08 +05:30
2006-03-14 00:34:00 +05:30
all : busybox busybox .links doc
2001-10-24 13:28:02 +05:30
2006-03-14 00:34:00 +05:30
# In this section, we need .config
- 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 ) )
2006-03-02 04:24:48 +05:30
2006-03-14 00:34:00 +05:30
e n d i f # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
2005-10-05 13:10:46 +05:30
2006-03-14 00:34:00 +05:30
- i n c l u d e $( top_builddir ) / . c o n f i g
2006-01-15 19:34:57 +05:30
- i n c l u d e $( top_builddir ) / . d e p e n d
2006-03-02 04:24:48 +05:30
2006-01-25 21:28:04 +05:30
i f e q ( $( strip $ ( CONFIG_BUILD_AT_ONCE ) ) , y )
2006-03-09 14:33:37 +05:30
libraries-y :=
2006-01-15 19:34:57 +05:30
# Which parts of the internal libs are requested?
# Per default we only want what was actually selected.
2006-01-25 21:28:04 +05:30
# -a denotes all while -y denotes the selected ones.
i f e q ( $( strip $ ( CONFIG_FEATURE_FULL_LIBBUSYBOX ) ) , y )
2006-01-15 19:34:57 +05:30
LIBRARY_DEFINE := $( LIBRARY_DEFINE-a)
LIBRARY_SRC := $( LIBRARY_SRC-a)
2006-01-25 21:28:04 +05:30
e l s e # CONFIG_FEATURE_FULL_LIBBUSYBOX
2006-01-15 19:34:57 +05:30
LIBRARY_DEFINE := $( LIBRARY_DEFINE-y)
LIBRARY_SRC := $( LIBRARY_SRC-y)
2006-01-25 21:28:04 +05:30
e n d i f # CONFIG_FEATURE_FULL_LIBBUSYBOX
APPLET_SRC := $( APPLET_SRC-y)
APPLETS_DEFINE := $( APPLETS_DEFINE-y)
2006-01-15 19:34:57 +05:30
e l s e # CONFIG_BUILD_AT_ONCE
2006-01-25 21:28:04 +05:30
# no --combine, build archives out of the individual .o
# This was the old way the binary was built.
2006-03-09 14:33:37 +05:30
libbusybox-obj := archival/libunarchive/libunarchive.a \
networking/libiproute/libiproute.a \
2006-03-14 00:34:00 +05:30
libpwdgrp/libpwdgrp.a \
coreutils/libcoreutils/libcoreutils.a \
2006-03-09 14:33:37 +05:30
libbb/libbb.a
libbusybox-obj := $( patsubst %,$( top_builddir) /%,$( libbusybox-obj) )
2006-03-14 00:34:00 +05:30
2006-01-25 21:28:04 +05:30
i f e q ( $( strip $ ( CONFIG_FEATURE_SHARED_BUSYBOX ) ) , y )
2006-03-09 14:33:37 +05:30
# linking against libbusybox, so don't build the .a already contained in the .so
libraries-y := $( filter-out $( libbusybox-obj) ,$( libraries-y) )
2006-01-25 21:28:04 +05:30
e n d i f # CONFIG_FEATURE_SHARED_BUSYBOX
2006-03-09 14:33:37 +05:30
e n d i f # CONFIG_BUILD_AT_ONCE
2006-01-15 19:34:57 +05:30
2006-03-14 00:34:00 +05:30
2006-01-25 21:28:04 +05:30
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)
2006-04-04 02:46:52 +05:30
e n d i f # CONFIG_BUILD_LIBBUSYBOX
2006-01-25 21:28:04 +05:30
i f e q ( $( strip $ ( CONFIG_BUILD_AT_ONCE ) ) , y )
i f n e q ( $( strip $ ( CONFIG_FEATURE_SHARED_BUSYBOX ) ) , y )
2006-03-14 00:34:00 +05:30
# --combine but not linking against libbusybox, so compile all
2006-01-25 21:28:04 +05:30
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 19:34:57 +05:30
e n d i f # CONFIG_BUILD_AT_ONCE
2006-01-25 21:28:04 +05:30
i f e q ( $( strip $ ( CONFIG_FEATURE_SHARED_BUSYBOX ) ) , y )
LDBUSYBOX := -L$( top_builddir) -lbusybox
e n d i f
2006-01-15 19:34:57 +05:30
2006-01-25 21:28:04 +05:30
i f e q ( $( strip $ ( CONFIG_BUILD_LIBBUSYBOX ) ) , y )
2006-01-15 19:34:57 +05:30
$(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-03-09 14:33:37 +05:30
$( do_link) $( LIB_CFLAGS) $( CFLAGS_COMBINE) \
2006-01-15 19:34:57 +05:30
-Wl,-soname= $( LD_LIBBUSYBOX) .$( MAJOR_VERSION) \
2006-01-27 21:15:56 +05:30
-Wl,-z,combreloc $( LIB_LDFLAGS) \
2006-01-15 19:34:57 +05:30
-o $( @) \
2006-03-14 00:34:00 +05:30
-Wl,--start-group -Wl,--whole-archive \
$( LIBRARY_DEFINE) $( ^) \
-Wl,--no-whole-archive -Wl,--end-group
2006-03-02 04:24:48 +05:30
@rm -f $( DO_INSTALL_LIBS)
@for i in $( DO_INSTALL_LIBS) ; do ln -s $( @) $$ i ; done
2006-02-02 07:11:53 +05:30
$( do_strip)
2006-01-15 19:34:57 +05:30
e n d i f # ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y)
2006-03-14 00:34:00 +05:30
busybox_unstripped : .depend $( LIBBUSYBOX_SONAME ) $( BUSYBOX_SRC ) $( libraries -y )
2006-03-02 04:24:48 +05:30
$( do_link) $( PROG_CFLAGS) $( PROG_LDFLAGS) $( CFLAGS_COMBINE) \
2006-03-14 00:34:00 +05:30
-o $@ -Wl,--start-group \
2006-01-25 21:28:04 +05:30
$( APPLETS_DEFINE) $( APPLET_SRC) \
2006-03-14 00:34:00 +05:30
$( BUSYBOX_DEFINE) $( BUSYBOX_SRC) $( libraries-y) \
2006-01-25 21:28:04 +05:30
$( LDBUSYBOX) $( LIBRARIES) \
2006-01-15 19:34:57 +05:30
-Wl,--end-group
2006-03-02 15:14:32 +05:30
busybox : busybox_unstripped
$( Q) cp busybox_unstripped busybox
2006-02-02 07:11:53 +05:30
$( do_strip)
2000-09-21 07:34:51 +05:30
2006-04-21 06:48:07 +05:30
%.bflt : %_unstripped
$( do_elf2flt)
2005-12-16 11:42:46 +05:30
busybox.links : $( top_srcdir ) /applets /busybox .mkll include /bb_config .h $( top_srcdir ) /include /applets .h
2006-02-02 07:11:53 +05:30
$( Q) -$( SHELL) $^ >$@
2001-10-24 10:30:29 +05:30
2004-10-13 23:15:57 +05:30
install : $( top_srcdir ) /applets /install .sh busybox busybox .links
2006-03-02 04:24:48 +05:30
$( Q) DO_INSTALL_LIBS = " $( strip $( LIBBUSYBOX_SONAME) $( DO_INSTALL_LIBS) ) " \
2006-01-15 19:34:57 +05:30
$( SHELL) $< $( PREFIX) $( INSTALL_OPTS)
2004-08-27 04:43:00 +05:30
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 11:31:43 +05:30
2003-08-29 17:50:31 +05:30
uninstall : busybox .links
2006-03-02 04:24:48 +05:30
rm -f $( PREFIX) /bin/busybox
for i in ` cat busybox.links` ; do rm -f $( PREFIX) $$ i; done
2006-01-15 19:34:57 +05:30
i f n e q ( $( strip $ ( DO_INSTALL_LIBS ) ) , n )
for i in $( LIBBUSYBOX_SONAME) $( DO_INSTALL_LIBS) ; do \
2006-03-02 04:24:48 +05:30
rm -f $( PREFIX) $$ i; \
2006-01-15 19:34:57 +05:30
done
e n d i f
2002-04-13 19:09:48 +05:30
2006-03-14 00:34:00 +05:30
# 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
# ARFLAGS+=v
e n d i f
2005-09-24 11:17:52 +05:30
check test : busybox
2004-10-08 13:16:08 +05:30
bindir = $( top_builddir) srcdir = $( top_srcdir) /testsuite \
2005-10-06 18:18:03 +05:30
$( top_srcdir) /testsuite/runtest $( CHECK_VERBOSE)
2000-05-03 08:49:06 +05:30
2006-05-04 17:08:33 +05:30
.PHONY : checkhelp
checkhelp :
$( Q) $( top_srcdir) /scripts/checkhelp.awk \
$( wildcard $( patsubst %,%/Config.in,$( SRC_DIRS) ./) )
2006-04-26 15:40:25 +05:30
.PHONY : sizes
2006-03-02 15:14:32 +05:30
sizes : busybox_unstripped
$( NM) --size-sort $( <)
2005-09-02 06:11:53 +05:30
2006-04-26 15:40:25 +05:30
.PHONY : objsizes
objsizes : busybox_unstripped
$( SHELL) $( top_srcdir) /scripts/objsizes
2001-10-24 10:30:29 +05:30
# Documentation Targets
2006-03-14 00:34:00 +05:30
doc : docs /busybox .pod docs /BusyBox .txt docs /BusyBox .1 docs /BusyBox .html
2001-04-06 01:12:03 +05:30
2006-02-06 03:45:39 +05:30
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 07:11:53 +05:30
$( disp_doc)
$( Q) -mkdir -p docs
2006-03-02 04:24:48 +05:30
$( Q) -( cat $( top_srcdir) /docs/busybox_header.pod ; \
$( top_srcdir) /docs/autodocifier.pl $( top_srcdir) /include/usage.h ; \
cat $( top_srcdir) /docs/busybox_footer.pod ; ) > docs/busybox.pod
2000-07-05 01:12:23 +05:30
2000-07-07 04:23:22 +05:30
docs/BusyBox.txt : docs /busybox .pod
2006-02-02 07:11:53 +05:30
$( disp_doc)
$( Q) -mkdir -p docs
$( Q) -pod2text $< > $@
2000-07-05 01:12:23 +05:30
2000-07-07 04:23:22 +05:30
docs/BusyBox.1 : docs /busybox .pod
2006-02-02 07:11:53 +05:30
$( disp_doc)
$( Q) -mkdir -p docs
$( Q) -pod2man --center= BusyBox --release= " version $( VERSION) " \
2001-02-17 06:12:47 +05:30
$< > $@
2000-07-05 01:12:23 +05:30
2001-12-08 07:26:15 +05:30
docs/BusyBox.html : docs /busybox .net /BusyBox .html
2006-02-02 07:11:53 +05:30
$( disp_doc)
$( Q) -mkdir -p docs
2006-03-02 04:24:48 +05:30
$( Q) -rm -f docs/BusyBox.html
2006-02-02 07:11:53 +05:30
$( Q) -cp docs/busybox.net/BusyBox.html docs/BusyBox.html
2000-07-05 01:12:23 +05:30
2001-12-08 07:26:15 +05:30
docs/busybox.net/BusyBox.html : docs /busybox .pod
2006-02-02 07:11:53 +05:30
$( Q) -mkdir -p docs/busybox.net
$( Q) -pod2html --noindex $< > \
2001-12-08 07:26:15 +05:30
docs/busybox.net/BusyBox.html
2006-03-02 04:24:48 +05:30
$( Q) -rm -f pod2htm*
2000-07-05 01:12:23 +05:30
2006-03-02 04:24:48 +05:30
# The nifty new dependency stuff
2005-09-12 18:03:27 +05:30
scripts/bb_mkdep : $( top_srcdir ) /scripts /bb_mkdep .c
2006-04-29 09:49:10 +05:30
$( do_link.h)
2000-04-21 06:56:49 +05:30
2006-02-15 17:59:37 +05:30
DEP_INCLUDES := include/bb_config.h
2005-09-21 13:19:34 +05:30
i f e q ( $( strip $ ( CONFIG_BBCONFIG ) ) , y )
DEP_INCLUDES += include/bbconfigopts.h
include/bbconfigopts.h : .config
2006-02-02 07:11:53 +05:30
$( disp_gen)
$( Q) $( top_srcdir) /scripts/config/mkconfigs > $@
2005-09-21 13:19:34 +05:30
e n d i f
2006-04-28 05:04:46 +05:30
scripts/usage : $( top_srcdir ) /scripts /usage .c .config
2006-04-29 09:49:10 +05:30
$( do_link.h) -I$( top_srcdir) /include
2006-04-28 05:04:46 +05:30
DEP_INCLUDES += include/usage_compressed.h
include/usage_compressed.h : .config scripts /usage
$( Q) sh $( top_srcdir) /scripts/usage_compressed " $( top_srcdir) /scripts " > $@
2006-03-14 00:34:00 +05:30
depend dep : .depend
.depend : scripts /bb_mkdep $( DEP_INCLUDES )
2006-02-02 07:11:53 +05:30
$( disp_gen)
2006-03-02 04:24:48 +05:30
$( Q) rm -f .depend
2006-03-14 00:34:00 +05:30
$( Q) mkdir -p include/config
$( Q) scripts/bb_mkdep -I $( top_srcdir) /include $( top_srcdir) > $@ .tmp
2006-02-02 07:11:53 +05:30
$( Q) mv $@ .tmp $@
2001-03-17 04:17:14 +05:30
2006-02-15 17:59:37 +05:30
include/bb_config.h : .config
2006-03-14 00:34:00 +05:30
@if [ ! -x $( top_builddir) /scripts/config/conf ] ; then \
$( MAKE) -C scripts/config conf; \
fi ;
2004-10-08 13:16:08 +05:30
@$( top_builddir) /scripts/config/conf -o $( CONFIG_CONFIG_IN)
2002-04-27 05:36:47 +05:30
1999-10-05 21:54:54 +05:30
clean :
2006-03-14 00:34:00 +05:30
- $( MAKE) -C scripts/config $@
2006-03-02 04:24:48 +05:30
- rm -f docs/busybox.dvi docs/busybox.ps \
2004-04-06 20:56:25 +05:30
docs/busybox.pod docs/busybox.net/busybox.html \
2003-08-23 02:23:38 +05:30
docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
2006-01-23 16:54:58 +05:30
docs/busybox.net/BusyBox.html busybox.links \
2006-03-06 19:49:15 +05:30
libbusybox.so* \
2006-03-05 21:55:19 +05:30
.config.old busybox busybox_unstripped
2006-03-02 04:24:48 +05:30
- rm -r -f _install testsuite/links
2006-03-10 03:31:05 +05:30
- find . -name .\* .flags -o -name \* .o -o -name \* .om \
-o -name \* .os -o -name \* .osm -o -name \* .a | xargs rm -f
1999-10-05 21:54:54 +05:30
distclean : clean
2006-03-02 04:24:48 +05:30
- rm -f scripts/bb_mkdep
- rm -r -f include/config $( DEP_INCLUDES)
2006-03-14 00:34:00 +05:30
- find . -name .depend'*' | xargs rm -f
2006-03-02 04:24:48 +05:30
rm -f .config .config.old .config.cmd
1999-10-07 01:55:32 +05:30
2002-12-05 14:11:41 +05:30
release : distclean #doc
2005-08-02 02:18:00 +05:30
cd ..; \
2006-03-02 04:24:48 +05:30
rm -r -f $( PROG) -$( VERSION) ; \
2005-08-02 02:18:00 +05:30
cp -a busybox $( PROG) -$( VERSION) ; \
\
find $( PROG) -$( VERSION) / -type d \
2005-08-17 05:33:23 +05:30
-name .svn \
2005-08-02 02:18:00 +05:30
-print \
2006-03-02 04:24:48 +05:30
-exec rm -r -f { } \; ; \
2005-08-02 02:18:00 +05:30
\
find $( PROG) -$( VERSION) / -type f \
-name .\# * \
-print \
2006-03-02 04:24:48 +05:30
-exec rm -f { } \; ; \
2005-08-02 02:18:00 +05:30
\
2003-11-17 15:56:43 +05:30
tar -cvzf $( PROG) -$( VERSION) .tar.gz $( PROG) -$( VERSION) /;
2000-07-11 04:30:47 +05:30
2002-12-05 14:11:41 +05:30
tags :
ctags -R .
2001-10-24 10:30:29 +05:30
2006-03-09 14:33:37 +05:30
2006-03-14 00:34:00 +05:30
e n d i f # ifeq ($(skip-makefile),)
.PHONY : dummy subdirs release distclean clean config oldconfig \
menuconfig tags check test depend dep buildtree