diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-11-10 13:08:02 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-11-10 13:08:02 +0000 |
commit | 45784febaf5e5f635bedb831b9609655ce33b525 (patch) | |
tree | a0ebf9d7cb4978c38ba542a9a49c069992719278 /Makefile | |
parent | dba4e6f0468ee3ec9cd3825404e85eeba3795c24 (diff) | |
download | busybox-w32-45784febaf5e5f635bedb831b9609655ce33b525.tar.gz busybox-w32-45784febaf5e5f635bedb831b9609655ce33b525.tar.bz2 busybox-w32-45784febaf5e5f635bedb831b9609655ce33b525.zip |
Some more minor build cleanups
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -212,7 +212,7 @@ bbsubdirs: $(patsubst %, _dir_%, $(SUBDIRS)) | |||
212 | $(patsubst %, _dir_%, $(SUBDIRS)) : dummy include/config/MARKER | 212 | $(patsubst %, _dir_%, $(SUBDIRS)) : dummy include/config/MARKER |
213 | $(MAKE) CFLAGS="$(CFLAGS)" -C $(patsubst _dir_%, %, $@) | 213 | $(MAKE) CFLAGS="$(CFLAGS)" -C $(patsubst _dir_%, %, $@) |
214 | 214 | ||
215 | busybox: config.h depend bbsubdirs | 215 | busybox: config.h dep-files bbsubdirs |
216 | $(CC) $(LDFLAGS) -o $@ applets/busybox.o $(shell find $(SUBDIRS) -name \*.a) $(LIBCONFIG_LIB) $(LIBRARIES) | 216 | $(CC) $(LDFLAGS) -o $@ applets/busybox.o $(shell find $(SUBDIRS) -name \*.a) $(LIBCONFIG_LIB) $(LIBRARIES) |
217 | $(STRIPCMD) | 217 | $(STRIPCMD) |
218 | 218 | ||
@@ -295,7 +295,7 @@ scripts/split-include: scripts/split-include.c | |||
295 | $(HOSTCC) $(HOSTCFLAGS) -o scripts/split-include scripts/split-include.c | 295 | $(HOSTCC) $(HOSTCFLAGS) -o scripts/split-include scripts/split-include.c |
296 | 296 | ||
297 | dep-files: scripts/mkdep | 297 | dep-files: scripts/mkdep |
298 | if [ ! -f .depend ] ; then \ | 298 | @if [ ! -f .depend ] ; then \ |
299 | rm -f .depend .hdepend; \ | 299 | rm -f .depend .hdepend; \ |
300 | mkdir -p $(TOPDIR)/include/config; \ | 300 | mkdir -p $(TOPDIR)/include/config; \ |
301 | scripts/mkdep -I $(TOPDIR)/include -- \ | 301 | scripts/mkdep -I $(TOPDIR)/include -- \ |