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 \ |
| 25 | release tags |
| 26 | TOPDIR=./ |
| 27 | include Rules.mak |
| 28 | |
Glenn L McGrath | 3238ea1 | 2003-02-15 10:53:40 +0000 | [diff] [blame] | 29 | DIRS:=applets archival archival/libunarchive coreutils console-tools \ |
| 30 | debianutils editors findutils init miscutils modutils networking \ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 31 | networking/libiproute networking/udhcp procps loginutils shell \ |
Eric Andersen | eac2045 | 2003-07-29 07:45:05 +0000 | [diff] [blame] | 32 | sysklogd util-linux libpwdgrp coreutils/libcoreutils libbb |
Eric Andersen | ab050f5 | 2001-01-27 06:01:43 +0000 | [diff] [blame] | 33 | |
Eric Andersen | 9e48045 | 2003-07-03 10:07:04 +0000 | [diff] [blame] | 34 | ifeq ($(strip $(CONFIG_SELINUX)),y) |
| 35 | CFLAGS += -I/usr/include/selinux |
| 36 | LIBRARIES += -lsecure |
| 37 | endif |
| 38 | |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 39 | CONFIG_CONFIG_IN = sysdeps/$(TARGET_OS)/Config.in |
| 40 | CONFIG_DEFCONFIG = sysdeps/$(TARGET_OS)/defconfig |
| 41 | |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 42 | ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
Eric Andersen | 0081466 | 2001-04-26 23:29:10 +0000 | [diff] [blame] | 43 | |
Eric Andersen | d4fcb80 | 2003-07-15 00:28:26 +0000 | [diff] [blame] | 44 | all: busybox busybox.links doc |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 45 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 46 | # In this section, we need .config |
| 47 | -include .config.cmd |
| 48 | include $(patsubst %,%/Makefile.in, $(DIRS)) |
Eric Andersen | 515881c | 2004-04-06 15:19:52 +0000 | [diff] [blame] | 49 | -include $(TOPDIR).depend |
Eric Andersen | 3cd2760 | 2001-10-24 07:58:02 +0000 | [diff] [blame] | 50 | |
Eric Andersen | 1c25ba9 | 2003-06-25 05:18:48 +0000 | [diff] [blame] | 51 | busybox: .depend include/config.h $(libraries-y) |
Glenn L McGrath | d72e34c | 2003-09-20 00:59:35 +0000 | [diff] [blame] | 52 | $(CC) $(LDFLAGS) -o $@ -Wl,--start-group $(libraries-y) $(LIBRARIES) -Wl,--end-group |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 53 | $(STRIPCMD) $@ |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 54 | |
Eric Andersen | b6071ea | 2003-06-25 03:26:04 +0000 | [diff] [blame] | 55 | busybox.links: applets/busybox.mkll include/config.h |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 56 | - $(SHELL) $^ >$@ |
| 57 | |
| 58 | install: applets/install.sh busybox busybox.links |
| 59 | $(SHELL) $< $(PREFIX) |
| 60 | |
Glenn L McGrath | 87470de | 2003-08-29 12:20:31 +0000 | [diff] [blame] | 61 | uninstall: busybox.links |
| 62 | rm -f $(PREFIX)/bin/busybox |
| 63 | for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done |
Eric Andersen | 1f30a41 | 2002-04-13 13:39:48 +0000 | [diff] [blame] | 64 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 65 | install-hardlinks: applets/install.sh busybox busybox.links |
| 66 | $(SHELL) $< $(PREFIX) --hardlinks |
| 67 | |
| 68 | |
| 69 | # Documentation Targets |
Eric Andersen | f730088 | 2004-04-06 15:26:25 +0000 | [diff] [blame] | 70 | 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] | 71 | |
Eric Andersen | 1552ff7 | 2001-10-31 11:07:12 +0000 | [diff] [blame] | 72 | docs/busybox.pod : docs/busybox_header.pod include/usage.h docs/busybox_footer.pod |
John Beppu | 94e5054 | 2001-04-05 19:42:03 +0000 | [diff] [blame] | 73 | - ( cat docs/busybox_header.pod; \ |
Eric Andersen | 1552ff7 | 2001-10-31 11:07:12 +0000 | [diff] [blame] | 74 | docs/autodocifier.pl include/usage.h; \ |
John Beppu | 94e5054 | 2001-04-05 19:42:03 +0000 | [diff] [blame] | 75 | cat docs/busybox_footer.pod ) > docs/busybox.pod |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 76 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 77 | docs/BusyBox.txt: docs/busybox.pod |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 78 | @echo |
| 79 | @echo BusyBox Documentation |
| 80 | @echo |
Eric Andersen | 29be79c | 2000-12-01 22:57:44 +0000 | [diff] [blame] | 81 | -mkdir -p docs |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 82 | -pod2text $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 83 | |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 84 | docs/BusyBox.1: docs/busybox.pod |
Eric Andersen | 09a34e5 | 2000-12-01 19:40:18 +0000 | [diff] [blame] | 85 | - mkdir -p docs |
Eric Andersen | 29be79c | 2000-12-01 22:57:44 +0000 | [diff] [blame] | 86 | - pod2man --center=BusyBox --release="version $(VERSION)" \ |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 87 | $< > $@ |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 88 | |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 89 | docs/BusyBox.html: docs/busybox.net/BusyBox.html |
Eric Andersen | 1cf8166 | 2001-02-17 15:55:15 +0000 | [diff] [blame] | 90 | - mkdir -p docs |
Eric Andersen | e2f6e12 | 2000-12-01 19:55:04 +0000 | [diff] [blame] | 91 | -@ rm -f docs/BusyBox.html |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 92 | -@ ln -s busybox.net/BusyBox.html docs/BusyBox.html |
Eric Andersen | 5331025 | 2000-07-04 19:42:23 +0000 | [diff] [blame] | 93 | |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 94 | docs/busybox.net/BusyBox.html: docs/busybox.pod |
| 95 | -@ mkdir -p docs/busybox.net |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 96 | - pod2html --noindex $< > \ |
Eric Andersen | 2423b12 | 2001-12-08 01:56:15 +0000 | [diff] [blame] | 97 | docs/busybox.net/BusyBox.html |
Eric Andersen | 3676374 | 2001-04-24 21:46:07 +0000 | [diff] [blame] | 98 | -@ rm -f pod2htm* |
Erik Andersen | 0a704e8 | 2000-05-03 03:19:06 +0000 | [diff] [blame] | 99 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 100 | # The nifty new buildsystem stuff |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 101 | scripts/mkdep: scripts/mkdep.c |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 102 | $(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c |
Eric Andersen | 67536ff | 2000-07-06 22:53:22 +0000 | [diff] [blame] | 103 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 104 | scripts/split-include: scripts/split-include.c |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 105 | $(HOSTCC) $(HOSTCFLAGS) -o scripts/split-include scripts/split-include.c |
Erik Andersen | 1d1d950 | 2000-04-21 01:26:49 +0000 | [diff] [blame] | 106 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 107 | .depend: scripts/mkdep |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 108 | rm -f .depend .hdepend; |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 109 | mkdir -p include/config; |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 110 | $(HOSTCC) $(HOSTCFLAGS) -o scripts/mkdep scripts/mkdep.c |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 111 | scripts/mkdep -I include -- \ |
Eric Andersen | 515881c | 2004-04-06 15:19:52 +0000 | [diff] [blame] | 112 | `find -name \*.c -print | sed -e "s,^./,,"` >> .depend; |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 113 | scripts/mkdep -I include -- \ |
Eric Andersen | 515881c | 2004-04-06 15:19:52 +0000 | [diff] [blame] | 114 | `find -name \*.h -print | sed -e "s,^./,,"` >> .hdepend; |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 115 | |
Eric Andersen | aaab46b | 2003-01-11 18:02:51 +0000 | [diff] [blame] | 116 | depend dep: include/config.h .depend |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 117 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 118 | include/config/MARKER: depend scripts/split-include |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 119 | scripts/split-include include/config.h include/config |
| 120 | @ touch include/config/MARKER |
| 121 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 122 | include/config.h: .config |
| 123 | @if [ ! -x ./scripts/config/conf ] ; then \ |
Glenn L McGrath | b19c73d | 2003-08-29 13:25:55 +0000 | [diff] [blame] | 124 | $(MAKE) -C scripts/config conf; \ |
Eric Andersen | 3cd2760 | 2001-10-24 07:58:02 +0000 | [diff] [blame] | 125 | fi; |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 126 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 127 | |
| 128 | %.o: %.c |
| 129 | $(CC) $(CFLAGS) $(EXTRA_CFLAGS) -c -o $@ $< |
| 130 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 131 | finished2: |
| 132 | @echo |
| 133 | @echo Finished installing... |
| 134 | @echo |
Eric Andersen | 19f8620 | 2001-02-17 00:42:47 +0000 | [diff] [blame] | 135 | |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 136 | else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 137 | |
| 138 | all: menuconfig |
| 139 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 140 | # configuration |
| 141 | # --------------------------------------------------------------------------- |
| 142 | |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 143 | scripts/config/conf: |
Glenn L McGrath | b19c73d | 2003-08-29 13:25:55 +0000 | [diff] [blame] | 144 | $(MAKE) -C scripts/config conf |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 145 | -@if [ ! -f .config ] ; then \ |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 146 | cp $(CONFIG_DEFCONFIG) .config; \ |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 147 | fi |
| 148 | scripts/config/mconf: |
Glenn L McGrath | b19c73d | 2003-08-29 13:25:55 +0000 | [diff] [blame] | 149 | $(MAKE) -C scripts/config ncurses conf mconf |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 150 | -@if [ ! -f .config ] ; then \ |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 151 | cp $(CONFIG_DEFCONFIG) .config; \ |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 152 | fi |
| 153 | |
| 154 | menuconfig: scripts/config/mconf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 155 | @./scripts/config/mconf $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 156 | |
| 157 | config: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 158 | @./scripts/config/conf $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 159 | |
| 160 | oldconfig: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 161 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 162 | |
| 163 | randconfig: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 164 | @./scripts/config/conf -r $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 165 | |
| 166 | allyesconfig: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 167 | @./scripts/config/conf -y $(CONFIG_CONFIG_IN) |
Eric Andersen | 8ee6943 | 2004-04-06 11:46:56 +0000 | [diff] [blame] | 168 | sed -i -e "s/^CONFIG_DEBUG.*/# CONFIG_DEBUG is not set/" .config |
| 169 | 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] | 170 | sed -i -e "s/^CONFIG_STATIC.*/# CONFIG_STATIC is not set/" .config |
| 171 | sed -i -e "s/^CONFIG_SELINUX.*/# CONFIG_SELINUX is not set/" .config |
Eric Andersen | 8ee6943 | 2004-04-06 11:46:56 +0000 | [diff] [blame] | 172 | @./scripts/config/conf -o $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 173 | |
| 174 | allnoconfig: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 175 | @./scripts/config/conf -n $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 176 | |
| 177 | defconfig: scripts/config/conf |
Glenn L McGrath | 6376b58 | 2003-09-24 15:48:29 +0000 | [diff] [blame] | 178 | @./scripts/config/conf -d $(CONFIG_CONFIG_IN) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 179 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 180 | check: busybox |
| 181 | cd testsuite && ./runtest |
| 182 | |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 183 | clean: |
Eric Andersen | f730088 | 2004-04-06 15:26:25 +0000 | [diff] [blame] | 184 | - rm -f docs/busybox.dvi docs/busybox.ps \ |
| 185 | docs/busybox.pod docs/busybox.net/busybox.html \ |
Eric Andersen | 24e098a | 2003-08-22 20:53:38 +0000 | [diff] [blame] | 186 | docs/busybox pod2htm* *.gdb *.elf *~ core .*config.log \ |
| 187 | docs/BusyBox.txt docs/BusyBox.1 docs/BusyBox.html \ |
| 188 | docs/busybox.net/BusyBox.html busybox.links libbb/loop.h \ |
| 189 | .config.old .hdepend busybox |
| 190 | - rm -rf _install |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 191 | - find . -name .\*.flags -exec rm -f {} \; |
Eric Andersen | 8771517 | 2002-07-31 03:45:05 +0000 | [diff] [blame] | 192 | - find . -name \*.o -exec rm -f {} \; |
| 193 | - find . -name \*.a -exec rm -f {} \; |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 194 | |
| 195 | distclean: clean |
Eric Andersen | a995343 | 2003-01-27 22:11:59 +0000 | [diff] [blame] | 196 | - rm -f scripts/split-include scripts/mkdep |
| 197 | - rm -rf include/config include/config.h |
| 198 | - find . -name .depend -exec rm -f {} \; |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 199 | rm -f .config .config.old .config.cmd |
Eric Andersen | a995343 | 2003-01-27 22:11:59 +0000 | [diff] [blame] | 200 | - $(MAKE) -C scripts/config clean |
Eric Andersen | cc8ed39 | 1999-10-05 16:24:54 +0000 | [diff] [blame] | 201 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 202 | release: distclean #doc |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 203 | cd ..; \ |
Glenn L McGrath | 0874a61 | 2003-11-17 10:26:43 +0000 | [diff] [blame] | 204 | rm -rf $(PROG)-$(VERSION); \ |
| 205 | cp -a busybox $(PROG)-$(VERSION); \ |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 206 | \ |
Glenn L McGrath | 0874a61 | 2003-11-17 10:26:43 +0000 | [diff] [blame] | 207 | find $(PROG)-$(VERSION)/ -type d \ |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 208 | -name CVS \ |
| 209 | -print \ |
Eric Andersen | 53b55ac | 2001-03-16 07:43:53 +0000 | [diff] [blame] | 210 | -exec rm -rf {} \; ; \ |
Erik Andersen | fac10d7 | 2000-02-07 05:29:42 +0000 | [diff] [blame] | 211 | \ |
Glenn L McGrath | 0874a61 | 2003-11-17 10:26:43 +0000 | [diff] [blame] | 212 | find $(PROG)-$(VERSION)/ -type f \ |
Eric Andersen | b0b732b | 2000-07-06 23:17:16 +0000 | [diff] [blame] | 213 | -name .\#* \ |
| 214 | -print \ |
Eric Andersen | 53b55ac | 2001-03-16 07:43:53 +0000 | [diff] [blame] | 215 | -exec rm -f {} \; ; \ |
Eric Andersen | b0b732b | 2000-07-06 23:17:16 +0000 | [diff] [blame] | 216 | \ |
Glenn L McGrath | 0874a61 | 2003-11-17 10:26:43 +0000 | [diff] [blame] | 217 | tar -cvzf $(PROG)-$(VERSION).tar.gz $(PROG)-$(VERSION)/; |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 218 | |
Mark Whitley | dd23b8b | 2000-07-10 23:00:47 +0000 | [diff] [blame] | 219 | tags: |
| 220 | ctags -R . |
Matt Kraai | 4e05da8 | 2001-11-19 19:47:56 +0000 | [diff] [blame] | 221 | |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 222 | |
Eric Andersen | 068b6b0 | 2002-12-13 22:53:28 +0000 | [diff] [blame] | 223 | endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 224 | |
| 225 | .PHONY: dummy subdirs release distclean clean config oldconfig \ |
Eric Andersen | 8f41bfc | 2004-07-20 06:04:28 +0000 | [diff] [blame] | 226 | menuconfig tags check test depend |
Eric Andersen | c9f20d9 | 2002-12-05 08:41:41 +0000 | [diff] [blame] | 227 | |
Eric Andersen | 85208e2 | 2002-04-12 12:05:57 +0000 | [diff] [blame] | 228 | |