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 | # |
Rob Landley | a7e14db | 2005-09-11 01:16:47 +0000 | [diff] [blame] | 5 | # Licensed under GPLv2, see the file LICENSE in this tarball for details. |
Eric Andersen | c499601 | 1999-10-20 22:08:37 +0000 | [diff] [blame] | 6 | # |
| 7 | |
Rob Landley | d9872aa | 2006-05-27 21:24:16 +0000 | [diff] [blame] | 8 | # You shouldn't have to edit anything in this file for configuration |
| 9 | # purposes, try "make help" or read http://busybox.net/FAQ.html. |
| 10 | |
| 11 | .PHONY: dummy subdirs release distclean clean config oldconfig menuconfig \ |
| 12 | tags check test depend dep buildtree hosttools _all checkhelp \ |
| 13 | sizes bloatcheck baseline objsizes |
| 14 | |
Bernhard Reutner-Fischer | e28d1d6 | 2006-05-26 13:22:57 +0000 | [diff] [blame] | 15 | noconfig_targets := menuconfig config oldconfig randconfig hosttools \ |
Bernhard Reutner-Fischer | be5c103 | 2005-10-08 11:08:28 +0000 | [diff] [blame] | 16 | defconfig allyesconfig allnoconfig allbareconfig \ |
Rob Landley | 19808fe | 2006-03-13 03:19:46 +0000 | [diff] [blame] | 17 | clean distclean help \ |
Eric Andersen | bcf2724 | 2005-02-13 22:15:59 +0000 | [diff] [blame] | 18 | release tags |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 19 | |
Bernhard Reutner-Fischer | e5de384 | 2006-06-10 14:58:33 +0000 | [diff] [blame] | 20 | nocheck_targets := clean distclean help release tags |
| 21 | |
Bernhard Reutner-Fischer | 1c943eb | 2005-09-26 16:01:43 +0000 | [diff] [blame] | 22 | # the toplevel sourcedir |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 23 | ifndef top_srcdir |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 24 | top_srcdir=$(CURDIR) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 25 | endif |
Bernhard Reutner-Fischer | 1c943eb | 2005-09-26 16:01:43 +0000 | [diff] [blame] | 26 | # toplevel directory of the object-tree |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 27 | ifndef top_builddir |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 28 | top_builddir=$(CURDIR) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 29 | endif |
| 30 | |
Mike Frysinger | 9d6e083 | 2005-07-31 22:50:17 +0000 | [diff] [blame] | 31 | export srctree=$(top_srcdir) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 32 | vpath %/Config.in $(srctree) |
| 33 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 34 | DIRS:=applets archival archival/libunarchive coreutils console-tools \ |
| 35 | debianutils editors findutils init miscutils modutils networking \ |
Mike Frysinger | 1b4e1da | 2006-05-08 03:24:36 +0000 | [diff] [blame] | 36 | networking/libiproute networking/udhcp procps loginutils shell \ |
Mike Frysinger | d89e629 | 2005-04-24 05:07:59 +0000 | [diff] [blame] | 37 | sysklogd util-linux e2fsprogs libpwdgrp coreutils/libcoreutils libbb |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 38 | |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 39 | SRC_DIRS:=$(patsubst %,$(top_srcdir)/%,$(DIRS)) |
| 40 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 41 | # That's our default target when none is given on the command line |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 42 | _all: |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 43 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 44 | CONFIG_CONFIG_IN = $(top_srcdir)/Config.in |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 45 | |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 46 | ifeq ($(BUILD_SRC),) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 47 | ifdef O |
| 48 | ifeq ("$(origin O)", "command line") |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 49 | BUILD_OUTPUT := $(O) |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 50 | top_builddir := $(O) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 51 | endif |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 52 | else |
| 53 | # If no alternate output-dir was specified, we build in cwd |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 54 | # We are using BUILD_OUTPUT nevertheless to make sure that we create |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 55 | # Rules.mak and the toplevel Makefile, in case they don't exist. |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 56 | BUILD_OUTPUT := $(top_builddir) |
| 57 | endif |
| 58 | |
| 59 | # see if we are in verbose mode |
| 60 | BUILD_VERBOSE := |
| 61 | ifdef V |
| 62 | ifeq ("$(origin V)", "command line") |
| 63 | BUILD_VERBOSE := $(V) |
| 64 | endif |
| 65 | endif |
| 66 | ifdef VERBOSE |
| 67 | ifeq ("$(origin VERBOSE)", "command line") |
| 68 | BUILD_VERBOSE := $(VERBOSE) |
| 69 | endif |
| 70 | endif |
| 71 | |
| 72 | ifneq ($(strip $(BUILD_VERBOSE)),) |
| 73 | export BUILD_VERBOSE |
| 74 | CHECK_VERBOSE := -v |
| 75 | # ARFLAGS+=v |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 76 | endif |
| 77 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 78 | ifneq ($(strip $(HAVE_DOT_CONFIG)),y) |
Bernhard Reutner-Fischer | e5de384 | 2006-06-10 14:58:33 +0000 | [diff] [blame] | 79 | # pull in settings early |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 80 | -include $(top_srcdir)/Rules.mak |
Bernhard Reutner-Fischer | 07a79e7 | 2006-03-09 09:03:37 +0000 | [diff] [blame] | 81 | endif |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 82 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 83 | # All object directories. |
| 84 | OBJ_DIRS := $(DIRS) |
| 85 | all_tree := $(patsubst %,$(top_builddir)/%,$(OBJ_DIRS) scripts scripts/config include) |
| 86 | all_tree: $(all_tree) |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 87 | $(all_tree): |
| 88 | @mkdir -p "$@" |
| 89 | |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 90 | ifneq ($(BUILD_OUTPUT),) |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 91 | # Invoke a second make in the output directory, passing relevant variables |
| 92 | # Check that the output directory actually exists |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 93 | saved-output := $(BUILD_OUTPUT) |
| 94 | BUILD_OUTPUT := $(shell cd $(BUILD_OUTPUT) && /bin/pwd) |
| 95 | $(if $(wildcard $(BUILD_OUTPUT)),, \ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 96 | $(error output directory "$(saved-output)" does not exist)) |
| 97 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 98 | .PHONY: $(MAKECMDGOALS) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 99 | |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 100 | $(filter-out _all,$(MAKECMDGOALS)) _all: $(BUILD_OUTPUT)/Rules.mak $(BUILD_OUTPUT)/Makefile all_tree |
| 101 | $(Q)$(MAKE) -C $(BUILD_OUTPUT) \ |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 102 | top_srcdir=$(top_srcdir) \ |
| 103 | top_builddir=$(top_builddir) \ |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 104 | BUILD_SRC=$(top_srcdir) \ |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 105 | -f $(CURDIR)/Makefile $@ |
| 106 | |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 107 | $(BUILD_OUTPUT)/Rules.mak: |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 108 | @echo > $@ |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 109 | @echo top_srcdir=$(top_srcdir) >> $@ |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 110 | @echo top_builddir=$(BUILD_OUTPUT) >> $@ |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 111 | @echo include $(top_srcdir)/Rules.mak >> $@ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 112 | |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 113 | $(BUILD_OUTPUT)/Makefile: |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 114 | @echo > $@ |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 115 | @echo top_srcdir=$(top_srcdir) >> $@ |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 116 | @echo top_builddir=$(BUILD_OUTPUT) >> $@ |
| 117 | @echo BUILD_SRC='$$(top_srcdir)' >> $@ |
| 118 | @echo include '$$(BUILD_SRC)'/Makefile >> $@ |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 119 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 120 | # Leave processing to above invocation of make |
| 121 | skip-makefile := 1 |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 122 | endif # ifneq ($(BUILD_OUTPUT),) |
| 123 | endif # ifeq ($(BUILD_SRC),) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 124 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 125 | ifeq ($(skip-makefile),) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 126 | |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 127 | # We only need a copy of the Makefile for the config targets and reuse |
| 128 | # the rest from the source directory, i.e. we do not cp ALL_MAKEFILES. |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 129 | scripts/config/Makefile: $(top_srcdir)/scripts/config/Makefile |
| 130 | cp $< $@ |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 131 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 132 | _all: all |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 133 | |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 134 | help: |
| 135 | @echo 'Cleaning:' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 136 | @echo ' clean - delete temporary files created by build' |
| 137 | @echo ' distclean - delete all non-source files (including .config)' |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 138 | @echo |
| 139 | @echo 'Build:' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 140 | @echo ' all - Executable and documentation' |
| 141 | @echo ' busybox - the swiss-army executable' |
| 142 | @echo ' doc - docs/BusyBox.{txt,html,1}' |
Bernhard Reutner-Fischer | fa61ca7 | 2006-06-16 17:19:39 +0000 | [diff] [blame] | 143 | @echo ' html - create html-based cross-reference' |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 144 | @echo |
| 145 | @echo 'Configuration:' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 146 | @echo ' allnoconfig - disable all symbols in .config' |
Rob Landley | 1ab4c3d | 2006-02-08 18:50:17 +0000 | [diff] [blame] | 147 | @echo ' allyesconfig - enable all symbols in .config (see defconfig)' |
| 148 | @echo ' allbareconfig - enable all applets without any sub-features' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 149 | @echo ' config - text based configurator (of last resort)' |
Rob Landley | 1ab4c3d | 2006-02-08 18:50:17 +0000 | [diff] [blame] | 150 | @echo ' defconfig - set .config to largest generic configuration' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 151 | @echo ' menuconfig - interactive curses-based configurator' |
| 152 | @echo ' oldconfig - resolve any unresolved symbols in .config' |
Bernhard Reutner-Fischer | e28d1d6 | 2006-05-26 13:22:57 +0000 | [diff] [blame] | 153 | @echo ' hosttools - build sed for the host.' |
| 154 | @echo ' You can use these commands if the commands on the host' |
| 155 | @echo ' is unusable. Afterwards use it like:' |
| 156 | @echo ' make SED="$(top_builddir)/sed"' |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 157 | @echo |
| 158 | @echo 'Installation:' |
Eric Andersen | a6db0ee | 2006-03-20 17:50:08 +0000 | [diff] [blame] | 159 | @echo ' install - install busybox into $(PREFIX)' |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 160 | @echo ' uninstall' |
| 161 | @echo |
| 162 | @echo 'Development:' |
Rob Landley | 0fbe7dd | 2006-05-28 01:40:26 +0000 | [diff] [blame] | 163 | @echo ' baseline - create busybox_old for bloatcheck.' |
Rob Landley | 0690d15 | 2006-05-11 17:33:10 +0000 | [diff] [blame] | 164 | @echo ' bloatcheck - show size difference between old and new versions' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 165 | @echo ' check - run the test suite for all applets' |
Bernhard Reutner-Fischer | 3916b2a | 2006-05-04 11:38:33 +0000 | [diff] [blame] | 166 | @echo ' checkhelp - check for missing help-entries in Config.in' |
"Vladimir N. Oleynik" | b757699 | 2006-01-23 11:39:05 +0000 | [diff] [blame] | 167 | @echo ' randconfig - generate a random configuration' |
| 168 | @echo ' release - create a distribution tarball' |
| 169 | @echo ' sizes - show size of all enabled busybox symbols' |
Bernhard Reutner-Fischer | 06a81d3 | 2006-04-26 10:10:25 +0000 | [diff] [blame] | 170 | @echo ' objsizes - show size of each .o object built' |
Rob Landley | d24eaac | 2005-09-26 15:49:41 +0000 | [diff] [blame] | 171 | @echo |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 172 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 173 | |
| 174 | include $(top_srcdir)/Rules.mak |
Bernhard Reutner-Fischer | 07a79e7 | 2006-03-09 09:03:37 +0000 | [diff] [blame] | 175 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 176 | ifneq ($(strip $(HAVE_DOT_CONFIG)),y) |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 177 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 178 | # Default target if none was requested explicitly |
Bernhard Reutner-Fischer | a25d83b | 2006-03-13 19:30:06 +0000 | [diff] [blame] | 179 | all: menuconfig |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 180 | |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 181 | # warn if no configuration exists and we are asked to build a non-config target |
| 182 | .config: |
| 183 | @echo "" |
| 184 | @echo "No $(top_builddir)/$@ found!" |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 185 | @echo "Please refer to 'make help', section Configuration." |
Bernhard Reutner-Fischer | 4d63525 | 2005-10-07 10:53:15 +0000 | [diff] [blame] | 186 | @echo "" |
| 187 | @exit 1 |
| 188 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 189 | # configuration |
| 190 | # --------------------------------------------------------------------------- |
| 191 | |
| 192 | scripts/config/conf: scripts/config/Makefile |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 193 | $(Q)$(MAKE) -C scripts/config conf |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 194 | -@if [ ! -f .config ] ; then \ |
| 195 | touch .config; \ |
| 196 | fi |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 197 | |
| 198 | scripts/config/mconf: scripts/config/Makefile |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 199 | $(Q)$(MAKE) -C scripts/config ncurses conf mconf |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 200 | -@if [ ! -f .config ] ; then \ |
| 201 | touch .config; \ |
| 202 | fi |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 203 | |
| 204 | menuconfig: scripts/config/mconf |
Bernhard Reutner-Fischer | 351c832 | 2006-05-19 18:33:34 +0000 | [diff] [blame] | 205 | @[ -f .config ] || $(MAKE) $(MAKEFLAGS) defconfig |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 206 | @./scripts/config/mconf $(CONFIG_CONFIG_IN) |
| 207 | |
| 208 | config: scripts/config/conf |
| 209 | @./scripts/config/conf $(CONFIG_CONFIG_IN) |
| 210 | |
| 211 | oldconfig: scripts/config/conf |
| 212 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
| 213 | |
| 214 | randconfig: scripts/config/conf |
| 215 | @./scripts/config/conf -r $(CONFIG_CONFIG_IN) |
| 216 | |
| 217 | allyesconfig: scripts/config/conf |
Bernhard Reutner-Fischer | 351c832 | 2006-05-19 18:33:34 +0000 | [diff] [blame] | 218 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 219 | |
| 220 | allnoconfig: scripts/config/conf |
Bernhard Reutner-Fischer | 351c832 | 2006-05-19 18:33:34 +0000 | [diff] [blame] | 221 | @./scripts/config/conf -n $(CONFIG_CONFIG_IN) > /dev/null |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 222 | |
Rob Landley | 1ab4c3d | 2006-02-08 18:50:17 +0000 | [diff] [blame] | 223 | # defconfig is allyesconfig minus any features that are specialized enough |
| 224 | # or cause enough behavior change that the user really should switch them on |
| 225 | # manually if that's what they want. Sort of "maximum sane config". |
Rob Landley | a167ec5 | 2006-01-31 02:42:50 +0000 | [diff] [blame] | 226 | |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 227 | defconfig: scripts/config/conf |
Bernhard Reutner-Fischer | 351c832 | 2006-05-19 18:33:34 +0000 | [diff] [blame] | 228 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null |
Rob Landley | 91dc086 | 2006-07-30 18:56:29 +0000 | [diff] [blame] | 229 | @$(SED) -i -r -e "s/^(CONFIG_(DEBUG.*|STATIC|SELINUX|NITPICK|BUILD_(AT_ONCE|LIBBUSYBOX)|FEATURE_(DEVFS|FULL_LIBBUSYBOX|SHARED_BUSYBOX|MTAB_SUPPORT|CLEAN_UP|UDHCP_DEBUG)|INSTALL_NO_USR))=.*/# \1 is not set/" .config |
Bernhard Reutner-Fischer | 351c832 | 2006-05-19 18:33:34 +0000 | [diff] [blame] | 230 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null |
Rob Landley | a167ec5 | 2006-01-31 02:42:50 +0000 | [diff] [blame] | 231 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 232 | |
Bernhard Reutner-Fischer | be5c103 | 2005-10-08 11:08:28 +0000 | [diff] [blame] | 233 | allbareconfig: scripts/config/conf |
Bernhard Reutner-Fischer | 351c832 | 2006-05-19 18:33:34 +0000 | [diff] [blame] | 234 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) > /dev/null |
Bernhard Reutner-Fischer | 273430a | 2006-07-04 08:26:55 +0000 | [diff] [blame] | 235 | @$(SED) -i -r -e "s/^(CONFIG_(DEBUG|STATIC|SELINUX|DEVFSD|NC_GAPING_SECURITY_HOLE|BUILD_AT_ONCE)).*/# \1 is not set/" .config |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 236 | @$(SED) -i -e "/FEATURE/s/=.*//;/^[^#]/s/.*FEATURE.*/# \0 is not set/;" .config |
Bernhard Reutner-Fischer | be5c103 | 2005-10-08 11:08:28 +0000 | [diff] [blame] | 237 | @echo "CONFIG_FEATURE_BUFFERS_GO_ON_STACK=y" >> .config |
Bernhard Reutner-Fischer | 351c832 | 2006-05-19 18:33:34 +0000 | [diff] [blame] | 238 | @yes n | ./scripts/config/conf -o $(CONFIG_CONFIG_IN) > /dev/null |
Bernhard Reutner-Fischer | a9d8913 | 2005-10-07 18:45:03 +0000 | [diff] [blame] | 239 | |
Bernhard Reutner-Fischer | e28d1d6 | 2006-05-26 13:22:57 +0000 | [diff] [blame] | 240 | hosttools: |
| 241 | $(Q)cp .config .config.bak || noold=yea |
| 242 | $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" allnoconfig |
| 243 | $(Q)mv .config .config.in |
| 244 | $(Q)(grep -v CONFIG_SED .config.in ; \ |
| 245 | echo "CONFIG_SED=y" ; ) > .config |
| 246 | $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" oldconfig include/bb_config.h |
| 247 | $(Q)$(MAKE) CC="$(HOSTCC)" CFLAGS="$(HOSTCFLAGS) $(INCS)" busybox |
| 248 | $(Q)[ -f .config.bak ] && mv .config.bak .config || rm .config |
| 249 | mv busybox sed |
| 250 | @echo "Now do: $(MAKE) SED=$(top_builddir)/sed <target>" |
| 251 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 252 | else # ifneq ($(strip $(HAVE_DOT_CONFIG)),y) |
Eric Andersen | 0081466 | 2001-04-26 23:29:10 +0000 | [diff] [blame] | 253 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 254 | all: busybox busybox.links doc |
| 255 | |
| 256 | # In this section, we need .config |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 257 | -include $(top_builddir)/.config.cmd |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 258 | include $(patsubst %,%/Makefile.in, $(SRC_DIRS)) |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 259 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 260 | endif # ifneq ($(strip $(HAVE_DOT_CONFIG)),y) |
Bernhard Reutner-Fischer | 5c071bc | 2005-10-05 07:40:46 +0000 | [diff] [blame] | 261 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 262 | -include $(top_builddir)/.config |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 263 | -include $(top_builddir)/.depend |
| 264 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 265 | |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 266 | ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y) |
Bernhard Reutner-Fischer | 07a79e7 | 2006-03-09 09:03:37 +0000 | [diff] [blame] | 267 | libraries-y:= |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 268 | # Which parts of the internal libs are requested? |
| 269 | # Per default we only want what was actually selected. |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 270 | # -a denotes all while -y denotes the selected ones. |
| 271 | ifeq ($(strip $(CONFIG_FEATURE_FULL_LIBBUSYBOX)),y) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 272 | LIBRARY_DEFINE:=$(LIBRARY_DEFINE-a) |
| 273 | LIBRARY_SRC :=$(LIBRARY_SRC-a) |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 274 | else # CONFIG_FEATURE_FULL_LIBBUSYBOX |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 275 | LIBRARY_DEFINE:=$(LIBRARY_DEFINE-y) |
| 276 | LIBRARY_SRC :=$(LIBRARY_SRC-y) |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 277 | endif # CONFIG_FEATURE_FULL_LIBBUSYBOX |
| 278 | APPLET_SRC:=$(APPLET_SRC-y) |
| 279 | APPLETS_DEFINE:=$(APPLETS_DEFINE-y) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 280 | else # CONFIG_BUILD_AT_ONCE |
Bernhard Reutner-Fischer | 73561cc | 2006-08-28 23:31:54 +0000 | [diff] [blame] | 281 | APPLET_SRC:= |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 282 | # no --combine, build archives out of the individual .o |
| 283 | # This was the old way the binary was built. |
Bernhard Reutner-Fischer | 07a79e7 | 2006-03-09 09:03:37 +0000 | [diff] [blame] | 284 | libbusybox-obj:=archival/libunarchive/libunarchive.a \ |
| 285 | networking/libiproute/libiproute.a \ |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 286 | libpwdgrp/libpwdgrp.a \ |
| 287 | coreutils/libcoreutils/libcoreutils.a \ |
Bernhard Reutner-Fischer | 07a79e7 | 2006-03-09 09:03:37 +0000 | [diff] [blame] | 288 | libbb/libbb.a |
| 289 | libbusybox-obj:=$(patsubst %,$(top_builddir)/%,$(libbusybox-obj)) |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 290 | |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 291 | ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y) |
Bernhard Reutner-Fischer | 07a79e7 | 2006-03-09 09:03:37 +0000 | [diff] [blame] | 292 | # linking against libbusybox, so don't build the .a already contained in the .so |
| 293 | libraries-y:=$(filter-out $(libbusybox-obj),$(libraries-y)) |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 294 | endif # CONFIG_FEATURE_SHARED_BUSYBOX |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 295 | endif # CONFIG_BUILD_AT_ONCE |
| 296 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 297 | |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 298 | ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y) |
| 299 | LD_LIBBUSYBOX:=libbusybox.so |
| 300 | LIBBUSYBOX_SONAME:=$(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION).$(SUBLEVEL_VERSION) |
| 301 | DO_INSTALL_LIBS:=$(LD_LIBBUSYBOX) \ |
| 302 | $(LD_LIBBUSYBOX).$(MAJOR_VERSION) \ |
| 303 | $(LD_LIBBUSYBOX).$(MAJOR_VERSION).$(MINOR_VERSION) |
Bernhard Reutner-Fischer | 2b398be | 2006-04-03 21:16:52 +0000 | [diff] [blame] | 304 | endif # CONFIG_BUILD_LIBBUSYBOX |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 305 | |
| 306 | ifeq ($(strip $(CONFIG_BUILD_AT_ONCE)),y) |
| 307 | ifneq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y) |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 308 | # --combine but not linking against libbusybox, so compile all |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 309 | BUSYBOX_SRC := $(LIBRARY_SRC) |
| 310 | BUSYBOX_DEFINE:= $(LIBRARY_DEFINE) |
| 311 | endif # !CONFIG_FEATURE_SHARED_BUSYBOX |
| 312 | $(LIBBUSYBOX_SONAME): $(LIBRARY_SRC) |
| 313 | else # CONFIG_BUILD_AT_ONCE |
| 314 | $(LIBBUSYBOX_SONAME): $(libbusybox-obj) |
| 315 | endif # CONFIG_BUILD_AT_ONCE |
Bernhard Reutner-Fischer | 08c5a17 | 2006-01-25 15:58:04 +0000 | [diff] [blame] | 316 | |
| 317 | ifeq ($(strip $(CONFIG_FEATURE_SHARED_BUSYBOX)),y) |
| 318 | LDBUSYBOX:=-L$(top_builddir) -lbusybox |
| 319 | endif |
| 320 | |
| 321 | ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 322 | $(LIBBUSYBOX_SONAME): |
| 323 | ifndef MAJOR_VERSION |
| 324 | $(error MAJOR_VERSION needed for $@ is not defined) |
| 325 | endif |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 326 | $(do_link.so) \ |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 327 | -Wl,-soname=$(LD_LIBBUSYBOX).$(MAJOR_VERSION) \ |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 328 | -Wl,-z,combreloc |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 329 | @rm -f $(DO_INSTALL_LIBS) |
| 330 | @for i in $(DO_INSTALL_LIBS); do ln -s $(@) $$i ; done |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 331 | $(do_strip) |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 332 | |
| 333 | endif # ifeq ($(strip $(CONFIG_BUILD_LIBBUSYBOX)),y) |
| 334 | |
Bernhard Reutner-Fischer | d8e87a0 | 2006-05-19 18:37:34 +0000 | [diff] [blame] | 335 | busybox_unstripped: .depend $(LIBBUSYBOX_SONAME) $(BUSYBOX_SRC) $(APPLET_SRC) $(libraries-y) |
Bernhard Reutner-Fischer | 7b8ff22 | 2006-06-13 14:20:17 +0000 | [diff] [blame] | 336 | $(do_link) |
Bernhard Reutner-Fischer | cfc5d86 | 2006-03-02 09:44:32 +0000 | [diff] [blame] | 337 | |
| 338 | busybox: busybox_unstripped |
| 339 | $(Q)cp busybox_unstripped busybox |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 340 | $(do_strip) |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 341 | |
Mike Frysinger | 586ea61 | 2006-04-21 01:18:07 +0000 | [diff] [blame] | 342 | %.bflt: %_unstripped |
| 343 | $(do_elf2flt) |
| 344 | |
Rob Landley | a930bd3 | 2005-12-16 06:12:46 +0000 | [diff] [blame] | 345 | busybox.links: $(top_srcdir)/applets/busybox.mkll include/bb_config.h $(top_srcdir)/include/applets.h |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 346 | $(Q)-$(SHELL) $^ >$@ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 347 | |
Eric Andersen | 6302486 | 2004-10-13 17:45:57 +0000 | [diff] [blame] | 348 | install: $(top_srcdir)/applets/install.sh busybox busybox.links |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 349 | $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \ |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 350 | $(SHELL) $< $(PREFIX) $(INSTALL_OPTS) |
Eric Andersen | 1387910 | 2004-08-26 23:13:00 +0000 | [diff] [blame] | 351 | ifeq ($(strip $(CONFIG_FEATURE_SUID)),y) |
| 352 | @echo |
| 353 | @echo |
| 354 | @echo -------------------------------------------------- |
| 355 | @echo You will probably need to make your busybox binary |
| 356 | @echo setuid root to ensure all configured applets will |
| 357 | @echo work properly. |
| 358 | @echo -------------------------------------------------- |
| 359 | @echo |
| 360 | endif |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 361 | |
Glenn L McGrath | 87470de | 2003-08-29 12:20:31 +0000 | [diff] [blame] | 362 | uninstall: busybox.links |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 363 | rm -f $(PREFIX)/bin/busybox |
| 364 | for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 365 | ifneq ($(strip $(DO_INSTALL_LIBS)),n) |
| 366 | for i in $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS); do \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 367 | rm -f $(PREFIX)$$i; \ |
Bernhard Reutner-Fischer | 7ca61b6 | 2006-01-15 14:04:57 +0000 | [diff] [blame] | 368 | done |
| 369 | endif |
Eric Andersen | 1f30a41 | 2002-04-13 13:39:48 +0000 | [diff] [blame] | 370 | |
Mike Frysinger | ce0cf1d | 2005-09-24 05:47:52 +0000 | [diff] [blame] | 371 | check test: busybox |
Bernhard Reutner-Fischer | e28d1d6 | 2006-05-26 13:22:57 +0000 | [diff] [blame] | 372 | bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite SED="$(SED)" \ |
| 373 | $(SHELL) $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE) |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 374 | |
Bernhard Reutner-Fischer | 3916b2a | 2006-05-04 11:38:33 +0000 | [diff] [blame] | 375 | checkhelp: |
| 376 | $(Q)$(top_srcdir)/scripts/checkhelp.awk \ |
| 377 | $(wildcard $(patsubst %,%/Config.in,$(SRC_DIRS) ./)) |
Rob Landley | d9872aa | 2006-05-27 21:24:16 +0000 | [diff] [blame] | 378 | |
Bernhard Reutner-Fischer | cfc5d86 | 2006-03-02 09:44:32 +0000 | [diff] [blame] | 379 | sizes: busybox_unstripped |
| 380 | $(NM) --size-sort $(<) |
Rob Landley | d9872aa | 2006-05-27 21:24:16 +0000 | [diff] [blame] | 381 | |
Rob Landley | f8a8084 | 2006-05-07 19:26:53 +0000 | [diff] [blame] | 382 | bloatcheck: busybox_old busybox_unstripped |
Rob Landley | 92d8b35 | 2006-05-08 20:48:12 +0000 | [diff] [blame] | 383 | @$(top_srcdir)/scripts/bloat-o-meter busybox_old busybox_unstripped |
Rob Landley | 1689075 | 2005-09-02 00:41:53 +0000 | [diff] [blame] | 384 | |
Rob Landley | d9872aa | 2006-05-27 21:24:16 +0000 | [diff] [blame] | 385 | baseline: busybox_unstripped |
| 386 | @mv busybox_unstripped busybox_old |
| 387 | |
Bernhard Reutner-Fischer | 06a81d3 | 2006-04-26 10:10:25 +0000 | [diff] [blame] | 388 | objsizes: busybox_unstripped |
| 389 | $(SHELL) $(top_srcdir)/scripts/objsizes |
| 390 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 391 | # Documentation Targets |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 392 | 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] | 393 | |
Mike Frysinger | f37529d | 2006-02-05 22:15:39 +0000 | [diff] [blame] | 394 | docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/usage.h $(top_srcdir)/docs/busybox_footer.pod $(top_srcdir)/docs/autodocifier.pl |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 395 | $(disp_doc) |
| 396 | $(Q)-mkdir -p docs |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 397 | $(Q)-( cat $(top_srcdir)/docs/busybox_header.pod ; \ |
| 398 | $(top_srcdir)/docs/autodocifier.pl $(top_srcdir)/include/usage.h ; \ |
| 399 | cat $(top_srcdir)/docs/busybox_footer.pod ; ) > docs/busybox.pod |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 400 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 401 | docs/BusyBox.txt: docs/busybox.pod |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 402 | $(disp_doc) |
| 403 | $(Q)-mkdir -p docs |
| 404 | $(Q)-pod2text $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 405 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 406 | docs/BusyBox.1: docs/busybox.pod |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 407 | $(disp_doc) |
| 408 | $(Q)-mkdir -p docs |
| 409 | $(Q)-pod2man --center=BusyBox --release="version $(VERSION)" \ |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 410 | $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 411 | |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 412 | docs/BusyBox.html: docs/busybox.net/BusyBox.html |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 413 | $(disp_doc) |
| 414 | $(Q)-mkdir -p docs |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 415 | $(Q)-rm -f docs/BusyBox.html |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 416 | $(Q)-cp docs/busybox.net/BusyBox.html docs/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 417 | |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 418 | docs/busybox.net/BusyBox.html: docs/busybox.pod |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 419 | $(Q)-mkdir -p docs/busybox.net |
| 420 | $(Q)-pod2html --noindex $< > \ |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 421 | docs/busybox.net/BusyBox.html |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 422 | $(Q)-rm -f pod2htm* |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 423 | |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 424 | # The nifty new dependency stuff |
"Vladimir N. Oleynik" | 5e60dc4 | 2005-09-12 12:33:27 +0000 | [diff] [blame] | 425 | scripts/bb_mkdep: $(top_srcdir)/scripts/bb_mkdep.c |
Mike Frysinger | 12ef09b | 2006-04-29 04:19:10 +0000 | [diff] [blame] | 426 | $(do_link.h) |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 427 | |
"Vladimir N. Oleynik" | 6732af2 | 2006-02-15 12:29:37 +0000 | [diff] [blame] | 428 | DEP_INCLUDES := include/bb_config.h |
"Vladimir N. Oleynik" | cef737f | 2005-09-21 07:49:34 +0000 | [diff] [blame] | 429 | |
"Vladimir N. Oleynik" | cef737f | 2005-09-21 07:49:34 +0000 | [diff] [blame] | 430 | ifeq ($(strip $(CONFIG_BBCONFIG)),y) |
| 431 | DEP_INCLUDES += include/bbconfigopts.h |
| 432 | |
Bernhard Reutner-Fischer | 42f091a | 2006-06-15 21:35:35 +0000 | [diff] [blame] | 433 | include/bbconfigopts.h: .config $(top_srcdir)/scripts/config/mkconfigs |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 434 | $(disp_gen) |
| 435 | $(Q)$(top_srcdir)/scripts/config/mkconfigs > $@ |
"Vladimir N. Oleynik" | cef737f | 2005-09-21 07:49:34 +0000 | [diff] [blame] | 436 | endif |
| 437 | |
Bernhard Reutner-Fischer | 30ead9a | 2006-05-21 09:02:12 +0000 | [diff] [blame] | 438 | ifeq ($(strip $(CONFIG_FEATURE_COMPRESS_USAGE)),y) |
Bernhard Reutner-Fischer | 4148afe | 2006-05-21 15:05:49 +0000 | [diff] [blame] | 439 | USAGE_BIN:=scripts/usage |
Paul Fox | e332450 | 2006-07-06 20:00:43 +0000 | [diff] [blame] | 440 | $(USAGE_BIN): $(top_srcdir)/scripts/usage.c .config \ |
| 441 | $(top_srcdir)/include/usage.h |
Bernhard Reutner-Fischer | 30ead9a | 2006-05-21 09:02:12 +0000 | [diff] [blame] | 442 | $(do_link.h) |
Rob Landley | 7e21d5f | 2006-04-27 23:34:46 +0000 | [diff] [blame] | 443 | |
| 444 | DEP_INCLUDES += include/usage_compressed.h |
Bernhard Reutner-Fischer | 30ead9a | 2006-05-21 09:02:12 +0000 | [diff] [blame] | 445 | |
Paul Fox | e332450 | 2006-07-06 20:00:43 +0000 | [diff] [blame] | 446 | include/usage_compressed.h: .config $(USAGE_BIN) \ |
| 447 | $(top_srcdir)/scripts/usage_compressed |
| 448 | $(Q)SED="$(SED)" $(SHELL) $(top_srcdir)/scripts/usage_compressed \ |
| 449 | "$(top_builddir)/scripts" > $@ |
Bernhard Reutner-Fischer | 30ead9a | 2006-05-21 09:02:12 +0000 | [diff] [blame] | 450 | endif # CONFIG_FEATURE_COMPRESS_USAGE |
Rob Landley | 7e21d5f | 2006-04-27 23:34:46 +0000 | [diff] [blame] | 451 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 452 | depend dep: .depend |
Bernhard Reutner-Fischer | 4148afe | 2006-05-21 15:05:49 +0000 | [diff] [blame] | 453 | .depend: scripts/bb_mkdep $(USAGE_BIN) $(DEP_INCLUDES) |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 454 | $(disp_gen) |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 455 | $(Q)rm -f .depend |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 456 | $(Q)mkdir -p include/config |
| 457 | $(Q)scripts/bb_mkdep -I $(top_srcdir)/include $(top_srcdir) > $@.tmp |
Mike Frysinger | b38673f | 2006-02-02 01:41:53 +0000 | [diff] [blame] | 458 | $(Q)mv $@.tmp $@ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 459 | |
"Vladimir N. Oleynik" | 6732af2 | 2006-02-15 12:29:37 +0000 | [diff] [blame] | 460 | include/bb_config.h: .config |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 461 | @if [ ! -x $(top_builddir)/scripts/config/conf ] ; then \ |
| 462 | $(MAKE) -C scripts/config conf; \ |
| 463 | fi; |
Eric Andersen | 7daa076 | 2004-10-08 07:46:08 +0000 | [diff] [blame] | 464 | @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 465 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 466 | clean: |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 467 | - $(MAKE) -C scripts/config $@ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 468 | - rm -f docs/busybox.dvi docs/busybox.ps \ |
Eric Andersen | f730088 | 2004-04-06 15:26:25 +0000 | [diff] [blame] | 469 | docs/busybox.pod docs/busybox.net/busybox.html \ |
Eric Andersen | 24e098a | 2003-08-22 20:53:38 +0000 | [diff] [blame] | 470 | docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \ |
| 471 | docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ |
"Vladimir N. Oleynik" | 9394b23 | 2006-01-23 11:24:58 +0000 | [diff] [blame] | 472 | docs/busybox.net/BusyBox.html busybox.links \ |
Bernhard Reutner-Fischer | a597211 | 2006-03-06 14:19:15 +0000 | [diff] [blame] | 473 | libbusybox.so* \ |
Paul Fox | e332450 | 2006-07-06 20:00:43 +0000 | [diff] [blame] | 474 | .config.old busybox busybox_unstripped \ |
| 475 | include/usage_compressed.h scripts/usage |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 476 | - rm -r -f _install testsuite/links |
Bernhard Reutner-Fischer | fa61ca7 | 2006-06-16 17:19:39 +0000 | [diff] [blame] | 477 | - find . -name .\*.flags -o -name \*.o -o -name \*.om -o -name \*.syn \ |
Rob Landley | 31e3610 | 2006-03-09 22:01:05 +0000 | [diff] [blame] | 478 | -o -name \*.os -o -name \*.osm -o -name \*.a | xargs rm -f |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 479 | |
| 480 | distclean: clean |
Mike Frysinger | 59e4611 | 2006-05-10 05:19:27 +0000 | [diff] [blame] | 481 | rm -f scripts/bb_mkdep scripts/usage |
Bernhard Reutner-Fischer | 3c8c069 | 2006-05-21 10:04:46 +0000 | [diff] [blame] | 482 | rm -r -f include/config include/config.h $(DEP_INCLUDES) |
Mike Frysinger | 59e4611 | 2006-05-10 05:19:27 +0000 | [diff] [blame] | 483 | find . -name .depend'*' -print0 | xargs -0 rm -f |
Rob Landley | 1f9145c | 2006-07-12 21:31:16 +0000 | [diff] [blame] | 484 | find . -name '*.rej' -print0 | xargs -0 rm -f |
Rob Landley | e6a3fef | 2006-08-04 20:39:56 +0000 | [diff] [blame] | 485 | rm -f .hdepend busybox_old .config .config.old .config.cmd |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 486 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 487 | release: distclean #doc |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 488 | cd ..; \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 489 | rm -r -f $(PROG)-$(VERSION); \ |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 490 | cp -a busybox $(PROG)-$(VERSION); \ |
| 491 | \ |
| 492 | find $(PROG)-$(VERSION)/ -type d \ |
Eric Andersen | 4306bb1 | 2005-08-17 00:03:23 +0000 | [diff] [blame] | 493 | -name .svn \ |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 494 | -print \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 495 | -exec rm -r -f {} \; ; \ |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 496 | \ |
| 497 | find $(PROG)-$(VERSION)/ -type f \ |
| 498 | -name .\#* \ |
| 499 | -print \ |
Bernhard Reutner-Fischer | 5d26126 | 2006-03-01 22:54:48 +0000 | [diff] [blame] | 500 | -exec rm -f {} \; ; \ |
Mike Frysinger | fcafa4b | 2005-08-01 20:48:00 +0000 | [diff] [blame] | 501 | \ |
Glenn L McGrath | 0874a61 | 2003-11-17 10:26:43 +0000 | [diff] [blame] | 502 | tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/; |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 503 | |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 504 | tags: |
| 505 | ctags -R . |
Matt Kraai | 4e05da8 | 2001-11-19 19:47:56 +0000 | [diff] [blame] | 506 | |
Bernhard Reutner-Fischer | fa61ca7 | 2006-06-16 17:19:39 +0000 | [diff] [blame] | 507 | # documentation, cross-reference |
| 508 | # Modern distributions already ship synopsis packages (e.g. debian) |
| 509 | # If you have an old distribution go to http://synopsis.fresco.org/ |
| 510 | syn_tgt := $(wildcard $(patsubst %,%/*.c,$(SRC_DIRS))) |
| 511 | syn := $(patsubst %.c, %.syn, $(syn_tgt)) |
| 512 | |
| 513 | %.syn: %.c |
| 514 | synopsis -p C -l Comments.SSDFilter,Comments.Previous $(INCS) -Wp,verbose,debug,preprocess,cppflags="'$(CFLAGS) $(EXTRA_CFLAGS) $(LDFLAGS) $(PROG_CFLAGS) $(PROG_LDFLAGS) $(CFLAGS_COMBINE) $(APPLETS_DEFINE) $(BUSYBOX_DEFINE)'" -o $@ $< |
| 515 | html: $(syn) |
| 516 | synopsis -f HTML -Wf,title="'BusyBox Documentation'" -o $@ $^ |
| 517 | |
Bernhard Reutner-Fischer | 07a79e7 | 2006-03-09 09:03:37 +0000 | [diff] [blame] | 518 | |
Bernhard Reutner-Fischer | df10094 | 2006-03-13 19:04:00 +0000 | [diff] [blame] | 519 | endif # ifeq ($(skip-makefile),) |
| 520 | |