diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-07-18 23:51:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-07-18 23:51:27 +0000 |
commit | 164a716f964bba247c660bc70149234f95146871 (patch) | |
tree | 95a8a6f75cb2ed1bb07cb6019088db7348ebf4d4 /busybox/Makefile | |
parent | 8c59a0bf0e9e2d87b0ff273ea3f0bf05bbbf6373 (diff) | |
download | busybox-w32-164a716f964bba247c660bc70149234f95146871.tar.gz busybox-w32-164a716f964bba247c660bc70149234f95146871.tar.bz2 busybox-w32-164a716f964bba247c660bc70149234f95146871.zip |
busybox-1.0.1-rc1.patch
http://busybox.net/lists/busybox/2005-July/014974.html
Diffstat (limited to 'busybox/Makefile')
-rw-r--r-- | busybox/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/busybox/Makefile b/busybox/Makefile index 3e2b3ef18..81c59a089 100644 --- a/busybox/Makefile +++ b/busybox/Makefile | |||
@@ -22,7 +22,7 @@ | |||
22 | #-------------------------------------------------------------- | 22 | #-------------------------------------------------------------- |
23 | noconfig_targets := menuconfig config oldconfig randconfig \ | 23 | noconfig_targets := menuconfig config oldconfig randconfig \ |
24 | defconfig allyesconfig allnoconfig clean distclean \ | 24 | defconfig allyesconfig allnoconfig clean distclean \ |
25 | release tags | 25 | release tags |
26 | 26 | ||
27 | ifndef TOPDIR | 27 | ifndef TOPDIR |
28 | TOPDIR=$(CURDIR)/ | 28 | TOPDIR=$(CURDIR)/ |
@@ -147,7 +147,7 @@ uninstall: busybox.links | |||
147 | rm -f $(PREFIX)/bin/busybox | 147 | rm -f $(PREFIX)/bin/busybox |
148 | for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done | 148 | for i in `cat busybox.links` ; do rm -f $(PREFIX)$$i; done |
149 | 149 | ||
150 | install-hardlinks: applets/install.sh busybox busybox.links | 150 | install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links |
151 | $(SHELL) $< $(PREFIX) --hardlinks | 151 | $(SHELL) $< $(PREFIX) --hardlinks |
152 | 152 | ||
153 | check: busybox | 153 | check: busybox |
@@ -193,7 +193,7 @@ scripts/mkdep: $(top_srcdir)/scripts/mkdep.c | |||
193 | scripts/split-include: $(top_srcdir)/scripts/split-include.c | 193 | scripts/split-include: $(top_srcdir)/scripts/split-include.c |
194 | $(HOSTCC) $(HOSTCFLAGS) -o $@ $< | 194 | $(HOSTCC) $(HOSTCFLAGS) -o $@ $< |
195 | 195 | ||
196 | .depend: scripts/mkdep | 196 | .depend: scripts/mkdep include/config.h |
197 | rm -f .depend .hdepend; | 197 | rm -f .depend .hdepend; |
198 | mkdir -p include/config; | 198 | mkdir -p include/config; |
199 | scripts/mkdep -I include -- \ | 199 | scripts/mkdep -I include -- \ |
@@ -201,7 +201,7 @@ scripts/split-include: $(top_srcdir)/scripts/split-include.c | |||
201 | scripts/mkdep -I include -- \ | 201 | scripts/mkdep -I include -- \ |
202 | `find $(top_srcdir) -name \*.h -print | sed -e "s,^./,,"` >> .hdepend; | 202 | `find $(top_srcdir) -name \*.h -print | sed -e "s,^./,,"` >> .hdepend; |
203 | 203 | ||
204 | depend dep: include/config.h .depend | 204 | depend dep: .depend |
205 | 205 | ||
206 | include/config/MARKER: depend scripts/split-include | 206 | include/config/MARKER: depend scripts/split-include |
207 | scripts/split-include include/config.h include/config | 207 | scripts/split-include include/config.h include/config |