1999-10-20 22:08:37 +00:00
|
|
|
# Makefile for busybox
|
|
|
|
#
|
2001-10-24 05:00:29 +00:00
|
|
|
# Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
|
2000-02-11 21:55:04 +00:00
|
|
|
#
|
1999-10-20 22:08:37 +00:00
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2000-02-29 21:49:22 +00:00
|
|
|
PROG := busybox
|
2001-08-22 04:16:36 +00:00
|
|
|
VERSION := 0.61.pre
|
2001-04-12 20:11:55 +00:00
|
|
|
BUILDTIME := $(shell TZ=UTC date -u "+%Y.%m.%d-%H:%M%z")
|
2001-10-24 05:00:29 +00:00
|
|
|
TOPDIR := ${shell /bin/pwd}
|
|
|
|
HOSTCC := gcc
|
|
|
|
HOSTCFLAGS:= -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer
|
|
|
|
|
|
|
|
|
|
|
|
# What OS are you compiling busybox for? This allows you to include
|
|
|
|
# OS specific things, syscall overrides, etc.
|
|
|
|
TARGET_OS := linux
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2000-11-29 22:08:35 +00:00
|
|
|
# With a modern GNU make(1) (highly recommended, that's what all the
|
|
|
|
# developers use), all of the following configuration values can be
|
|
|
|
# overridden at the command line. For example:
|
2001-10-24 05:00:29 +00:00
|
|
|
# make CROSS=powerpc-linux- CONFIG_SRC_DIR=$HOME/busybox PREFIX=/mnt/app
|
2000-11-29 22:08:35 +00:00
|
|
|
|
2001-01-22 01:05:04 +00:00
|
|
|
# If you want to add some simple compiler switches (like -march=i686),
|
|
|
|
# especially from the command line, use this instead of CFLAGS directly.
|
|
|
|
# For optimization overrides, it's better still to set OPTIMIZATION.
|
|
|
|
CFLAGS_EXTRA =
|
|
|
|
|
2000-07-20 21:57:11 +00:00
|
|
|
# If you want a static binary, turn this on.
|
|
|
|
DOSTATIC = false
|
|
|
|
|
2000-02-07 05:29:42 +00:00
|
|
|
# Set the following to `true' to make a debuggable build.
|
|
|
|
# Leave this set to `false' for production use.
|
2000-12-07 03:56:10 +00:00
|
|
|
DODEBUG = false
|
1999-10-13 18:04:51 +00:00
|
|
|
|
2000-07-19 17:33:54 +00:00
|
|
|
# This enables compiling with dmalloc ( http://dmalloc.com/ )
|
|
|
|
# which is an excellent public domain mem leak and malloc problem
|
|
|
|
# detector. To enable dmalloc, before running busybox you will
|
|
|
|
# want to first set up your environment.
|
|
|
|
# eg: `export DMALLOC_OPTIONS=debug=0x14f47d83,inter=100,log=logfile`
|
|
|
|
# Do not enable this for production builds...
|
|
|
|
DODMALLOC = false
|
|
|
|
|
2001-04-04 19:32:00 +00:00
|
|
|
# Electric-fence is another very useful malloc debugging library.
|
2001-04-03 22:53:19 +00:00
|
|
|
# Do not enable this for production builds...
|
|
|
|
DOEFENCE = false
|
|
|
|
|
2000-09-21 02:23:30 +00:00
|
|
|
# If you want large file summit support, turn this on.
|
|
|
|
# This has no effect if you don't have a kernel with lfs
|
|
|
|
# support, and a system with libc-2.1.3 or later.
|
|
|
|
# Some of the programs that can benefit from lfs support
|
|
|
|
# are dd, gzip, mount, tar, and mkfs_minix.
|
|
|
|
# LFS allows you to use the above programs for files
|
|
|
|
# larger than 2GB!
|
|
|
|
DOLFS = false
|
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
# If you have a "pristine" source directory, point CONFIG_SRC_DIR to it.
|
2000-12-01 19:40:18 +00:00
|
|
|
# Experimental and incomplete; tell the mailing list
|
2001-12-08 01:56:15 +00:00
|
|
|
# <busybox@busybox.net> if you do or don't like it so far.
|
2001-10-24 05:00:29 +00:00
|
|
|
CONFIG_SRC_DIR =
|
2000-09-21 02:23:30 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
# If you are running a cross compiler, you may want to set CROSS
|
|
|
|
# to something more interesting, like "arm-linux-".
|
2000-11-29 22:08:35 +00:00
|
|
|
CROSS =
|
2001-10-24 05:00:29 +00:00
|
|
|
CC = $(CROSS)gcc
|
|
|
|
AR = $(CROSS)ar
|
|
|
|
AS = $(CROSS)as
|
|
|
|
LD = $(CROSS)ld
|
|
|
|
NM = $(CROSS)nm
|
|
|
|
STRIP = $(CROSS)strip
|
|
|
|
CPP = $(CC) -E
|
|
|
|
MAKEFILES = $(TOPDIR)/.config
|
|
|
|
export VERSION BUILDTIME TOPDIR HOSTCC HOSTCFLAGS CROSS CC AR AS LD NM STRIP CPP
|
|
|
|
|
2000-07-19 17:33:54 +00:00
|
|
|
|
2001-01-27 08:24:39 +00:00
|
|
|
# To compile vs uClibc, just use the compiler wrapper built by uClibc...
|
2001-08-20 17:48:17 +00:00
|
|
|
# Everything should compile and work as expected these days...
|
2001-10-18 04:11:39 +00:00
|
|
|
#CC = /usr/i386-linux-uclibc/usr/bin/i386-uclibc-gcc
|
2000-05-16 20:07:38 +00:00
|
|
|
|
2001-01-27 08:24:39 +00:00
|
|
|
# To compile vs some other alternative libc, you may need to use/adjust
|
|
|
|
# the following lines to meet your needs...
|
2001-03-05 17:08:52 +00:00
|
|
|
#
|
|
|
|
# If you are using Red Hat 6.x with the compatible RPMs (for developing under
|
|
|
|
# Red Hat 5.x and glibc 2.0) uncomment the following. Be sure to read about
|
|
|
|
# using the compatible RPMs (compat-*) at http://www.redhat.com !
|
|
|
|
#LIBCDIR=/usr/i386-glibc20-linux
|
|
|
|
#
|
|
|
|
# The following is used for libc5 (if you install altgcc and libc5-altdev
|
|
|
|
# on a Debian system).
|
2001-02-27 19:53:48 +00:00
|
|
|
#LIBCDIR=/usr/i486-linuxlibc1
|
2001-03-05 17:08:52 +00:00
|
|
|
#
|
|
|
|
# For other libraries, you are on your own...
|
2001-01-16 21:20:46 +00:00
|
|
|
#LDFLAGS+=-nostdlib
|
2001-02-27 19:53:48 +00:00
|
|
|
#LIBRARIES = $(LIBCDIR)/lib/libc.a -lgcc
|
2001-01-16 21:20:46 +00:00
|
|
|
#CROSS_CFLAGS+=-nostdinc -I$(LIBCDIR)/include -I$(GCCINCDIR)
|
|
|
|
#GCCINCDIR = $(shell gcc -print-search-dirs | sed -ne "s/install: \(.*\)/\1include/gp")
|
|
|
|
|
2000-05-12 19:38:40 +00:00
|
|
|
# use '-Os' optimization if available, else use -O2
|
2001-10-24 05:00:29 +00:00
|
|
|
OPTIMIZATION := ${shell if $(CC) -Os -S -o /dev/null -xc /dev/null \
|
|
|
|
>/dev/null 2>&1; then echo "-Os"; else echo "-O2" ; fi}
|
2001-11-10 11:23:47 +00:00
|
|
|
GCC_STACK_BOUNDRY := ${shell if $(CC) -mpreferred-stack-boundary=2 -S -o /dev/null -xc /dev/null \
|
|
|
|
>/dev/null 2>&1; then echo "-mpreferred-stack-boundary=2"; else echo "" ; fi}
|
2001-12-16 09:20:08 +00:00
|
|
|
OPTIMIZATIONS=$(OPTIMIZATION) -fomit-frame-pointer $(GCC_STACK_BOUNDRY) #-fstrict-aliasing -march=i386 -mcpu=i386 -malign-functions=0 -malign-jumps=0
|
2001-10-18 04:11:39 +00:00
|
|
|
WARNINGS=-Wall -Wstrict-prototypes -Wshadow
|
2001-11-10 11:23:47 +00:00
|
|
|
CFLAGS = -I$(TOPDIR)/include
|
2001-03-19 19:24:06 +00:00
|
|
|
ARFLAGS = -r
|
|
|
|
|
2001-02-17 00:42:47 +00:00
|
|
|
#
|
|
|
|
#--------------------------------------------------------
|
|
|
|
# If you're going to do a lot of builds with a non-vanilla configuration,
|
|
|
|
# it makes sense to adjust parameters above, so you can type "make"
|
|
|
|
# by itself, instead of following it by the same half-dozen overrides
|
|
|
|
# every time. The stuff below, on the other hand, is probably less
|
|
|
|
# prone to casual user adjustment.
|
|
|
|
#
|
|
|
|
|
2001-02-02 01:07:17 +00:00
|
|
|
ifeq ($(strip $(DOLFS)),true)
|
2000-09-21 02:23:30 +00:00
|
|
|
# For large file summit support
|
2001-10-02 07:58:23 +00:00
|
|
|
CFLAGS+=-D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64
|
2000-09-21 02:23:30 +00:00
|
|
|
endif
|
2001-02-02 01:07:17 +00:00
|
|
|
ifeq ($(strip $(DODMALLOC)),true)
|
2000-07-19 17:33:54 +00:00
|
|
|
# For testing mem leaks with dmalloc
|
|
|
|
CFLAGS+=-DDMALLOC
|
|
|
|
LIBRARIES = -ldmalloc
|
|
|
|
# Force debug=true, since this is useless when not debugging...
|
|
|
|
DODEBUG = true
|
2001-04-03 22:53:19 +00:00
|
|
|
else
|
|
|
|
ifeq ($(strip $(DOEFENCE)),true)
|
|
|
|
LIBRARIES = -lefence
|
|
|
|
# Force debug=true, since this is useless when not debugging...
|
|
|
|
DODEBUG = true
|
|
|
|
endif
|
2000-02-11 21:55:04 +00:00
|
|
|
endif
|
2001-02-02 01:07:17 +00:00
|
|
|
ifeq ($(strip $(DODEBUG)),true)
|
2000-12-11 16:20:40 +00:00
|
|
|
CFLAGS += $(WARNINGS) -g -D_GNU_SOURCE
|
|
|
|
LDFLAGS += -Wl,-warn-common
|
2001-12-16 09:20:08 +00:00
|
|
|
STRIPCMD = /bin/true -Not_stripping_since_we_are_debugging
|
1999-10-06 20:25:32 +00:00
|
|
|
else
|
2001-11-10 11:23:47 +00:00
|
|
|
CFLAGS += $(WARNINGS) $(OPTIMIZATIONS) -D_GNU_SOURCE
|
2000-12-11 16:20:40 +00:00
|
|
|
LDFLAGS += -s -Wl,-warn-common
|
2001-12-06 14:44:11 +00:00
|
|
|
STRIPCMD = $(STRIP) --remove-section=.note --remove-section=.comment
|
2000-09-21 22:26:02 +00:00
|
|
|
endif
|
2001-02-02 01:07:17 +00:00
|
|
|
ifeq ($(strip $(DOSTATIC)),true)
|
2000-09-21 22:26:02 +00:00
|
|
|
LDFLAGS += --static
|
1999-10-06 20:25:32 +00:00
|
|
|
endif
|
|
|
|
|
1999-11-12 08:03:23 +00:00
|
|
|
ifndef $(PREFIX)
|
2000-02-07 05:29:42 +00:00
|
|
|
PREFIX = `pwd`/_install
|
1999-10-06 20:25:32 +00:00
|
|
|
endif
|
|
|
|
|
2000-12-01 19:40:18 +00:00
|
|
|
# Additional complications due to support for pristine source dir.
|
2001-02-17 00:42:47 +00:00
|
|
|
# Include files in the build directory should take precedence over
|
2001-10-24 05:00:29 +00:00
|
|
|
# the copy in CONFIG_SRC_DIR, both during the compilation phase and the
|
2000-12-01 19:40:18 +00:00
|
|
|
# shell script that finds the list of object files.
|
|
|
|
# Work in progress by <ldoolitt@recycle.lbl.gov>.
|
2001-02-17 00:42:47 +00:00
|
|
|
#
|
2001-10-24 05:00:29 +00:00
|
|
|
ifneq ($(strip $(CONFIG_SRC_DIR)),)
|
|
|
|
VPATH = $(CONFIG_SRC_DIR)
|
2000-12-01 19:40:18 +00:00
|
|
|
endif
|
2001-02-17 00:42:47 +00:00
|
|
|
|
2001-04-25 05:39:18 +00:00
|
|
|
OBJECTS = $(APPLET_SOURCES:.c=.o) busybox.o usage.o applets.o
|
2001-01-31 01:38:05 +00:00
|
|
|
CFLAGS += $(CROSS_CFLAGS)
|
2001-10-24 05:00:29 +00:00
|
|
|
ifdef CONFIG_INIT_SCRIPT
|
|
|
|
CFLAGS += -DINIT_SCRIPT='"$(CONFIG_INIT_SCRIPT)"'
|
1999-12-21 02:55:11 +00:00
|
|
|
endif
|
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
# Put user-supplied flags at the end, where they
|
|
|
|
# have a chance of winning.
|
|
|
|
CFLAGS += $(CFLAGS_EXTRA)
|
|
|
|
|
|
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
|
|
|
|
all: do-it-all
|
|
|
|
|
|
|
|
#
|
|
|
|
# Make "config" the default target if there is no configuration file or
|
|
|
|
# "depend" the target if there is no top-level dependency information.
|
|
|
|
ifeq (.config,$(wildcard .config))
|
|
|
|
include .config
|
|
|
|
ifeq (.depend,$(wildcard .depend))
|
|
|
|
include .depend
|
|
|
|
do-it-all: busybox busybox.links doc
|
2001-01-27 06:01:43 +00:00
|
|
|
else
|
2001-10-24 05:00:29 +00:00
|
|
|
CONFIGURATION = depend
|
|
|
|
do-it-all: depend
|
2001-01-27 06:01:43 +00:00
|
|
|
endif
|
2001-08-02 20:56:16 +00:00
|
|
|
else
|
2001-10-24 05:00:29 +00:00
|
|
|
CONFIGURATION = menuconfig
|
|
|
|
do-it-all: menuconfig
|
2001-04-03 16:38:37 +00:00
|
|
|
endif
|
|
|
|
|
2001-10-24 07:58:02 +00:00
|
|
|
|
2001-10-25 14:18:08 +00:00
|
|
|
SUBDIRS =applets archival archival/libunarchive console-tools editors \
|
|
|
|
fileutils findutils init miscutils modutils networking procps \
|
|
|
|
pwd_grp shell shellutils sysklogd textutils util-linux libbb
|
2001-04-25 05:39:18 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
bbsubdirs: $(patsubst %, _dir_%, $(SUBDIRS))
|
2001-06-22 03:00:21 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
$(patsubst %, _dir_%, $(SUBDIRS)) : dummy include/config/MARKER
|
|
|
|
$(MAKE) CFLAGS="$(CFLAGS)" -C $(patsubst _dir_%, %, $@)
|
2001-01-27 06:01:43 +00:00
|
|
|
|
2001-11-10 13:08:02 +00:00
|
|
|
busybox: config.h dep-files bbsubdirs
|
2001-11-06 18:45:56 +00:00
|
|
|
$(CC) $(LDFLAGS) -o $@ applets/busybox.o $(shell find $(SUBDIRS) -name \*.a) $(LIBCONFIG_LIB) $(LIBRARIES)
|
2001-12-06 14:44:11 +00:00
|
|
|
$(STRIPCMD) $(PROG)
|
2000-09-21 02:04:51 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
busybox.links: applets/busybox.mkll
|
|
|
|
- $(SHELL) $^ >$@
|
|
|
|
|
|
|
|
install: applets/install.sh busybox busybox.links
|
|
|
|
$(SHELL) $< $(PREFIX)
|
2001-01-27 06:01:43 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
install-hardlinks: applets/install.sh busybox busybox.links
|
|
|
|
$(SHELL) $< $(PREFIX) --hardlinks
|
2001-04-26 23:29:10 +00:00
|
|
|
|
2000-05-03 03:19:06 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
# Documentation Targets
|
2000-07-06 22:53:22 +00:00
|
|
|
doc: olddoc
|
2000-05-03 03:19:06 +00:00
|
|
|
|
2000-07-06 22:53:22 +00:00
|
|
|
# Old Docs...
|
2001-04-05 19:42:03 +00:00
|
|
|
olddoc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
|
|
|
|
|
2001-10-31 11:07:12 +00:00
|
|
|
docs/busybox.pod : docs/busybox_header.pod include/usage.h docs/busybox_footer.pod
|
2001-04-05 19:42:03 +00:00
|
|
|
- ( cat docs/busybox_header.pod; \
|
2001-10-31 11:07:12 +00:00
|
|
|
docs/autodocifier.pl include/usage.h; \
|
2001-04-05 19:42:03 +00:00
|
|
|
cat 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
|
2000-07-04 19:42:23 +00:00
|
|
|
@echo
|
|
|
|
@echo BusyBox Documentation
|
|
|
|
@echo
|
2000-12-01 22:57:44 +00:00
|
|
|
-mkdir -p docs
|
2001-02-17 00:42:47 +00:00
|
|
|
-pod2text $< > $@
|
2000-07-04 19:42:23 +00:00
|
|
|
|
2000-07-06 22:53:22 +00:00
|
|
|
docs/BusyBox.1: docs/busybox.pod
|
2000-12-01 19:40:18 +00:00
|
|
|
- mkdir -p docs
|
2000-12-01 22:57:44 +00:00
|
|
|
- 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
|
2001-02-17 15:55:15 +00:00
|
|
|
- mkdir -p docs
|
2000-12-01 19:55:04 +00:00
|
|
|
-@ rm -f docs/BusyBox.html
|
2001-12-08 01:56:15 +00:00
|
|
|
-@ ln -s 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
|
|
|
|
-@ mkdir -p docs/busybox.net
|
2001-02-17 00:42:47 +00:00
|
|
|
- pod2html --noindex $< > \
|
2001-12-08 01:56:15 +00:00
|
|
|
docs/busybox.net/BusyBox.html
|
2001-04-24 21:46:07 +00:00
|
|
|
-@ rm -f pod2htm*
|
2000-07-04 19:42:23 +00:00
|
|
|
|
|
|
|
|
2000-07-06 22:53:22 +00:00
|
|
|
# New docs based on DOCBOOK SGML
|
2000-09-24 02:42:48 +00:00
|
|
|
newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
|
2000-07-06 22:53:22 +00:00
|
|
|
|
|
|
|
docs/busybox.txt: docs/busybox.sgml
|
2000-05-03 03:19:06 +00:00
|
|
|
@echo
|
|
|
|
@echo BusyBox Documentation
|
|
|
|
@echo
|
2000-12-01 19:40:18 +00:00
|
|
|
- mkdir -p docs
|
2000-12-02 00:44:48 +00:00
|
|
|
(cd docs; sgmltools -b txt busybox.sgml)
|
2000-05-03 03:19:06 +00:00
|
|
|
|
2000-07-06 22:53:22 +00:00
|
|
|
docs/busybox.dvi: docs/busybox.sgml
|
2000-12-01 19:40:18 +00:00
|
|
|
- mkdir -p docs
|
2000-12-02 00:44:48 +00:00
|
|
|
(cd docs; sgmltools -b dvi busybox.sgml)
|
2000-07-06 22:53:22 +00:00
|
|
|
|
2000-07-07 20:52:56 +00:00
|
|
|
docs/busybox.ps: docs/busybox.sgml
|
2000-12-01 19:40:18 +00:00
|
|
|
- mkdir -p docs
|
2000-12-02 00:44:48 +00:00
|
|
|
(cd docs; sgmltools -b ps busybox.sgml)
|
2000-07-06 22:53:22 +00:00
|
|
|
|
2000-07-07 20:52:56 +00:00
|
|
|
docs/busybox.pdf: docs/busybox.ps
|
2000-12-01 19:40:18 +00:00
|
|
|
- mkdir -p docs
|
2000-12-02 00:44:48 +00:00
|
|
|
(cd docs; ps2pdf busybox.ps)
|
2000-07-06 22:53:22 +00:00
|
|
|
|
2000-09-24 02:42:48 +00:00
|
|
|
docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
|
2000-12-01 19:40:18 +00:00
|
|
|
- mkdir -p docs
|
2001-12-08 01:56:15 +00:00
|
|
|
(cd docs/busybox.net; sgmltools -b html ../busybox.sgml)
|
2000-05-03 03:19:06 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
# The nifty new buildsystem stuff
|
|
|
|
scripts/mkdep: scripts/mkdep.c
|
|
|
|
$(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c
|
2000-06-02 03:35:22 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
scripts/split-include: scripts/split-include.c
|
|
|
|
$(HOSTCC) $(HOSTCFLAGS) -o scripts/split-include scripts/split-include.c
|
2000-04-21 01:26:49 +00:00
|
|
|
|
2001-10-24 07:58:02 +00:00
|
|
|
dep-files: scripts/mkdep
|
2001-11-10 13:08:02 +00:00
|
|
|
@if [ ! -f .depend ] ; then \
|
2001-10-24 07:58:02 +00:00
|
|
|
rm -f .depend .hdepend; \
|
|
|
|
mkdir -p $(TOPDIR)/include/config; \
|
|
|
|
scripts/mkdep -I $(TOPDIR)/include -- \
|
|
|
|
`find $(TOPDIR) -name \*.c -print` >> .depend; \
|
|
|
|
scripts/mkdep -I $(TOPDIR)/include -- \
|
|
|
|
`find $(TOPDIR) -name \*.h -print` >> .hdepend; \
|
|
|
|
$(MAKE) $(patsubst %,_sfdep_%,$(SUBDIRS)) _FASTDEP_ALL_SUB_DIRS="$(SUBDIRS)" ; \
|
|
|
|
fi;
|
|
|
|
|
1999-11-27 20:34:28 +00:00
|
|
|
|
2001-10-24 07:58:02 +00:00
|
|
|
depend dep: config.h dep-files
|
2001-10-24 05:00:29 +00:00
|
|
|
@ echo -e "\n\nNow run 'make' to build BusyBox\n\n"
|
2001-02-17 00:42:47 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
CONFIG_SHELL := ${shell if [ -x "$$BASH" ]; then echo $$BASH; \
|
|
|
|
else if [ -x /bin/bash ]; then echo /bin/bash; \
|
|
|
|
else echo sh; fi ; fi}
|
2001-02-17 00:42:47 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
include/config/MARKER: scripts/split-include include/config.h
|
|
|
|
scripts/split-include include/config.h include/config
|
|
|
|
@ touch include/config/MARKER
|
2001-03-16 22:47:14 +00:00
|
|
|
|
2001-10-24 07:58:02 +00:00
|
|
|
config.h:
|
|
|
|
@if [ ! -f include/config.h ] ; then \
|
|
|
|
make oldconfig; \
|
|
|
|
fi;
|
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
menuconfig:
|
2001-10-24 07:58:02 +00:00
|
|
|
mkdir -p $(TOPDIR)/include/config
|
2001-10-24 05:00:29 +00:00
|
|
|
$(MAKE) -C scripts/lxdialog all
|
|
|
|
$(CONFIG_SHELL) scripts/Menuconfig sysdeps/$(TARGET_OS)/config.in
|
2001-04-25 05:39:18 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
config:
|
2001-10-24 07:58:02 +00:00
|
|
|
mkdir -p $(TOPDIR)/include/config
|
2001-10-24 05:00:29 +00:00
|
|
|
$(CONFIG_SHELL) scripts/Configure sysdeps/$(TARGET_OS)/config.in
|
2001-06-22 03:00:21 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
oldconfig:
|
2001-10-24 07:58:02 +00:00
|
|
|
mkdir -p $(TOPDIR)/include/config
|
2001-10-24 05:00:29 +00:00
|
|
|
$(CONFIG_SHELL) scripts/Configure -d sysdeps/$(TARGET_OS)/config.in
|
2001-02-17 00:42:47 +00:00
|
|
|
|
2001-03-16 22:47:14 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
ifdef CONFIGURATION
|
|
|
|
..$(CONFIGURATION):
|
|
|
|
@echo
|
|
|
|
@echo "You have a bad or nonexistent" .$(CONFIGURATION) ": running 'make" $(CONFIGURATION)"'"
|
|
|
|
@echo
|
|
|
|
$(MAKE) $(CONFIGURATION)
|
|
|
|
@echo
|
|
|
|
@echo "Successful. Try re-making (ignore the error that follows)"
|
|
|
|
@echo
|
|
|
|
exit 1
|
2001-02-14 21:52:18 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
dummy:
|
2000-09-21 02:04:51 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
else
|
2000-09-21 02:04:51 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
dummy:
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
include Rules.mak
|
|
|
|
|
|
|
|
# Testing...
|
2000-02-11 21:55:04 +00:00
|
|
|
test tests:
|
2001-03-10 00:51:29 +00:00
|
|
|
# old way of doing it
|
|
|
|
#cd tests && $(MAKE) all
|
|
|
|
# new way of doing it
|
|
|
|
cd tests && ./tester.sh
|
2000-02-11 21:55:04 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
# Cleanup
|
1999-10-05 16:24:54 +00:00
|
|
|
clean:
|
2001-10-24 05:00:29 +00:00
|
|
|
- $(MAKE) -C tests clean
|
|
|
|
- $(MAKE) -C scripts/lxdialog clean
|
2000-07-06 22:53:22 +00:00
|
|
|
- rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
|
2001-12-08 01:56:15 +00:00
|
|
|
docs/busybox.net/BusyBox.html
|
2000-07-04 19:42:23 +00:00
|
|
|
- rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
|
2001-12-08 01:56:15 +00:00
|
|
|
docs/busybox.pdf docs/busybox.net/busybox.html \
|
2001-10-24 05:00:29 +00:00
|
|
|
docs/busybox _install pod2htm* *.gdb *.elf *~ core
|
|
|
|
- rm -f busybox.links libbb/loop.h .config.old .hdepend
|
|
|
|
- rm -f scripts/split-include scripts/mkdep .*config.log
|
|
|
|
- rm -rf include/config include/config.h
|
|
|
|
- find -name .\*.flags -o -name .depend -exec rm -f {} \;
|
2001-02-20 06:22:54 +00:00
|
|
|
- find -name \*.o -exec rm -f {} \;
|
2001-10-24 05:00:29 +00:00
|
|
|
- find -name \*.a -exec rm -f {} \;
|
1999-10-05 16:24:54 +00:00
|
|
|
|
|
|
|
distclean: clean
|
2001-10-24 05:00:29 +00:00
|
|
|
- rm -f busybox
|
2000-02-11 21:55:04 +00:00
|
|
|
- cd tests && $(MAKE) distclean
|
1999-10-06 20:25:32 +00:00
|
|
|
|
2000-05-03 03:19:06 +00:00
|
|
|
dist release: distclean doc
|
2000-02-07 05:29:42 +00:00
|
|
|
cd ..; \
|
|
|
|
rm -rf busybox-$(VERSION); \
|
|
|
|
cp -a busybox busybox-$(VERSION); \
|
|
|
|
\
|
|
|
|
find busybox-$(VERSION)/ -type d \
|
|
|
|
-name CVS \
|
|
|
|
-print \
|
2001-03-16 07:43:53 +00:00
|
|
|
-exec rm -rf {} \; ; \
|
2000-02-07 05:29:42 +00:00
|
|
|
\
|
2000-07-06 23:17:16 +00:00
|
|
|
find busybox-$(VERSION)/ -type f \
|
|
|
|
-name .\#* \
|
|
|
|
-print \
|
2001-03-16 07:43:53 +00:00
|
|
|
-exec rm -f {} \; ; \
|
2000-07-06 23:17:16 +00:00
|
|
|
\
|
2000-02-07 05:29:42 +00:00
|
|
|
tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
|
2000-07-10 23:00:47 +00:00
|
|
|
|
2001-10-24 05:00:29 +00:00
|
|
|
|
|
|
|
|
2001-11-19 19:47:56 +00:00
|
|
|
.PHONY: tags check
|
2000-07-10 23:00:47 +00:00
|
|
|
tags:
|
|
|
|
ctags -R .
|
2001-11-19 19:47:56 +00:00
|
|
|
|
|
|
|
check: busybox
|
|
|
|
cd testsuite && ./runtest
|