blob: 36fc4118ff00b00793c733665baabb730bd2eac3 [file] [log] [blame]
Eric Andersenc4996011999-10-20 22:08:37 +00001# Makefile for busybox
2#
Eric Andersen85208e22002-04-12 12:05:57 +00003# Copyright (C) 1999-2002 Erik Andersen <andersee@debian.org>
Erik Andersen9ffdaa62000-02-11 21:55:04 +00004#
Eric Andersenc4996011999-10-20 22:08:37 +00005# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13# General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18#
19
Eric Andersenc9f20d92002-12-05 08:41:41 +000020#--------------------------------------------------------------
21# You shouldn't need to mess with anything beyond this point...
22#--------------------------------------------------------------
23noconfig_targets := menuconfig config oldconfig randconfig \
24 defconfig allyesconfig allnoconfig clean distclean \
25 release tags
26TOPDIR=./
27include Rules.mak
28
29DIRS:=applets archival archival/libunarchive console-tools debianutils \
Eric Andersen85208e22002-04-12 12:05:57 +000030 editors fileutils findutils init miscutils modutils networking \
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000031 networking/libiproute networking/udhcp procps loginutils shell \
32 shellutils sysklogd textutils util-linux libbb libpwdgrp
Eric Andersenab050f52001-01-27 06:01:43 +000033
Eric Andersen068b6b02002-12-13 22:53:28 +000034ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
Eric Andersen00814662001-04-26 23:29:10 +000035
Eric Andersenc9f20d92002-12-05 08:41:41 +000036all: busybox busybox.links #doc
Erik Andersen0a704e82000-05-03 03:19:06 +000037
Eric Andersenc9f20d92002-12-05 08:41:41 +000038# In this section, we need .config
39-include .config.cmd
40include $(patsubst %,%/Makefile.in, $(DIRS))
Eric Andersen3cd27602001-10-24 07:58:02 +000041
Glenn L McGrathe86e4a22002-12-20 06:03:47 +000042busybox: .depend $(libraries-y)
Robert Griebld378c312002-07-19 00:05:54 +000043 $(CC) $(LDFLAGS) -o $@ $(libraries-y) $(LIBRARIES)
Eric Andersen85208e22002-04-12 12:05:57 +000044 $(STRIPCMD) $@
Eric Andersenbdfd0d72001-10-24 05:00:29 +000045
46busybox.links: applets/busybox.mkll
47 - $(SHELL) $^ >$@
48
49install: applets/install.sh busybox busybox.links
50 $(SHELL) $< $(PREFIX)
51
Eric Andersen1f30a412002-04-13 13:39:48 +000052uninstall: busybox busybox.links
53 for i in `cat busybox.links` ; do rm -f $$PREFIX$$i; done
54
Eric Andersenbdfd0d72001-10-24 05:00:29 +000055install-hardlinks: applets/install.sh busybox busybox.links
56 $(SHELL) $< $(PREFIX) --hardlinks
57
58
59# Documentation Targets
Eric Andersen67536ff2000-07-06 22:53:22 +000060doc: olddoc
Eric Andersen53310252000-07-04 19:42:23 +000061
62# Old Docs...
John Beppu94e50542001-04-05 19:42:03 +000063olddoc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
64
Eric Andersen1552ff72001-10-31 11:07:12 +000065docs/busybox.pod : docs/busybox_header.pod include/usage.h docs/busybox_footer.pod
John Beppu94e50542001-04-05 19:42:03 +000066 - ( cat docs/busybox_header.pod; \
Eric Andersen1552ff72001-10-31 11:07:12 +000067 docs/autodocifier.pl include/usage.h; \
John Beppu94e50542001-04-05 19:42:03 +000068 cat docs/busybox_footer.pod ) > docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +000069
Eric Andersen67536ff2000-07-06 22:53:22 +000070docs/BusyBox.txt: docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +000071 @echo
72 @echo BusyBox Documentation
73 @echo
Eric Andersen29be79c2000-12-01 22:57:44 +000074 -mkdir -p docs
Eric Andersen19f86202001-02-17 00:42:47 +000075 -pod2text $< > $@
Eric Andersen53310252000-07-04 19:42:23 +000076
Eric Andersen67536ff2000-07-06 22:53:22 +000077docs/BusyBox.1: docs/busybox.pod
Eric Andersen09a34e52000-12-01 19:40:18 +000078 - mkdir -p docs
Eric Andersen29be79c2000-12-01 22:57:44 +000079 - pod2man --center=BusyBox --release="version $(VERSION)" \
Eric Andersen19f86202001-02-17 00:42:47 +000080 $< > $@
Eric Andersen53310252000-07-04 19:42:23 +000081
Eric Andersen2423b122001-12-08 01:56:15 +000082docs/BusyBox.html: docs/busybox.net/BusyBox.html
Eric Andersen1cf81662001-02-17 15:55:15 +000083 - mkdir -p docs
Eric Andersene2f6e122000-12-01 19:55:04 +000084 -@ rm -f docs/BusyBox.html
Eric Andersen2423b122001-12-08 01:56:15 +000085 -@ ln -s busybox.net/BusyBox.html docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +000086
Eric Andersen2423b122001-12-08 01:56:15 +000087docs/busybox.net/BusyBox.html: docs/busybox.pod
88 -@ mkdir -p docs/busybox.net
Eric Andersen19f86202001-02-17 00:42:47 +000089 - pod2html --noindex $< > \
Eric Andersen2423b122001-12-08 01:56:15 +000090 docs/busybox.net/BusyBox.html
Eric Andersen36763742001-04-24 21:46:07 +000091 -@ rm -f pod2htm*
Erik Andersen0a704e82000-05-03 03:19:06 +000092
Eric Andersen67536ff2000-07-06 22:53:22 +000093
94# New docs based on DOCBOOK SGML
Eric Andersen488aac22000-09-24 02:42:48 +000095newdoc: docs/busybox.txt docs/busybox.pdf docs/busybox/busyboxdocumentation.html
Eric Andersen67536ff2000-07-06 22:53:22 +000096
97docs/busybox.txt: docs/busybox.sgml
98 @echo
99 @echo BusyBox Documentation
100 @echo
Eric Andersen09a34e52000-12-01 19:40:18 +0000101 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000102 (cd docs; sgmltools -b txt busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000103
104docs/busybox.dvi: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000105 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000106 (cd docs; sgmltools -b dvi busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000107
Eric Andersena2c83d82000-07-07 20:52:56 +0000108docs/busybox.ps: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000109 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000110 (cd docs; sgmltools -b ps busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000111
Eric Andersena2c83d82000-07-07 20:52:56 +0000112docs/busybox.pdf: docs/busybox.ps
Eric Andersen09a34e52000-12-01 19:40:18 +0000113 - mkdir -p docs
Eric Andersen868c0572000-12-02 00:44:48 +0000114 (cd docs; ps2pdf busybox.ps)
Eric Andersen67536ff2000-07-06 22:53:22 +0000115
Eric Andersen488aac22000-09-24 02:42:48 +0000116docs/busybox/busyboxdocumentation.html: docs/busybox.sgml
Eric Andersen09a34e52000-12-01 19:40:18 +0000117 - mkdir -p docs
Eric Andersen2423b122001-12-08 01:56:15 +0000118 (cd docs/busybox.net; sgmltools -b html ../busybox.sgml)
Eric Andersen67536ff2000-07-06 22:53:22 +0000119
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000120# The nifty new buildsystem stuff
Eric Andersenc9f20d92002-12-05 08:41:41 +0000121scripts/mkdep: scripts/mkdep.c
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000122 $(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c
Eric Andersen67536ff2000-07-06 22:53:22 +0000123
Eric Andersenc9f20d92002-12-05 08:41:41 +0000124scripts/split-include: scripts/split-include.c
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000125 $(HOSTCC) $(HOSTCFLAGS) -o scripts/split-include scripts/split-include.c
Erik Andersen1d1d9502000-04-21 01:26:49 +0000126
Eric Andersenc9f20d92002-12-05 08:41:41 +0000127.depend: scripts/mkdep
Eric Andersen85208e22002-04-12 12:05:57 +0000128 rm -f .depend .hdepend;
Eric Andersenc9f20d92002-12-05 08:41:41 +0000129 mkdir -p include/config;
Eric Andersen85208e22002-04-12 12:05:57 +0000130 $(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c
Eric Andersenc9f20d92002-12-05 08:41:41 +0000131 scripts/mkdep -I include -- \
132 `find . -name \*.c -print` >> .depend;
133 scripts/mkdep -I include -- \
134 `find . -name \*.h -print` >> .hdepend;
135 $(MAKE) $(patsubst %,_sfdep_%,$(DIRS)) _FASTDEP_ALL_SUB_DIRS="$(DIRS)" ;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000136
Eric Andersenaaab46b2003-01-11 18:02:51 +0000137depend dep: include/config.h .depend
Eric Andersen85208e22002-04-12 12:05:57 +0000138
Eric Andersenc9f20d92002-12-05 08:41:41 +0000139include/config/MARKER: depend scripts/split-include
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000140 scripts/split-include include/config.h include/config
141 @ touch include/config/MARKER
142
Eric Andersenc9f20d92002-12-05 08:41:41 +0000143include/config.h: .config
144 @if [ ! -x ./scripts/config/conf ] ; then \
Eric Andersen068b6b02002-12-13 22:53:28 +0000145 make -C scripts/config conf; \
Eric Andersen3cd27602001-10-24 07:58:02 +0000146 fi;
Eric Andersenc9f20d92002-12-05 08:41:41 +0000147 @./scripts/config/conf -o sysdeps/$(TARGET_OS)/Config.in
Eric Andersen85208e22002-04-12 12:05:57 +0000148
149%.o: %.c
150 $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $<
151
Eric Andersenc9f20d92002-12-05 08:41:41 +0000152finished2:
153 @echo
154 @echo Finished installing...
155 @echo
Eric Andersen19f86202001-02-17 00:42:47 +0000156
Eric Andersen068b6b02002-12-13 22:53:28 +0000157else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000158
159all: menuconfig
160
Eric Andersenc9f20d92002-12-05 08:41:41 +0000161# configuration
162# ---------------------------------------------------------------------------
163
Eric Andersen068b6b02002-12-13 22:53:28 +0000164scripts/config/conf:
165 make -C scripts/config conf
166 -@if [ ! -f .config ] ; then \
167 cp sysdeps/$(TARGET_OS)/defconfig .config; \
168 fi
169scripts/config/mconf:
170 make -C scripts/config ncurses conf mconf
Eric Andersenc9f20d92002-12-05 08:41:41 +0000171 -@if [ ! -f .config ] ; then \
172 cp sysdeps/$(TARGET_OS)/defconfig .config; \
173 fi
174
175menuconfig: scripts/config/mconf
176 @./scripts/config/mconf sysdeps/$(TARGET_OS)/Config.in
177
178config: scripts/config/conf
179 @./scripts/config/conf sysdeps/$(TARGET_OS)/Config.in
180
181oldconfig: scripts/config/conf
182 @./scripts/config/conf -o sysdeps/$(TARGET_OS)/Config.in
183
184randconfig: scripts/config/conf
185 @./scripts/config/conf -r sysdeps/$(TARGET_OS)/Config.in
186
187allyesconfig: scripts/config/conf
188 @./scripts/config/conf -y sysdeps/$(TARGET_OS)/Config.in
189
190allnoconfig: scripts/config/conf
191 @./scripts/config/conf -n sysdeps/$(TARGET_OS)/Config.in
192
193defconfig: scripts/config/conf
194 @./scripts/config/conf -d sysdeps/$(TARGET_OS)/Config.in
195
196test tests: busybox
197 # Note that 'tests' is depricated. Use 'make check' instead
198 # To use the nice new testsuite....
Mark Whitleyd2117e92001-03-10 00:51:29 +0000199 cd tests && ./tester.sh
Erik Andersen9ffdaa62000-02-11 21:55:04 +0000200
Eric Andersenc9f20d92002-12-05 08:41:41 +0000201check: busybox
202 cd testsuite && ./runtest
203
Eric Andersencc8ed391999-10-05 16:24:54 +0000204clean:
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000205 - $(MAKE) -C tests clean
Eric Andersen67536ff2000-07-06 22:53:22 +0000206 - rm -f docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
Eric Andersen2423b122001-12-08 01:56:15 +0000207 docs/busybox.net/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000208 - rm -f docs/busybox.txt docs/busybox.dvi docs/busybox.ps \
Eric Andersena39342b2002-10-08 19:31:04 +0000209 docs/busybox.pdf docs/busybox.pod docs/busybox.net/busybox.html \
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000210 docs/busybox _install pod2htm* *.gdb *.elf *~ core
Eric Andersen3ec5c692002-03-20 01:32:25 +0000211 - rm -f busybox busybox.links libbb/loop.h .config.old .hdepend
Eric Andersena9953432003-01-27 22:11:59 +0000212 - rm -f .*config.log
Eric Andersen87715172002-07-31 03:45:05 +0000213 - find . -name .\*.flags -exec rm -f {} \;
Eric Andersen87715172002-07-31 03:45:05 +0000214 - find . -name \*.o -exec rm -f {} \;
215 - find . -name \*.a -exec rm -f {} \;
Eric Andersencc8ed391999-10-05 16:24:54 +0000216
217distclean: clean
Eric Andersena9953432003-01-27 22:11:59 +0000218 - rm -f scripts/split-include scripts/mkdep
219 - rm -rf include/config include/config.h
220 - find . -name .depend -exec rm -f {} \;
Eric Andersenc9f20d92002-12-05 08:41:41 +0000221 rm -f .config .config.old .config.cmd
Eric Andersena9953432003-01-27 22:11:59 +0000222 - $(MAKE) -C scripts/config clean
Eric Andersencc8ed391999-10-05 16:24:54 +0000223
Eric Andersenc9f20d92002-12-05 08:41:41 +0000224release: distclean #doc
Erik Andersenfac10d72000-02-07 05:29:42 +0000225 cd ..; \
226 rm -rf busybox-$(VERSION); \
227 cp -a busybox busybox-$(VERSION); \
228 \
229 find busybox-$(VERSION)/ -type d \
230 -name CVS \
231 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000232 -exec rm -rf {} \; ; \
Erik Andersenfac10d72000-02-07 05:29:42 +0000233 \
234 find busybox-$(VERSION)/ -type f \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000235 -name .\#* \
236 -print \
Eric Andersen53b55ac2001-03-16 07:43:53 +0000237 -exec rm -f {} \; ; \
Eric Andersenb0b732b2000-07-06 23:17:16 +0000238 \
Erik Andersenfac10d72000-02-07 05:29:42 +0000239 tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000240
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000241tags:
242 ctags -R .
Matt Kraai4e05da82001-11-19 19:47:56 +0000243
Eric Andersenc9f20d92002-12-05 08:41:41 +0000244
Eric Andersen068b6b02002-12-13 22:53:28 +0000245endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000246
247.PHONY: dummy subdirs release distclean clean config oldconfig \
248 menuconfig tags check test tests depend
249
Eric Andersen85208e22002-04-12 12:05:57 +0000250