blob: d14aaf7694a5bfa2e75dcb158b11aaa5dc93434d [file] [log] [blame]
Eric Andersenc4996011999-10-20 22:08:37 +00001# Makefile for busybox
2#
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003# Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.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 \
Eric Andersenbcf27242005-02-13 22:15:59 +000025 release tags
Eric Andersen7daa0762004-10-08 07:46:08 +000026
27ifndef TOPDIR
28TOPDIR=$(CURDIR)/
29endif
30ifndef top_srcdir
31top_srcdir=$(CURDIR)
32endif
33ifndef top_builddir
34top_builddir=$(CURDIR)
35endif
36
Mike Frysinger9d6e0832005-07-31 22:50:17 +000037export srctree=$(top_srcdir)
Eric Andersen7daa0762004-10-08 07:46:08 +000038vpath %/Config.in $(srctree)
39
Rob Landleye1d96332005-08-24 00:41:52 +000040include $(top_srcdir)/Rules.mak
Eric Andersenc9f20d92002-12-05 08:41:41 +000041
Glenn L McGrath3238ea12003-02-15 10:53:40 +000042DIRS:=applets archival archival/libunarchive coreutils console-tools \
43 debianutils editors findutils init miscutils modutils networking \
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000044 networking/libiproute networking/udhcp procps loginutils shell \
Mike Frysingerd89e6292005-04-24 05:07:59 +000045 sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb
Eric Andersenab050f52001-01-27 06:01:43 +000046
Eric Andersen7daa0762004-10-08 07:46:08 +000047SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS))
48
Eric Andersen9e480452003-07-03 10:07:04 +000049ifeq ($(strip $(CONFIG_SELINUX)),y)
Rob Landley60158cb2005-05-03 06:25:50 +000050LIBRARIES += -lselinux
Eric Andersen9e480452003-07-03 10:07:04 +000051endif
52
Eric Andersen7daa0762004-10-08 07:46:08 +000053CONFIG_CONFIG_IN = $(top_srcdir)/sysdeps/$(TARGET_OS)/Config.in
54CONFIG_DEFCONFIG = $(top_srcdir)/sysdeps/$(TARGET_OS)/defconfig
55
56ALL_DIRS:= $(DIRS) scripts/config
57ALL_MAKEFILES:=$(patsubst %,%/Makefile,$(ALL_DIRS))
58
59ifeq ($(KBUILD_SRC),)
60
61ifdef O
62 ifeq ("$(origin O)", "command line")
63 KBUILD_OUTPUT := $(O)
64 endif
65endif
66
67# That's our default target when none is given on the command line
68.PHONY: _all
69_all:
70
71ifneq ($(KBUILD_OUTPUT),)
72# Invoke a second make in the output directory, passing relevant variables
73# check that the output directory actually exists
74saved-output := $(KBUILD_OUTPUT)
75KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd)
76$(if $(wildcard $(KBUILD_OUTPUT)),, \
77 $(error output directory "$(saved-output)" does not exist))
78
79.PHONY: $(MAKECMDGOALS)
80
81$(filter-out _all,$(MAKECMDGOALS)) _all: $(KBUILD_OUTPUT)/Rules.mak $(KBUILD_OUTPUT)/Makefile
82 $(MAKE) -C $(KBUILD_OUTPUT) \
83 top_srcdir=$(CURDIR) \
84 top_builddir=$(KBUILD_OUTPUT) \
85 TOPDIR=$(KBUILD_OUTPUT) \
86 KBUILD_SRC=$(CURDIR) \
87 -f $(CURDIR)/Makefile $@
88
89$(KBUILD_OUTPUT)/Rules.mak:
90 @echo > $@
91 @echo top_srcdir=$(CURDIR) >> $@
92 @echo top_builddir=$(KBUILD_OUTPUT) >> $@
93 @echo include $(top_srcdir)/Rules.mak >> $@
94
95$(KBUILD_OUTPUT)/Makefile:
96 @echo > $@
97 @echo top_srcdir=$(CURDIR) >> $@
98 @echo top_builddir=$(KBUILD_OUTPUT) >> $@
99 @echo KBUILD_SRC='$$(top_srcdir)' >> $@
100 @echo include '$$(KBUILD_SRC)'/Makefile >> $@
101
102# Leave processing to above invocation of make
103skip-makefile := 1
104endif # ifneq ($(KBUILD_OUTPUT),)
105endif # ifeq ($(KBUILD_SRC),)
106
107ifeq ($(skip-makefile),)
108
109_all: all
Glenn L McGrath6376b582003-09-24 15:48:29 +0000110
Eric Andersen068b6b02002-12-13 22:53:28 +0000111ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
Eric Andersen00814662001-04-26 23:29:10 +0000112
Eric Andersend4fcb802003-07-15 00:28:26 +0000113all: busybox busybox.links doc
Erik Andersen0a704e82000-05-03 03:19:06 +0000114
Eric Andersen7daa0762004-10-08 07:46:08 +0000115all_tree: $(ALL_MAKEFILES)
Eric Andersen3cd27602001-10-24 07:58:02 +0000116
Eric Andersen7daa0762004-10-08 07:46:08 +0000117$(ALL_MAKEFILES): %/Makefile: $(top_srcdir)/%/Makefile
Rob Landleye1d96332005-08-24 00:41:52 +0000118 [ -d $(@D) ] || mkdir -p $(@D); cp $< $@
Eric Andersen7daa0762004-10-08 07:46:08 +0000119
120# In this section, we need .config
121-include $(top_builddir)/.config.cmd
122include $(patsubst %,%/Makefile.in, $(SRC_DIRS))
123-include $(top_builddir)/.depend
124
Rob Landley193c8c72005-07-27 06:55:36 +0000125busybox: $(ALL_MAKEFILES) .depend include/bb_config.h $(libraries-y)
Glenn L McGrathd72e34c2003-09-20 00:59:35 +0000126 $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group
Eric Andersen85208e22002-04-12 12:05:57 +0000127 $(STRIPCMD) $@
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000128
Eric Andersen7daa0762004-10-08 07:46:08 +0000129busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000130 - $(SHELL) $^ >$@
131
Eric Andersen63024862004-10-13 17:45:57 +0000132install: $(top_srcdir)/applets/install.sh busybox busybox.links
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000133 $(SHELL) $< $(PREFIX)
Eric Andersen13879102004-08-26 23:13:00 +0000134ifeq ($(strip $(CONFIG_FEATURE_SUID)),y)
135 @echo
136 @echo
137 @echo --------------------------------------------------
138 @echo You will probably need to make your busybox binary
139 @echo setuid root to ensure all configured applets will
140 @echo work properly.
141 @echo --------------------------------------------------
142 @echo
143endif
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000144
Glenn L McGrath87470de2003-08-29 12:20:31 +0000145uninstall: busybox.links
146 rm -f $(PREFIX)/bin/busybox
147 for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done
Eric Andersen1f30a412002-04-13 13:39:48 +0000148
Peter Kjellerstedt88da3ef2004-11-02 09:05:22 +0000149install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000150 $(SHELL) $< $(PREFIX) --hardlinks
151
Eric Andersen7daa0762004-10-08 07:46:08 +0000152check: busybox
153 bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
154 $(top_srcdir)/testsuite/runtest
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000155
Rob Landleyd9f71652005-08-28 08:24:21 +0000156sizes:
Rob Landleyac692b22005-09-01 02:40:21 +0000157 -rm -f busybox
158 $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \
159 -f $(top_srcdir)/Makefile STRIPCMD=/bin/true
Rob Landleyd9f71652005-08-28 08:24:21 +0000160 nm --size-sort busybox
Rob Landley16890752005-09-02 00:41:53 +0000161
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000162# Documentation Targets
Eric Andersenf7300882004-04-06 15:26:25 +0000163doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html
John Beppu94e50542001-04-05 19:42:03 +0000164
Eric Andersen7daa0762004-10-08 07:46:08 +0000165docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod
166 -mkdir -p docs
167 - ( cat $(top_srcdir)/docs/busybox_header.pod; \
168 $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h; \
169 cat $(top_srcdir)/docs/busybox_footer.pod ) > docs/busybox.pod
Eric Andersen53310252000-07-04 19:42:23 +0000170
Eric Andersen67536ff2000-07-06 22:53:22 +0000171docs/BusyBox.txt: docs/busybox.pod
Mike Frysingerc99e2c52005-07-28 22:14:35 +0000172 $(SECHO)
173 $(SECHO) BusyBox Documentation
174 $(SECHO)
Eric Andersen29be79c2000-12-01 22:57:44 +0000175 -mkdir -p docs
Eric Andersen19f86202001-02-17 00:42:47 +0000176 -pod2text $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000177
Eric Andersen67536ff2000-07-06 22:53:22 +0000178docs/BusyBox.1: docs/busybox.pod
Eric Andersen09a34e52000-12-01 19:40:18 +0000179 - mkdir -p docs
Eric Andersen29be79c2000-12-01 22:57:44 +0000180 - pod2man --center=BusyBox --release="version $(VERSION)" \
Eric Andersen19f86202001-02-17 00:42:47 +0000181 $< > $@
Eric Andersen53310252000-07-04 19:42:23 +0000182
Eric Andersen2423b122001-12-08 01:56:15 +0000183docs/BusyBox.html: docs/busybox.net/BusyBox.html
Eric Andersen1cf81662001-02-17 15:55:15 +0000184 - mkdir -p docs
Eric Andersene2f6e122000-12-01 19:55:04 +0000185 -@ rm -f docs/BusyBox.html
Eric Andersen7daa0762004-10-08 07:46:08 +0000186 -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html
Eric Andersen53310252000-07-04 19:42:23 +0000187
Eric Andersen2423b122001-12-08 01:56:15 +0000188docs/busybox.net/BusyBox.html: docs/busybox.pod
189 -@ mkdir -p docs/busybox.net
Eric Andersen19f86202001-02-17 00:42:47 +0000190 - pod2html --noindex $< > \
Eric Andersen2423b122001-12-08 01:56:15 +0000191 docs/busybox.net/BusyBox.html
Eric Andersen36763742001-04-24 21:46:07 +0000192 -@ rm -f pod2htm*
Erik Andersen0a704e82000-05-03 03:19:06 +0000193
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000194# The nifty new buildsystem stuff
Eric Andersen7daa0762004-10-08 07:46:08 +0000195scripts/mkdep: $(top_srcdir)/scripts/mkdep.c
196 $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
Eric Andersen67536ff2000-07-06 22:53:22 +0000197
Eric Andersen7daa0762004-10-08 07:46:08 +0000198scripts/split-include: $(top_srcdir)/scripts/split-include.c
199 $(HOSTCC) $(HOSTCFLAGS) -o $@ $<
Erik Andersen1d1d9502000-04-21 01:26:49 +0000200
Mike Frysingerf1dbd4a2005-08-01 20:49:32 +0000201depend dep: .depend
202.depend: scripts/mkdep include/config.h include/bbconfigopts.h
Eric Andersen85208e22002-04-12 12:05:57 +0000203 rm -f .depend .hdepend;
Eric Andersenc9f20d92002-12-05 08:41:41 +0000204 mkdir -p include/config;
Eric Andersenc9f20d92002-12-05 08:41:41 +0000205 scripts/mkdep -I include -- \
Eric Andersen7daa0762004-10-08 07:46:08 +0000206 `find $(top_srcdir) -name \*.c -print | sed -e "s,^./,,"` >> .depend;
Eric Andersenc9f20d92002-12-05 08:41:41 +0000207 scripts/mkdep -I include -- \
Eric Andersen7daa0762004-10-08 07:46:08 +0000208 `find $(top_srcdir) -name \*.h -print | sed -e "s,^./,,"` >> .hdepend;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000209
Eric Andersenc9f20d92002-12-05 08:41:41 +0000210include/config/MARKER: depend scripts/split-include
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000211 scripts/split-include include/config.h include/config
212 @ touch include/config/MARKER
213
Eric Andersenc9f20d92002-12-05 08:41:41 +0000214include/config.h: .config
Eric Andersen7daa0762004-10-08 07:46:08 +0000215 @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \
Glenn L McGrathb19c73d2003-08-29 13:25:55 +0000216 $(MAKE) -C scripts/config conf; \
Eric Andersen3cd27602001-10-24 07:58:02 +0000217 fi;
Eric Andersen7daa0762004-10-08 07:46:08 +0000218 @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN)
Eric Andersen85208e22002-04-12 12:05:57 +0000219
Rob Landley193c8c72005-07-27 06:55:36 +0000220include/bb_config.h: include/config.h
Rob Landley157e8072005-08-02 10:02:23 +0000221 echo -e "#ifndef BB_CONFIG_H\n#define BB_CONFIG_H" > $@
Rob Landleyef8f4232005-07-28 19:36:33 +0000222 sed -e 's/#undef CONFIG_\(.*\)/#define ENABLE_\1 0/' \
223 -e 's/#define CONFIG_\(.*\)/#define CONFIG_\1\n#define ENABLE_\1/' \
224 < $< >> $@
Rob Landley193c8c72005-07-27 06:55:36 +0000225 echo "#endif" >> $@
226
Paul Fox79c142d2005-08-01 16:04:40 +0000227include/bbconfigopts.h: .config
Rob Landleye1d96332005-08-24 00:41:52 +0000228 @[ -d $(@D) ] || mkdir -v $(@D)
229 $(top_srcdir)/scripts/config/mkconfigs >include/bbconfigopts.h
Paul Fox79c142d2005-08-01 16:04:40 +0000230
Eric Andersenc9f20d92002-12-05 08:41:41 +0000231finished2:
Mike Frysingerc99e2c52005-07-28 22:14:35 +0000232 $(SECHO)
233 $(SECHO) Finished installing...
234 $(SECHO)
Eric Andersen19f86202001-02-17 00:42:47 +0000235
Eric Andersen068b6b02002-12-13 22:53:28 +0000236else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000237
238all: menuconfig
239
Eric Andersenc9f20d92002-12-05 08:41:41 +0000240# configuration
241# ---------------------------------------------------------------------------
242
Rob Landleye1d96332005-08-24 00:41:52 +0000243scripts/config/conf: scripts/config/Makefile $(top_srcdir)/Rules.mak
Glenn L McGrathb19c73d2003-08-29 13:25:55 +0000244 $(MAKE) -C scripts/config conf
Eric Andersen068b6b02002-12-13 22:53:28 +0000245 -@if [ ! -f .config ] ; then \
Glenn L McGrath6376b582003-09-24 15:48:29 +0000246 cp $(CONFIG_DEFCONFIG) .config; \
Eric Andersen068b6b02002-12-13 22:53:28 +0000247 fi
Eric Andersen7daa0762004-10-08 07:46:08 +0000248
Rob Landleye1d96332005-08-24 00:41:52 +0000249scripts/config/mconf: scripts/config/Makefile $(top_srcdir)/Rules.mak
Glenn L McGrathb19c73d2003-08-29 13:25:55 +0000250 $(MAKE) -C scripts/config ncurses conf mconf
Eric Andersenc9f20d92002-12-05 08:41:41 +0000251 -@if [ ! -f .config ] ; then \
Glenn L McGrath6376b582003-09-24 15:48:29 +0000252 cp $(CONFIG_DEFCONFIG) .config; \
Eric Andersenc9f20d92002-12-05 08:41:41 +0000253 fi
254
255menuconfig: scripts/config/mconf
Glenn L McGrath6376b582003-09-24 15:48:29 +0000256 @./scripts/config/mconf $(CONFIG_CONFIG_IN)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000257
258config: scripts/config/conf
Glenn L McGrath6376b582003-09-24 15:48:29 +0000259 @./scripts/config/conf $(CONFIG_CONFIG_IN)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000260
261oldconfig: scripts/config/conf
Glenn L McGrath6376b582003-09-24 15:48:29 +0000262 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000263
264randconfig: scripts/config/conf
Glenn L McGrath6376b582003-09-24 15:48:29 +0000265 @./scripts/config/conf -r $(CONFIG_CONFIG_IN)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000266
267allyesconfig: scripts/config/conf
Glenn L McGrath6376b582003-09-24 15:48:29 +0000268 @./scripts/config/conf -y $(CONFIG_CONFIG_IN)
Eric Andersen8ee69432004-04-06 11:46:56 +0000269 sed -i -e "s/^CONFIG_DEBUG.*/# CONFIG_DEBUG is not set/" .config
270 sed -i -e "s/^USING_CROSS_COMPILER.*/# USING_CROSS_COMPILER is not set/" .config
Eric Andersenb07ae7b2004-04-06 11:51:45 +0000271 sed -i -e "s/^CONFIG_STATIC.*/# CONFIG_STATIC is not set/" .config
272 sed -i -e "s/^CONFIG_SELINUX.*/# CONFIG_SELINUX is not set/" .config
Eric Andersen8ee69432004-04-06 11:46:56 +0000273 @./scripts/config/conf -o $(CONFIG_CONFIG_IN)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000274
275allnoconfig: scripts/config/conf
Glenn L McGrath6376b582003-09-24 15:48:29 +0000276 @./scripts/config/conf -n $(CONFIG_CONFIG_IN)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000277
278defconfig: scripts/config/conf
Glenn L McGrath6376b582003-09-24 15:48:29 +0000279 @./scripts/config/conf -d $(CONFIG_CONFIG_IN)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000280
Eric Andersencc8ed391999-10-05 16:24:54 +0000281clean:
Eric Andersenf7300882004-04-06 15:26:25 +0000282 - rm -f docs/busybox.dvi docs/busybox.ps \
283 docs/busybox.pod docs/busybox.net/busybox.html \
Eric Andersen24e098a2003-08-22 20:53:38 +0000284 docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \
285 docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \
286 docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \
Rob Landley16890752005-09-02 00:41:53 +0000287 .config.old .hdepend busybox testsuite/links/*
Eric Andersen24e098a2003-08-22 20:53:38 +0000288 - rm -rf _install
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000289 - find . -name .\*.flags -exec rm -f {} \;
Eric Andersen87715172002-07-31 03:45:05 +0000290 - find . -name \*.o -exec rm -f {} \;
291 - find . -name \*.a -exec rm -f {} \;
Eric Andersencc8ed391999-10-05 16:24:54 +0000292
293distclean: clean
Eric Andersena9953432003-01-27 22:11:59 +0000294 - rm -f scripts/split-include scripts/mkdep
Mike Frysingerf9bd87b2005-08-11 21:59:52 +0000295 - rm -rf include/config include/config.h include/bb_config.h include/bbconfigopts.h
Eric Andersena9953432003-01-27 22:11:59 +0000296 - find . -name .depend -exec rm -f {} \;
Eric Andersenc9f20d92002-12-05 08:41:41 +0000297 rm -f .config .config.old .config.cmd
Eric Andersena9953432003-01-27 22:11:59 +0000298 - $(MAKE) -C scripts/config clean
Eric Andersencc8ed391999-10-05 16:24:54 +0000299
Eric Andersenc9f20d92002-12-05 08:41:41 +0000300release: distclean #doc
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000301 cd ..; \
302 rm -rf $(PROG)-$(VERSION); \
303 cp -a busybox $(PROG)-$(VERSION); \
304 \
305 find $(PROG)-$(VERSION)/ -type d \
Eric Andersen4306bb12005-08-17 00:03:23 +0000306 -name .svn \
Mike Frysingerfcafa4b2005-08-01 20:48:00 +0000307 -print \
308 -exec rm -rf {} \; ; \
309 \
310 find $(PROG)-$(VERSION)/ -type f \
311 -name .\#* \
312 -print \
313 -exec rm -f {} \; ; \
314 \
Glenn L McGrath0874a612003-11-17 10:26:43 +0000315 tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/;
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000316
Mark Whitleydd23b8b2000-07-10 23:00:47 +0000317tags:
318 ctags -R .
Matt Kraai4e05da82001-11-19 19:47:56 +0000319
Eric Andersenc9f20d92002-12-05 08:41:41 +0000320
Eric Andersen068b6b02002-12-13 22:53:28 +0000321endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000322
Eric Andersen7daa0762004-10-08 07:46:08 +0000323endif # ifeq ($(skip-makefile),)
Eric Andersenc9f20d92002-12-05 08:41:41 +0000324
Eric Andersen7daa0762004-10-08 07:46:08 +0000325.PHONY: dummy subdirs release distclean clean config oldconfig \
326 menuconfig tags check test depend buildtree