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
#
2006-05-27 21:24:16 +00:00
# You shouldn't have to edit anything in this file for configuration
# purposes, try "make help" or read http://busybox.net/FAQ.html.
.PHONY : dummy subdirs release distclean clean config oldconfig menuconfig \
tags check test depend dep buildtree hosttools _all checkhelp \
sizes bloatcheck baseline objsizes
2006-05-26 13:22:57 +00:00
noconfig_targets := menuconfig config oldconfig randconfig hosttools \
2005-10-08 11:08:28 +00:00
defconfig allyesconfig allnoconfig allbareconfig \
2006-03-13 03:19:46 +00:00
clean distclean help \
2005-02-13 22:15:59 +00:00
release tags
2004-10-08 07:46:08 +00:00
2006-06-10 14:58:33 +00:00
nocheck_targets := clean distclean help release tags
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
2006-03-13 19:04:00 +00:00
top_srcdir = $( CURDIR)
2004-10-08 07:46:08 +00:00
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
2006-03-13 19:04:00 +00:00
top_builddir = $( CURDIR)
2004-10-08 07:46:08 +00:00
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 \
2006-05-08 03:24:36 +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
2006-03-13 19:04:00 +00:00
_all :
2005-10-05 07:40:46 +00:00
2006-03-13 19:04:00 +00:00
CONFIG_CONFIG_IN = $( top_srcdir) /Config.in
2004-10-08 07:46:08 +00:00
2006-06-13 14:20:17 +00:00
i f e q ( $( BUILD_SRC ) , )
2004-10-08 07:46:08 +00:00
i f d e f O
ifeq ( " $( origin O) " , "command line" )
2006-06-13 14:20:17 +00:00
BUILD_OUTPUT := $( O)
2006-03-13 19:04:00 +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
2006-06-13 14:20:17 +00:00
# We are using BUILD_OUTPUT nevertheless to make sure that we create
2006-03-13 19:04:00 +00:00
# Rules.mak and the toplevel Makefile, in case they don't exist.
2006-06-13 14:20:17 +00:00
BUILD_OUTPUT := $( top_builddir)
e n d i f
# see if we are in verbose mode
BUILD_VERBOSE :=
i f d e f V
ifeq ( " $( origin V) " , "command line" )
BUILD_VERBOSE := $( V)
endif
e n d i f
i f d e f V E R B O S E
ifeq ( " $( origin VERBOSE) " , "command line" )
BUILD_VERBOSE := $( VERBOSE)
endif
e n d i f
i f n e q ( $( strip $ ( BUILD_VERBOSE ) ) , )
export BUILD_VERBOSE
CHECK_VERBOSE := -v
# ARFLAGS+=v
2004-10-08 07:46:08 +00:00
e n d i f
2006-03-13 19:04:00 +00:00
i f n e q ( $( strip $ ( HAVE_DOT_CONFIG ) ) , y )
2006-06-10 14:58:33 +00:00
# pull in settings early
2006-03-13 19:04:00 +00:00
- i n c l u d e $( top_srcdir ) / R u l e s . m a k
2006-03-09 09:03:37 +00:00
e n d i f
2006-03-13 19:04:00 +00:00
# All object directories.
OBJ_DIRS := $( DIRS)
all_tree := $( patsubst %,$( top_builddir) /%,$( OBJ_DIRS) scripts scripts/config include)
all_tree : $( all_tree )
2005-10-07 10:53:15 +00:00
$(all_tree) :
@mkdir -p " $@ "
2006-06-13 14:20:17 +00:00
i f n e q ( $( BUILD_OUTPUT ) , )
2006-03-13 19:04:00 +00:00
# Invoke a second make in the output directory, passing relevant variables
# Check that the output directory actually exists
2006-06-13 14:20:17 +00:00
saved-output := $( BUILD_OUTPUT)
BUILD_OUTPUT := $( shell cd $( BUILD_OUTPUT) && /bin/pwd)
$( if $ ( wildcard $ ( BUILD_OUTPUT ) ) ,, \
2004-10-08 07:46:08 +00:00
$( error output directory " $( saved-output) " does not exist) )
2006-03-13 19:04:00 +00:00
.PHONY : $( MAKECMDGOALS )
2006-06-13 14:20:17 +00:00
$(filter-out _all,$(MAKECMDGOALS)) _all : $( BUILD_OUTPUT ) /Rules .mak $( BUILD_OUTPUT ) /Makefile all_tree
$( Q) $( MAKE) -C $( BUILD_OUTPUT) \
2006-03-13 19:04:00 +00:00
top_srcdir = $( top_srcdir) \
top_builddir = $( top_builddir) \
2006-06-13 14:20:17 +00:00
BUILD_SRC = $( top_srcdir) \
2006-03-13 19:04:00 +00:00
-f $( CURDIR) /Makefile $@
2004-10-08 07:46:08 +00:00
2006-06-13 14:20:17 +00:00
$(BUILD_OUTPUT)/Rules.mak :
2004-10-08 07:46:08 +00:00
@echo > $@
2005-10-05 07:40:46 +00:00
@echo top_srcdir = $( top_srcdir) >> $@
2006-06-13 14:20:17 +00:00
@echo top_builddir = $( BUILD_OUTPUT) >> $@
2006-03-13 19:04:00 +00:00
@echo include $( top_srcdir) /Rules.mak >> $@
2004-10-08 07:46:08 +00:00
2006-06-13 14:20:17 +00:00
$(BUILD_OUTPUT)/Makefile :
2004-10-08 07:46:08 +00:00
@echo > $@
2005-10-05 07:40:46 +00:00
@echo top_srcdir = $( top_srcdir) >> $@
2006-06-13 14:20:17 +00:00
@echo top_builddir = $( BUILD_OUTPUT) >> $@
@echo BUILD_SRC = '$$(top_srcdir)' >> $@
@echo include '$$(BUILD_SRC)' /Makefile >> $@
2004-10-08 07:46:08 +00:00
2006-03-13 19:04:00 +00:00
# Leave processing to above invocation of make
skip-makefile := 1
2006-06-13 14:20:17 +00:00
e n d i f # ifneq ($(BUILD_OUTPUT),)
e n d i f # ifeq ($(BUILD_SRC),)
2004-10-08 07:46:08 +00:00
2006-03-13 19:04:00 +00:00
i f e q ( $( skip -makefile ) , )
2004-10-08 07:46:08 +00:00
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.
2006-03-13 19:04:00 +00:00
scripts/config/Makefile : $( top_srcdir ) /scripts /config /Makefile
cp $< $@
2005-10-07 10:53:15 +00:00
2006-03-13 19:04:00 +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}'
2006-06-16 17:19:39 +00:00
@echo ' html - create html-based cross-reference'
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'
2006-05-26 13:22:57 +00:00
@echo ' hosttools - build sed for the host.'
@echo ' You can use these commands if the commands on the host'
@echo ' is unusable. Afterwards use it like:'
@echo ' make SED="$(top_builddir)/sed"'
2005-09-26 15:49:41 +00:00
@echo
@echo 'Installation:'
2006-03-20 17:50:08 +00:00
@echo ' install - install busybox into $(PREFIX)'
2005-09-26 15:49:41 +00:00
@echo ' uninstall'
@echo
@echo 'Development:'
2006-05-28 01:40:26 +00:00
@echo ' baseline - create busybox_old for bloatcheck.'
2006-05-11 17:33:10 +00:00
@echo ' bloatcheck - show size difference between old and new versions'
2006-01-23 11:39:05 +00:00
@echo ' check - run the test suite for all applets'
2006-05-04 11:38:33 +00:00
@echo ' checkhelp - check for missing help-entries in Config.in'
2006-01-23 11:39:05 +00:00
@echo ' randconfig - generate a random configuration'
@echo ' release - create a distribution tarball'
@echo ' sizes - show size of all enabled busybox symbols'
2006-04-26 10:10:25 +00:00
@echo ' objsizes - show size of each .o object built'
2005-09-26 15:49:41 +00:00
@echo
2005-10-07 10:53:15 +00:00
2006-03-13 19:04:00 +00:00
i n c l u d e $( top_srcdir ) / R u l e s . m a k
2006-03-09 09:03:37 +00:00
2005-10-05 07:40:46 +00:00
i f n e q ( $( strip $ ( HAVE_DOT_CONFIG ) ) , y )
2006-03-13 19:04:00 +00:00
2005-10-07 10:53:15 +00:00
# Default target if none was requested explicitly
2006-03-13 19:30:06 +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! "
2006-03-13 19:04:00 +00:00
@echo "Please refer to 'make help', section Configuration."
2005-10-07 10:53:15 +00:00
@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
2006-03-13 19:04:00 +00:00
-@if [ ! -f .config ] ; then \
touch .config; \
fi
2005-10-05 07:40:46 +00:00
scripts/config/mconf : scripts /config /Makefile
2006-02-02 01:41:53 +00:00
$( Q) $( MAKE) -C scripts/config ncurses conf mconf
2006-03-13 19:04:00 +00:00
-@if [ ! -f .config ] ; then \
touch .config; \
fi
2005-10-05 07:40:46 +00:00
menuconfig : scripts /config /mconf
2006-05-19 18:33:34 +00:00
@[ -f .config ] || $( MAKE) $( MAKEFLAGS) defconfig
2005-10-05 07:40:46 +00:00
@./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
2006-05-19 18:33:34 +00:00
@./scripts/config/conf -y $( CONFIG_CONFIG_IN) > /dev/null
2005-10-05 07:40:46 +00:00
allnoconfig : scripts /config /conf
2006-05-19 18:33:34 +00:00
@./scripts/config/conf -n $( CONFIG_CONFIG_IN) > /dev/null
2005-10-05 07:40:46 +00:00
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-05-19 18:33:34 +00:00
@./scripts/config/conf -y $( CONFIG_CONFIG_IN) > /dev/null
2006-07-30 18:56:29 +00:00
@$( SED) -i -r -e "s/^(CONFIG_(DEBUG.*|STATIC|SELINUX|NITPICK|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-05-19 18:33:34 +00:00
@./scripts/config/conf -o $( CONFIG_CONFIG_IN) > /dev/null
2006-01-31 02:42:50 +00:00
2006-03-13 19:04:00 +00:00
2005-10-08 11:08:28 +00:00
allbareconfig : scripts /config /conf
2006-05-19 18:33:34 +00:00
@./scripts/config/conf -y $( CONFIG_CONFIG_IN) > /dev/null
2006-07-04 08:26:55 +00:00
@$( SED) -i -r -e "s/^(CONFIG_(DEBUG|STATIC|SELINUX|DEVFSD|NC_GAPING_SECURITY_HOLE|BUILD_AT_ONCE)).*/# \1 is not set/" .config
2006-03-01 22:54:48 +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
2006-05-19 18:33:34 +00:00
@yes n | ./scripts/config/conf -o $( CONFIG_CONFIG_IN) > /dev/null
2005-10-07 18:45:03 +00:00
2006-05-26 13:22:57 +00:00
hosttools :
$( Q) cp .config .config.bak || noold = yea
$( Q) $( MAKE) CC = " $( HOSTCC) " CFLAGS = " $( HOSTCFLAGS) $( INCS) " allnoconfig
$( Q) mv .config .config.in
$( Q) ( grep -v CONFIG_SED .config.in ; \
echo "CONFIG_SED=y" ; ) > .config
$( Q) $( MAKE) CC = " $( HOSTCC) " CFLAGS = " $( HOSTCFLAGS) $( INCS) " oldconfig include/bb_config.h
$( Q) $( MAKE) CC = " $( HOSTCC) " CFLAGS = " $( HOSTCFLAGS) $( INCS) " busybox
$( Q) [ -f .config.bak ] && mv .config.bak .config || rm .config
mv busybox sed
@echo " Now do: $( MAKE) SED= $( top_builddir) /sed <target> "
2006-03-13 19:04:00 +00:00
e l s e # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
2004-10-08 07:46:08 +00:00
2006-03-13 19:04:00 +00:00
all : busybox busybox .links doc
2001-10-24 07:58:02 +00:00
2006-03-13 19:04:00 +00:00
# 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-01 22:54:48 +00:00
2006-03-13 19:04:00 +00:00
e n d i f # ifneq ($(strip $(HAVE_DOT_CONFIG)),y)
2005-10-05 07:40:46 +00:00
2006-03-13 19:04:00 +00:00
- i n c l u d e $( top_builddir ) / . c o n f i g
2006-01-15 14:04:57 +00:00
- i n c l u d e $( top_builddir ) / . d e p e n d
2006-03-01 22:54:48 +00:00
2006-01-25 15:58:04 +00:00
i f e q ( $( strip $ ( CONFIG_BUILD_AT_ONCE ) ) , y )
2006-03-09 09:03:37 +00:00
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-08-28 23:31:54 +00:00
APPLET_SRC :=
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-03-09 09:03:37 +00:00
libbusybox-obj := archival/libunarchive/libunarchive.a \
networking/libiproute/libiproute.a \
2006-03-13 19:04:00 +00:00
libpwdgrp/libpwdgrp.a \
coreutils/libcoreutils/libcoreutils.a \
2006-03-09 09:03:37 +00:00
libbb/libbb.a
libbusybox-obj := $( patsubst %,$( top_builddir) /%,$( libbusybox-obj) )
2006-03-13 19:04:00 +00:00
2006-01-25 15:58:04 +00:00
i f e q ( $( strip $ ( CONFIG_FEATURE_SHARED_BUSYBOX ) ) , y )
2006-03-09 09:03:37 +00:00
# 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 15:58:04 +00:00
e n d i f # CONFIG_FEATURE_SHARED_BUSYBOX
2006-03-09 09:03:37 +00:00
e n d i f # CONFIG_BUILD_AT_ONCE
2006-01-15 14:04:57 +00:00
2006-03-13 19:04:00 +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)
2006-04-03 21:16:52 +00:00
e n d i f # CONFIG_BUILD_LIBBUSYBOX
2006-01-25 15:58:04 +00:00
i f e q ( $( strip $ ( CONFIG_BUILD_AT_ONCE ) ) , y )
i f n e q ( $( strip $ ( CONFIG_FEATURE_SHARED_BUSYBOX ) ) , y )
2006-03-13 19:04:00 +00:00
# --combine but not linking against libbusybox, so compile all
2006-01-25 15:58:04 +00:00
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
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-06-13 14:20:17 +00:00
$( do_link.so) \
2006-01-15 14:04:57 +00:00
-Wl,-soname= $( LD_LIBBUSYBOX) .$( MAJOR_VERSION) \
2006-06-13 14:20:17 +00:00
-Wl,-z,combreloc
2006-03-01 22:54:48 +00:00
@rm -f $( DO_INSTALL_LIBS)
@for i in $( DO_INSTALL_LIBS) ; do ln -s $( @) $$ 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)
2006-05-19 18:37:34 +00:00
busybox_unstripped : .depend $( LIBBUSYBOX_SONAME ) $( BUSYBOX_SRC ) $( APPLET_SRC ) $( libraries -y )
2006-06-13 14:20:17 +00:00
$( do_link)
2006-03-02 09:44:32 +00:00
busybox : busybox_unstripped
$( Q) cp busybox_unstripped busybox
2006-02-02 01:41:53 +00:00
$( do_strip)
2000-09-21 02:04:51 +00:00
2006-04-21 01:18:07 +00:00
%.bflt : %_unstripped
$( do_elf2flt)
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-03-01 22:54:48 +00:00
$( Q) DO_INSTALL_LIBS = " $( strip $( LIBBUSYBOX_SONAME) $( DO_INSTALL_LIBS) ) " \
2006-01-15 14:04:57 +00:00
$( 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-03-01 22:54:48 +00:00
rm -f $( PREFIX) /bin/busybox
for i in ` cat busybox.links` ; do rm -f $( PREFIX) $$ i; done
2006-01-15 14:04:57 +00:00
i f n e q ( $( strip $ ( DO_INSTALL_LIBS ) ) , n )
for i in $( LIBBUSYBOX_SONAME) $( DO_INSTALL_LIBS) ; do \
2006-03-01 22:54:48 +00:00
rm -f $( PREFIX) $$ i; \
2006-01-15 14:04:57 +00:00
done
e n d i f
2002-04-13 13:39:48 +00:00
2005-09-24 05:47:52 +00:00
check test : busybox
2006-05-26 13:22:57 +00:00
bindir = $( top_builddir) srcdir = $( top_srcdir) /testsuite SED = " $( SED) " \
$( SHELL) $( top_srcdir) /testsuite/runtest $( CHECK_VERBOSE)
2000-05-03 03:19:06 +00:00
2006-05-04 11:38:33 +00:00
checkhelp :
$( Q) $( top_srcdir) /scripts/checkhelp.awk \
$( wildcard $( patsubst %,%/Config.in,$( SRC_DIRS) ./) )
2006-05-27 21:24:16 +00:00
2006-03-02 09:44:32 +00:00
sizes : busybox_unstripped
$( NM) --size-sort $( <)
2006-05-27 21:24:16 +00:00
2006-05-07 19:26:53 +00:00
bloatcheck : busybox_old busybox_unstripped
2006-05-08 20:48:12 +00:00
@$( top_srcdir) /scripts/bloat-o-meter busybox_old busybox_unstripped
2005-09-02 00:41:53 +00:00
2006-05-27 21:24:16 +00:00
baseline : busybox_unstripped
@mv busybox_unstripped busybox_old
2006-04-26 10:10:25 +00:00
objsizes : busybox_unstripped
$( SHELL) $( top_srcdir) /scripts/objsizes
2001-10-24 05:00:29 +00:00
# Documentation Targets
2006-03-13 19:04:00 +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
2006-03-01 22:54:48 +00:00
$( 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-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
2006-03-01 22:54:48 +00:00
$( Q) -rm -f docs/BusyBox.html
2006-02-02 01:41:53 +00:00
$( 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-03-01 22:54:48 +00:00
$( Q) -rm -f pod2htm*
2000-07-04 19:42:23 +00:00
2006-03-01 22:54:48 +00:00
# The nifty new dependency stuff
2005-09-12 12:33:27 +00:00
scripts/bb_mkdep : $( top_srcdir ) /scripts /bb_mkdep .c
2006-04-29 04:19:10 +00:00
$( do_link.h)
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
2006-06-15 21:35:35 +00:00
include/bbconfigopts.h : .config $( top_srcdir ) /scripts /config /mkconfigs
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
2006-05-21 09:02:12 +00:00
i f e q ( $( strip $ ( CONFIG_FEATURE_COMPRESS_USAGE ) ) , y )
2006-05-21 15:05:49 +00:00
USAGE_BIN := scripts/usage
2006-07-06 20:00:43 +00:00
$(USAGE_BIN) : $( top_srcdir ) /scripts /usage .c .config \
$( top_srcdir) /include/usage.h
2006-05-21 09:02:12 +00:00
$( do_link.h)
2006-04-27 23:34:46 +00:00
DEP_INCLUDES += include/usage_compressed.h
2006-05-21 09:02:12 +00:00
2006-07-06 20:00:43 +00:00
include/usage_compressed.h : .config $( USAGE_BIN ) \
$( top_srcdir) /scripts/usage_compressed
$( Q) SED = " $( SED) " $( SHELL) $( top_srcdir) /scripts/usage_compressed \
" $( top_builddir) /scripts " > $@
2006-05-21 09:02:12 +00:00
e n d i f # CONFIG_FEATURE_COMPRESS_USAGE
2006-04-27 23:34:46 +00:00
2006-03-13 19:04:00 +00:00
depend dep : .depend
2006-05-21 15:05:49 +00:00
.depend : scripts /bb_mkdep $( USAGE_BIN ) $( DEP_INCLUDES )
2006-02-02 01:41:53 +00:00
$( disp_gen)
2006-03-01 22:54:48 +00:00
$( Q) rm -f .depend
2006-03-13 19:04:00 +00:00
$( Q) mkdir -p include/config
$( 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
2006-03-13 19:04:00 +00:00
@if [ ! -x $( top_builddir) /scripts/config/conf ] ; then \
$( MAKE) -C scripts/config conf; \
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 :
2006-03-13 19:04:00 +00:00
- $( MAKE) -C scripts/config $@
2006-03-01 22:54:48 +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-03-06 14:19:15 +00:00
libbusybox.so* \
2006-07-06 20:00:43 +00:00
.config.old busybox busybox_unstripped \
include/usage_compressed.h scripts/usage
2006-03-01 22:54:48 +00:00
- rm -r -f _install testsuite/links
2006-06-16 17:19:39 +00:00
- find . -name .\* .flags -o -name \* .o -o -name \* .om -o -name \* .syn \
2006-03-09 22:01:05 +00:00
-o -name \* .os -o -name \* .osm -o -name \* .a | xargs rm -f
1999-10-05 16:24:54 +00:00
distclean : clean
2006-05-10 05:19:27 +00:00
rm -f scripts/bb_mkdep scripts/usage
2006-05-21 10:04:46 +00:00
rm -r -f include/config include/config.h $( DEP_INCLUDES)
2006-05-10 05:19:27 +00:00
find . -name .depend'*' -print0 | xargs -0 rm -f
2006-07-12 21:31:16 +00:00
find . -name '*.rej' -print0 | xargs -0 rm -f
2006-08-04 20:39:56 +00:00
rm -f .hdepend busybox_old .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 ..; \
2006-03-01 22:54:48 +00:00
rm -r -f $( PROG) -$( VERSION) ; \
2005-08-01 20:48:00 +00:00
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 \
2006-03-01 22:54:48 +00:00
-exec rm -r -f { } \; ; \
2005-08-01 20:48:00 +00:00
\
find $( PROG) -$( VERSION) / -type f \
-name .\# * \
-print \
2006-03-01 22:54:48 +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
2006-06-16 17:19:39 +00:00
# documentation, cross-reference
# Modern distributions already ship synopsis packages (e.g. debian)
# If you have an old distribution go to http://synopsis.fresco.org/
syn_tgt := $( wildcard $( patsubst %,%/*.c,$( SRC_DIRS) ) )
syn := $( patsubst %.c, %.syn, $( syn_tgt) )
%.syn : %.c
synopsis -p C -l Comments.SSDFilter,Comments.Previous $( INCS) -Wp,verbose,debug,preprocess,cppflags= " ' $( CFLAGS) $( EXTRA_CFLAGS) $( LDFLAGS) $( PROG_CFLAGS) $( PROG_LDFLAGS) $( CFLAGS_COMBINE) $( APPLETS_DEFINE) $( BUSYBOX_DEFINE) ' " -o $@ $<
html : $( syn )
synopsis -f HTML -Wf,title= "'BusyBox Documentation'" -o $@ $^
2006-03-09 09:03:37 +00:00
2006-03-13 19:04:00 +00:00
e n d i f # ifeq ($(skip-makefile),)