Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 1 | # Makefile for busybox |
| 2 | # |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 3 | # Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Erik Andersen | 9ffdaa6 | 2000-02-11 21:55:04 +0000 | [diff] [blame] | 4 | # |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 5 | # 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 Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 20 | #-------------------------------------------------------------- |
| 21 | # You shouldn't need to mess with anything beyond this point... |
| 22 | #-------------------------------------------------------------- |
| 23 | noconfig_targets := menuconfig config oldconfig randconfig \ |
| 24 | defconfig allyesconfig allnoconfig clean distclean \ |
Eric Andersen | bcf2724 | 2005-02-13 22:15:59 +0000 | [diff] [blame] | 25 | release tags |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 26 | |
| 27 | ifndef TOPDIR |
| 28 | TOPDIR=$(CURDIR)/ |
| 29 | endif |
| 30 | ifndef top_srcdir |
| 31 | top_srcdir=$(CURDIR) |
| 32 | endif |
| 33 | ifndef top_builddir |
| 34 | top_builddir=$(CURDIR) |
| 35 | endif |
| 36 | |
Mike Frysinger | 9d6e083 | 2005-07-31 22:50:17 +0000 | [diff] [blame] | 37 | export srctree=$(top_srcdir) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 38 | vpath %/Config.in $(srctree) |
| 39 | |
Rob Landley | e1d9633 | 2005-08-24 00:41:52 +0000 | [diff] [blame] | 40 | include $(top_srcdir)/Rules.mak |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 41 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 42 | DIRS:=applets archival archival/libunarchive coreutils console-tools \ |
| 43 | debianutils editors findutils init miscutils modutils networking \ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 44 | networking/libiproute networking/udhcp procps loginutils shell \ |
Mike Frysinger | d89e629 | 2005-04-24 05:07:59 +0000 | [diff] [blame] | 45 | sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 46 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 47 | SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS)) |
| 48 | |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 49 | ifeq ($(strip $(CONFIG_SELINUX)),y) |
Rob Landley | 60158cb | 2005-05-03 06:25:50 +0000 | [diff] [blame] | 50 | LIBRARIES += -lselinux |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 51 | endif |
| 52 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 53 | CONFIG_CONFIG_IN = $(top_srcdir)/sysdeps/$(TARGET_OS)/Config.in |
| 54 | CONFIG_DEFCONFIG = $(top_srcdir)/sysdeps/$(TARGET_OS)/defconfig |
| 55 | |
| 56 | ALL_DIRS:= $(DIRS) scripts/config |
| 57 | ALL_MAKEFILES:=$(patsubst %,%/Makefile,$(ALL_DIRS)) |
| 58 | |
| 59 | ifeq ($(KBUILD_SRC),) |
| 60 | |
| 61 | ifdef O |
| 62 | ifeq ("$(origin O)", "command line") |
| 63 | KBUILD_OUTPUT := $(O) |
| 64 | endif |
| 65 | endif |
| 66 | |
| 67 | # That's our default target when none is given on the command line |
| 68 | .PHONY: _all |
| 69 | _all: |
| 70 | |
| 71 | ifneq ($(KBUILD_OUTPUT),) |
| 72 | # Invoke a second make in the output directory, passing relevant variables |
| 73 | # check that the output directory actually exists |
| 74 | saved-output := $(KBUILD_OUTPUT) |
| 75 | KBUILD_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 |
| 103 | skip-makefile := 1 |
| 104 | endif # ifneq ($(KBUILD_OUTPUT),) |
| 105 | endif # ifeq ($(KBUILD_SRC),) |
| 106 | |
| 107 | ifeq ($(skip-makefile),) |
| 108 | |
| 109 | _all: all |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 110 | |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 111 | ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
Eric Andersen | 0081466 | 2001-04-26 23:29:10 +0000 | [diff] [blame] | 112 | |
Eric Andersen | d4fcb80 | 2003-07-15 00:28:26 +0000 | [diff] [blame] | 113 | all: busybox busybox.links doc |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 114 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 115 | all_tree: $(ALL_MAKEFILES) |
Eric Andersen | 3cd2760 | 2001-10-24 07:58:02 +0000 | [diff] [blame] | 116 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 117 | $(ALL_MAKEFILES): %/Makefile: $(top_srcdir)/%/Makefile |
Rob Landley | e1d9633 | 2005-08-24 00:41:52 +0000 | [diff] [blame] | 118 | [ -d $(@D) ] || mkdir -p $(@D); cp $< $@ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 119 | |
| 120 | # In this section, we need .config |
| 121 | -include $(top_builddir)/.config.cmd |
| 122 | include $(patsubst %,%/Makefile.in, $(SRC_DIRS)) |
| 123 | -include $(top_builddir)/.depend |
| 124 | |
Rob Landley | 193c8c7 | 2005-07-27 06:55:36 +0000 | [diff] [blame] | 125 | busybox: $(ALL_MAKEFILES) .depend include/bb_config.h $(libraries-y) |
Glenn L McGrath | d72e34c | 2003-09-20 00:59:35 +0000 | [diff] [blame] | 126 | $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 127 | $(STRIPCMD) $@ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 128 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 129 | busybox.links: $(top_srcdir)/applets/busybox.mkll include/config.h $(top_srcdir)/include/applets.h |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 130 | - $(SHELL) $^ >$@ |
| 131 | |
Eric Andersen | 6302486 | 2004-10-13 17:45:57 +0000 | [diff] [blame] | 132 | install: $(top_srcdir)/applets/install.sh busybox busybox.links |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 133 | $(SHELL) $< $(PREFIX) |
Eric Andersen | 1387910 | 2004-08-26 23:13:00 +0000 | [diff] [blame] | 134 | ifeq ($(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 |
| 143 | endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 144 | |
Glenn L McGrath | 87470de | 2003-08-29 12:20:31 +0000 | [diff] [blame] | 145 | uninstall: busybox.links |
| 146 | rm -f $(PREFIX)/bin/busybox |
| 147 | for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done |
Eric Andersen | 1f30a41 | 2002-04-13 13:39:48 +0000 | [diff] [blame] | 148 | |
Peter Kjellerstedt | 88da3ef | 2004-11-02 09:05:22 +0000 | [diff] [blame] | 149 | install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 150 | $(SHELL) $< $(PREFIX) --hardlinks |
| 151 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 152 | check: busybox |
| 153 | bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \ |
| 154 | $(top_srcdir)/testsuite/runtest |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 155 | |
Rob Landley | d9f7165 | 2005-08-28 08:24:21 +0000 | [diff] [blame] | 156 | sizes: |
Rob Landley | ac692b2 | 2005-09-01 02:40:21 +0000 | [diff] [blame] | 157 | -rm -f busybox |
| 158 | $(MAKE) top_srcdir=$(top_srcdir) top_builddir=$(top_builddir) \ |
| 159 | -f $(top_srcdir)/Makefile STRIPCMD=/bin/true |
Rob Landley | d9f7165 | 2005-08-28 08:24:21 +0000 | [diff] [blame] | 160 | nm --size-sort busybox |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 161 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 162 | # Documentation Targets |
Eric Andersen | f730088 | 2004-04-06 15:26:25 +0000 | [diff] [blame] | 163 | doc: docs/busybox.pod docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html |
John Beppu | 94e5054 | 2001-04-05 19:42:03 +0000 | [diff] [blame] | 164 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 165 | docs/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 Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 170 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 171 | docs/BusyBox.txt: docs/busybox.pod |
Mike Frysinger | c99e2c5 | 2005-07-28 22:14:35 +0000 | [diff] [blame] | 172 | $(SECHO) |
| 173 | $(SECHO) BusyBox Documentation |
| 174 | $(SECHO) |
Eric Andersen | 29be79c | 2000-12-01 22:57:44 +0000 | [diff] [blame] | 175 | -mkdir -p docs |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 176 | -pod2text $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 177 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 178 | docs/BusyBox.1: docs/busybox.pod |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 179 | - mkdir -p docs |
Eric Andersen | 29be79c | 2000-12-01 22:57:44 +0000 | [diff] [blame] | 180 | - pod2man --center=BusyBox --release="version $(VERSION)" \ |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 181 | $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 182 | |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 183 | docs/BusyBox.html: docs/busybox.net/BusyBox.html |
Eric Andersen | 1cf8166 | 2001-02-17 15:55:15 +0000 | [diff] [blame] | 184 | - mkdir -p docs |
Eric Andersen | e2f6e12 | 2000-12-01 19:55:04 +0000 | [diff] [blame] | 185 | -@ rm -f docs/BusyBox.html |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 186 | -@ cp docs/busybox.net/BusyBox.html docs/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 187 | |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 188 | docs/busybox.net/BusyBox.html: docs/busybox.pod |
| 189 | -@ mkdir -p docs/busybox.net |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 190 | - pod2html --noindex $< > \ |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 191 | docs/busybox.net/BusyBox.html |
Eric Andersen | 3676374 | 2001-04-24 21:46:07 +0000 | [diff] [blame] | 192 | -@ rm -f pod2htm* |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 193 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 194 | # The nifty new buildsystem stuff |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 195 | scripts/mkdep: $(top_srcdir)/scripts/mkdep.c |
| 196 | $(HOSTCC) $(HOSTCFLAGS) -o $@ $< |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 197 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 198 | scripts/split-include: $(top_srcdir)/scripts/split-include.c |
| 199 | $(HOSTCC) $(HOSTCFLAGS) -o $@ $< |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 200 | |
Mike Frysinger | f1dbd4a | 2005-08-01 20:49:32 +0000 | [diff] [blame] | 201 | depend dep: .depend |
| 202 | .depend: scripts/mkdep include/config.h include/bbconfigopts.h |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 203 | rm -f .depend .hdepend; |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 204 | mkdir -p include/config; |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 205 | scripts/mkdep -I include -- \ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 206 | `find $(top_srcdir) -name \*.c -print | sed -e "s,^./,,"` >> .depend; |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 207 | scripts/mkdep -I include -- \ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 208 | `find $(top_srcdir) -name \*.h -print | sed -e "s,^./,,"` >> .hdepend; |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 209 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 210 | include/config/MARKER: depend scripts/split-include |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 211 | scripts/split-include include/config.h include/config |
| 212 | @ touch include/config/MARKER |
| 213 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 214 | include/config.h: .config |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 215 | @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \ |
Glenn L McGrath | b19c73d | 2003-08-29 13:25:55 +0000 | [diff] [blame] | 216 | $(MAKE) -C scripts/config conf; \ |
Eric Andersen | 3cd2760 | 2001-10-24 07:58:02 +0000 | [diff] [blame] | 217 | fi; |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 218 | @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 219 | |
Rob Landley | 193c8c7 | 2005-07-27 06:55:36 +0000 | [diff] [blame] | 220 | include/bb_config.h: include/config.h |
Rob Landley | 157e807 | 2005-08-02 10:02:23 +0000 | [diff] [blame] | 221 | echo -e "#ifndef BB_CONFIG_H\n#define BB_CONFIG_H" > $@ |
Rob Landley | ef8f423 | 2005-07-28 19:36:33 +0000 | [diff] [blame] | 222 | sed -e 's/#undef CONFIG_\(.*\)/#define ENABLE_\1 0/' \ |
| 223 | -e 's/#define CONFIG_\(.*\)/#define CONFIG_\1\n#define ENABLE_\1/' \ |
| 224 | < $< >> $@ |
Rob Landley | 193c8c7 | 2005-07-27 06:55:36 +0000 | [diff] [blame] | 225 | echo "#endif" >> $@ |
| 226 | |
Paul Fox | 79c142d | 2005-08-01 16:04:40 +0000 | [diff] [blame] | 227 | include/bbconfigopts.h: .config |
Rob Landley | e1d9633 | 2005-08-24 00:41:52 +0000 | [diff] [blame] | 228 | @[ -d $(@D) ] || mkdir -v $(@D) |
| 229 | $(top_srcdir)/scripts/config/mkconfigs >include/bbconfigopts.h |
Paul Fox | 79c142d | 2005-08-01 16:04:40 +0000 | [diff] [blame] | 230 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 231 | finished2: |
Mike Frysinger | c99e2c5 | 2005-07-28 22:14:35 +0000 | [diff] [blame] | 232 | $(SECHO) |
| 233 | $(SECHO) Finished installing... |
| 234 | $(SECHO) |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 235 | |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 236 | else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 237 | |
| 238 | all: menuconfig |
| 239 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 240 | # configuration |
| 241 | # --------------------------------------------------------------------------- |
| 242 | |
Rob Landley | e1d9633 | 2005-08-24 00:41:52 +0000 | [diff] [blame] | 243 | scripts/config/conf: scripts/config/Makefile $(top_srcdir)/Rules.mak |
Glenn L McGrath | b19c73d | 2003-08-29 13:25:55 +0000 | [diff] [blame] | 244 | $(MAKE) -C scripts/config conf |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 245 | -@if [ ! -f .config ] ; then \ |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 246 | cp $(CONFIG_DEFCONFIG) .config; \ |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 247 | fi |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 248 | |
Rob Landley | e1d9633 | 2005-08-24 00:41:52 +0000 | [diff] [blame] | 249 | scripts/config/mconf: scripts/config/Makefile $(top_srcdir)/Rules.mak |
Glenn L McGrath | b19c73d | 2003-08-29 13:25:55 +0000 | [diff] [blame] | 250 | $(MAKE) -C scripts/config ncurses conf mconf |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 251 | -@if [ ! -f .config ] ; then \ |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 252 | cp $(CONFIG_DEFCONFIG) .config; \ |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 253 | fi |
| 254 | |
| 255 | menuconfig: scripts/config/mconf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 256 | @./scripts/config/mconf $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 257 | |
| 258 | config: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 259 | @./scripts/config/conf $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 260 | |
| 261 | oldconfig: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 262 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 263 | |
| 264 | randconfig: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 265 | @./scripts/config/conf -r $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 266 | |
| 267 | allyesconfig: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 268 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) |
Eric Andersen | 8ee6943 | 2004-04-06 11:46:56 +0000 | [diff] [blame] | 269 | 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 Andersen | b07ae7b | 2004-04-06 11:51:45 +0000 | [diff] [blame] | 271 | 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 Andersen | 8ee6943 | 2004-04-06 11:46:56 +0000 | [diff] [blame] | 273 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 274 | |
| 275 | allnoconfig: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 276 | @./scripts/config/conf -n $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 277 | |
| 278 | defconfig: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 279 | @./scripts/config/conf -d $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 280 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 281 | clean: |
Eric Andersen | f730088 | 2004-04-06 15:26:25 +0000 | [diff] [blame] | 282 | - rm -f docs/busybox.dvi docs/busybox.ps \ |
| 283 | docs/busybox.pod docs/busybox.net/busybox.html \ |
Eric Andersen | 24e098a | 2003-08-22 20:53:38 +0000 | [diff] [blame] | 284 | 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 Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 287 | .config.old .hdepend busybox testsuite/links/* |
Eric Andersen | 24e098a | 2003-08-22 20:53:38 +0000 | [diff] [blame] | 288 | - rm -rf _install |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 289 | - find . -name .\*.flags -exec rm -f {} \; |
Eric Andersen | 8771517 | 2002-07-31 03:45:05 +0000 | [diff] [blame] | 290 | - find . -name \*.o -exec rm -f {} \; |
| 291 | - find . -name \*.a -exec rm -f {} \; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 292 | |
| 293 | distclean: clean |
Eric Andersen | a995343 | 2003-01-27 22:11:59 +0000 | [diff] [blame] | 294 | - rm -f scripts/split-include scripts/mkdep |
Mike Frysinger | f9bd87b | 2005-08-11 21:59:52 +0000 | [diff] [blame] | 295 | - rm -rf include/config include/config.h include/bb_config.h include/bbconfigopts.h |
Eric Andersen | a995343 | 2003-01-27 22:11:59 +0000 | [diff] [blame] | 296 | - find . -name .depend -exec rm -f {} \; |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 297 | rm -f .config .config.old .config.cmd |
Eric Andersen | a995343 | 2003-01-27 22:11:59 +0000 | [diff] [blame] | 298 | - $(MAKE) -C scripts/config clean |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 299 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 300 | release: distclean #doc |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 301 | cd ..; \ |
| 302 | rm -rf $(PROG)-$(VERSION); \ |
| 303 | cp -a busybox $(PROG)-$(VERSION); \ |
| 304 | \ |
| 305 | find $(PROG)-$(VERSION)/ -type d \ |
Eric Andersen | 4306bb1 | 2005-08-17 00:03:23 +0000 | [diff] [blame] | 306 | -name .svn \ |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 307 | -print \ |
| 308 | -exec rm -rf {} \; ; \ |
| 309 | \ |
| 310 | find $(PROG)-$(VERSION)/ -type f \ |
| 311 | -name .\#* \ |
| 312 | -print \ |
| 313 | -exec rm -f {} \; ; \ |
| 314 | \ |
Glenn L McGrath | 0874a61 | 2003-11-17 10:26:43 +0000 | [diff] [blame] | 315 | tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/; |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 316 | |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 317 | tags: |
| 318 | ctags -R . |
Matt Kraai | 4e05da8 | 2001-11-19 19:47:56 +0000 | [diff] [blame] | 319 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 320 | |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 321 | endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 322 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 323 | endif # ifeq ($(skip-makefile),) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 324 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 325 | .PHONY: dummy subdirs release distclean clean config oldconfig \ |
| 326 | menuconfig tags check test depend buildtree |