1999-10-21 03:38:37 +05:30
|
|
|
# Makefile for busybox
|
|
|
|
#
|
2003-07-15 02:51:08 +05:30
|
|
|
# Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
|
2000-02-12 03:25:04 +05:30
|
|
|
#
|
1999-10-21 03:38:37 +05:30
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
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 \
|
|
|
|
defconfig allyesconfig allnoconfig clean distclean \
|
|
|
|
release tags
|
|
|
|
TOPDIR=./
|
|
|
|
include Rules.mak
|
|
|
|
|
2003-02-15 16:23:40 +05:30
|
|
|
DIRS:=applets archival archival/libunarchive coreutils console-tools \
|
|
|
|
debianutils editors findutils init miscutils modutils networking \
|
2002-11-10 07:03:55 +05:30
|
|
|
networking/libiproute networking/udhcp procps loginutils shell \
|
2003-07-29 13:15:05 +05:30
|
|
|
sysklogd util-linux libpwdgrp coreutils/libcoreutils libbb
|
2001-10-24 10:30:29 +05:30
|
|
|
|
2003-07-03 15:37:04 +05:30
|
|
|
ifeq ($(strip $(CONFIG_SELINUX)),y)
|
|
|
|
CFLAGS += -I/usr/include/selinux
|
|
|
|
LIBRARIES += -lsecure
|
|
|
|
endif
|
|
|
|
|
2003-09-24 21:18:29 +05:30
|
|
|
CONFIG_CONFIG_IN = sysdeps/$(TARGET_OS)/Config.in
|
|
|
|
CONFIG_DEFCONFIG = sysdeps/$(TARGET_OS)/defconfig
|
|
|
|
|
2002-12-14 04:23:28 +05:30
|
|
|
ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
|
2001-10-24 10:30:29 +05:30
|
|
|
|
2003-07-15 05:58:26 +05:30
|
|
|
all: busybox busybox.links doc
|
2001-04-03 22:08:37 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
# In this section, we need .config
|
|
|
|
-include .config.cmd
|
|
|
|
include $(patsubst %,%/Makefile.in, $(DIRS))
|
2001-10-24 13:28:02 +05:30
|
|
|
|
2003-06-25 10:48:48 +05:30
|
|
|
busybox: .depend include/config.h $(libraries-y)
|
2003-09-20 06:29:35 +05:30
|
|
|
$(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
|
2002-04-12 17:35:57 +05:30
|
|
|
$(STRIPCMD) $@
|
2000-09-21 07:34:51 +05:30
|
|
|
|
2003-06-25 08:56:04 +05:30
|
|
|
busybox.links: applets/busybox.mkll include/config.h
|
2001-10-24 10:30:29 +05:30
|
|
|
- $(SHELL) $^ >$@
|
|
|
|
|
|
|
|
install: applets/install.sh busybox busybox.links
|
|
|
|
$(SHELL) $< $(PREFIX)
|
2001-01-27 11:31:43 +05:30
|
|
|
|
2003-08-29 17:50:31 +05:30
|
|
|
uninstall: busybox.links
|
|
|
|
rm -f $(PREFIX)/bin/busybox
|
|
|
|
for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
|
2002-04-13 19:09:48 +05:30
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
install-hardlinks: applets/install.sh busybox busybox.links
|
|
|
|
$(SHELL) $< $(PREFIX) --hardlinks
|
2001-04-27 04:59:10 +05:30
|
|
|
|
2000-05-03 08:49:06 +05:30
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
# Documentation Targets
|
2000-07-07 04:23:22 +05:30
|
|
|
doc: olddoc
|
2000-05-03 08:49:06 +05:30
|
|
|
|
2000-07-07 04:23:22 +05:30
|
|
|
# Old Docs...
|
2001-04-06 01:12:03 +05:30
|
|
|
olddoc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
|
|
|
|
|
2001-10-31 16:37:12 +05:30
|
|
|
docs/busybox.pod : docs/busybox_header.pod include/usage.h docs/busybox_footer.pod
|
2001-04-06 01:12:03 +05:30
|
|
|
- ( cat docs/busybox_header.pod; \
|
2001-10-31 16:37:12 +05:30
|
|
|
docs/autodocifier.pl include/usage.h; \
|
2001-04-06 01:12:03 +05:30
|
|
|
cat 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
|
2000-07-05 01:12:23 +05:30
|
|
|
@echo
|
|
|
|
@echo BusyBox Documentation
|
|
|
|
@echo
|
2000-12-02 04:27:44 +05:30
|
|
|
-mkdir -p docs
|
2001-02-17 06:12:47 +05:30
|
|
|
-pod2text $< > $@
|
2000-07-05 01:12:23 +05:30
|
|
|
|
2000-07-07 04:23:22 +05:30
|
|
|
docs/BusyBox.1: docs/busybox.pod
|
2000-12-02 01:10:18 +05:30
|
|
|
- mkdir -p docs
|
2000-12-02 04:27:44 +05:30
|
|
|
- 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
|
2001-02-17 21:25:15 +05:30
|
|
|
- mkdir -p docs
|
2000-12-02 01:25:04 +05:30
|
|
|
-@ rm -f docs/BusyBox.html
|
2001-12-08 07:26:15 +05:30
|
|
|
-@ ln -s 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
|
|
|
|
-@ mkdir -p docs/busybox.net
|
2001-02-17 06:12:47 +05:30
|
|
|
- pod2html --noindex $< > \
|
2001-12-08 07:26:15 +05:30
|
|
|
docs/busybox.net/BusyBox.html
|
2001-04-25 03:16:07 +05:30
|
|
|
-@ rm -f pod2htm*
|
2000-07-05 01:12:23 +05:30
|
|
|
|
|
|
|
|
2000-07-07 04:23:22 +05:30
|
|
|
# New docs based on DOCBOOK SGML
|
2000-09-24 08:12:48 +05:30
|
|
|
newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
|
2000-07-07 04:23:22 +05:30
|
|
|
|
|
|
|
docs/busybox.txt: docs/busybox.sgml
|
2000-05-03 08:49:06 +05:30
|
|
|
@echo
|
|
|
|
@echo BusyBox Documentation
|
|
|
|
@echo
|
2000-12-02 01:10:18 +05:30
|
|
|
- mkdir -p docs
|
2000-12-02 06:14:48 +05:30
|
|
|
(cd docs; sgmltools -b txt busybox.sgml)
|
2000-05-03 08:49:06 +05:30
|
|
|
|
2000-07-07 04:23:22 +05:30
|
|
|
docs/busybox.dvi: docs/busybox.sgml
|
2000-12-02 01:10:18 +05:30
|
|
|
- mkdir -p docs
|
2000-12-02 06:14:48 +05:30
|
|
|
(cd docs; sgmltools -b dvi busybox.sgml)
|
2000-07-07 04:23:22 +05:30
|
|
|
|
2000-07-08 02:22:56 +05:30
|
|
|
docs/busybox.ps: docs/busybox.sgml
|
2000-12-02 01:10:18 +05:30
|
|
|
- mkdir -p docs
|
2000-12-02 06:14:48 +05:30
|
|
|
(cd docs; sgmltools -b ps busybox.sgml)
|
2000-07-07 04:23:22 +05:30
|
|
|
|
2000-07-08 02:22:56 +05:30
|
|
|
docs/busybox.pdf: docs/busybox.ps
|
2000-12-02 01:10:18 +05:30
|
|
|
- mkdir -p docs
|
2000-12-02 06:14:48 +05:30
|
|
|
(cd docs; ps2pdf busybox.ps)
|
2000-07-07 04:23:22 +05:30
|
|
|
|
2000-09-24 08:12:48 +05:30
|
|
|
docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
|
2000-12-02 01:10:18 +05:30
|
|
|
- mkdir -p docs
|
2001-12-08 07:26:15 +05:30
|
|
|
(cd docs/busybox.net; sgmltools -b html ../busybox.sgml)
|
2000-05-03 08:49:06 +05:30
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
# The nifty new buildsystem stuff
|
2002-12-05 14:11:41 +05:30
|
|
|
scripts/mkdep: scripts/mkdep.c
|
2001-10-24 10:30:29 +05:30
|
|
|
$(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c
|
2000-06-02 09:05:22 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
scripts/split-include: scripts/split-include.c
|
2001-10-24 10:30:29 +05:30
|
|
|
$(HOSTCC) $(HOSTCFLAGS) -o scripts/split-include scripts/split-include.c
|
2000-04-21 06:56:49 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
.depend: scripts/mkdep
|
2002-04-12 17:35:57 +05:30
|
|
|
rm -f .depend .hdepend;
|
2002-12-05 14:11:41 +05:30
|
|
|
mkdir -p include/config;
|
2002-04-12 17:35:57 +05:30
|
|
|
$(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c
|
2002-12-05 14:11:41 +05:30
|
|
|
scripts/mkdep -I include -- \
|
|
|
|
`find . -name \*.c -print` >> .depend;
|
|
|
|
scripts/mkdep -I include -- \
|
|
|
|
`find . -name \*.h -print` >> .hdepend;
|
|
|
|
$(MAKE) $(patsubst %,_sfdep_%,$(DIRS)) _FASTDEP_ALL_SUB_DIRS="$(DIRS)" ;
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2003-01-11 23:32:51 +05:30
|
|
|
depend dep: include/config.h .depend
|
2001-02-17 06:12:47 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
include/config/MARKER: depend scripts/split-include
|
2001-10-24 10:30:29 +05:30
|
|
|
scripts/split-include include/config.h include/config
|
|
|
|
@ touch include/config/MARKER
|
2001-03-17 04:17:14 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
include/config.h: .config
|
|
|
|
@if [ ! -x ./scripts/config/conf ] ; then \
|
2003-08-29 18:55:55 +05:30
|
|
|
$(MAKE) -C scripts/config conf; \
|
2001-10-24 13:28:02 +05:30
|
|
|
fi;
|
2003-09-24 21:18:29 +05:30
|
|
|
@./scripts/config/conf -o $(CONFIG_CONFIG_IN)
|
2001-10-24 13:28:02 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
%.o: %.c
|
|
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
|
2002-04-27 05:36:47 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
finished2:
|
|
|
|
@echo
|
|
|
|
@echo Finished installing...
|
|
|
|
@echo
|
2001-04-25 11:09:18 +05:30
|
|
|
|
2002-12-14 04:23:28 +05:30
|
|
|
else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
|
2001-06-22 08:30:21 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
all: menuconfig
|
2001-02-17 06:12:47 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
# configuration
|
|
|
|
# ---------------------------------------------------------------------------
|
2001-02-15 03:22:18 +05:30
|
|
|
|
2002-12-14 04:23:28 +05:30
|
|
|
scripts/config/conf:
|
2003-08-29 18:55:55 +05:30
|
|
|
$(MAKE) -C scripts/config conf
|
2002-12-14 04:23:28 +05:30
|
|
|
-@if [ ! -f .config ] ; then \
|
2003-09-24 21:18:29 +05:30
|
|
|
cp $(CONFIG_DEFCONFIG) .config; \
|
2002-12-14 04:23:28 +05:30
|
|
|
fi
|
|
|
|
scripts/config/mconf:
|
2003-08-29 18:55:55 +05:30
|
|
|
$(MAKE) -C scripts/config ncurses conf mconf
|
2002-12-05 14:11:41 +05:30
|
|
|
-@if [ ! -f .config ] ; then \
|
2003-09-24 21:18:29 +05:30
|
|
|
cp $(CONFIG_DEFCONFIG) .config; \
|
2002-12-05 14:11:41 +05:30
|
|
|
fi
|
2000-09-21 07:34:51 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
menuconfig: scripts/config/mconf
|
2003-09-24 21:18:29 +05:30
|
|
|
@./scripts/config/mconf $(CONFIG_CONFIG_IN)
|
2000-09-21 07:34:51 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
config: scripts/config/conf
|
2003-09-24 21:18:29 +05:30
|
|
|
@./scripts/config/conf $(CONFIG_CONFIG_IN)
|
2001-10-24 10:30:29 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
oldconfig: scripts/config/conf
|
2003-09-24 21:18:29 +05:30
|
|
|
@./scripts/config/conf -o $(CONFIG_CONFIG_IN)
|
2001-10-24 10:30:29 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
randconfig: scripts/config/conf
|
2003-09-24 21:18:29 +05:30
|
|
|
@./scripts/config/conf -r $(CONFIG_CONFIG_IN)
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
allyesconfig: scripts/config/conf
|
2003-09-24 21:18:29 +05:30
|
|
|
@./scripts/config/conf -y $(CONFIG_CONFIG_IN)
|
2002-12-05 14:11:41 +05:30
|
|
|
|
|
|
|
allnoconfig: scripts/config/conf
|
2003-09-24 21:18:29 +05:30
|
|
|
@./scripts/config/conf -n $(CONFIG_CONFIG_IN)
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
defconfig: scripts/config/conf
|
2003-09-24 21:18:29 +05:30
|
|
|
@./scripts/config/conf -d $(CONFIG_CONFIG_IN)
|
2001-10-24 10:30:29 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
test tests: busybox
|
|
|
|
# Note that 'tests' is depricated. Use 'make check' instead
|
|
|
|
# To use the nice new testsuite....
|
2001-03-10 06:21:29 +05:30
|
|
|
cd tests && ./tester.sh
|
2000-02-12 03:25:04 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
check: busybox
|
|
|
|
cd testsuite && ./runtest
|
|
|
|
|
1999-10-05 21:54:54 +05:30
|
|
|
clean:
|
2001-10-24 10:30:29 +05:30
|
|
|
- $(MAKE) -C tests clean
|
2000-07-05 01:12:23 +05:30
|
|
|
- rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
|
2002-10-09 01:01:04 +05:30
|
|
|
docs/busybox.pdf 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 \
|
|
|
|
docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \
|
|
|
|
.config.old .hdepend busybox
|
|
|
|
- rm -rf _install
|
2002-07-31 09:15:05 +05:30
|
|
|
- find . -name .\*.flags -exec rm -f {} \;
|
|
|
|
- find . -name \*.o -exec rm -f {} \;
|
|
|
|
- find . -name \*.a -exec rm -f {} \;
|
1999-10-05 21:54:54 +05:30
|
|
|
|
|
|
|
distclean: clean
|
2003-01-28 03:41:59 +05:30
|
|
|
- rm -f scripts/split-include scripts/mkdep
|
|
|
|
- rm -rf include/config include/config.h
|
|
|
|
- find . -name .depend -exec rm -f {} \;
|
2002-12-05 14:11:41 +05:30
|
|
|
rm -f .config .config.old .config.cmd
|
2003-01-28 03:41:59 +05:30
|
|
|
- $(MAKE) -C scripts/config clean
|
1999-10-07 01:55:32 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
release: distclean #doc
|
2000-02-07 10:59:42 +05:30
|
|
|
cd ..; \
|
2003-11-17 15:56:43 +05:30
|
|
|
rm -rf $(PROG)-$(VERSION); \
|
|
|
|
cp -a busybox $(PROG)-$(VERSION); \
|
2000-02-07 10:59:42 +05:30
|
|
|
\
|
2003-11-17 15:56:43 +05:30
|
|
|
find $(PROG)-$(VERSION)/ -type d \
|
2000-02-07 10:59:42 +05:30
|
|
|
-name CVS \
|
|
|
|
-print \
|
2001-03-16 13:13:53 +05:30
|
|
|
-exec rm -rf {} \; ; \
|
2000-02-07 10:59:42 +05:30
|
|
|
\
|
2003-11-17 15:56:43 +05:30
|
|
|
find $(PROG)-$(VERSION)/ -type f \
|
2000-07-07 04:47:16 +05:30
|
|
|
-name .\#* \
|
|
|
|
-print \
|
2001-03-16 13:13:53 +05:30
|
|
|
-exec rm -f {} \; ; \
|
2000-07-07 04:47:16 +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
|
|
|
|
|
|
|
|
2002-12-14 04:23:28 +05:30
|
|
|
endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
|
2002-04-12 17:35:57 +05:30
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
.PHONY: dummy subdirs release distclean clean config oldconfig \
|
|
|
|
menuconfig tags check test tests depend
|
2001-11-20 01:17:56 +05:30
|
|
|
|
2002-04-12 17:35:57 +05:30
|
|
|
|