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) |
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)) $(patsubst %, _dir_%, $(SUBDIRS)) : dummy include/config/MARKER $(MAKE) CFLAGS="$(CFLAGS)" -C $(patsubst _dir_%, %, $@) -busybox: config.h depend bbsubdirs +busybox: config.h dep-files bbsubdirs $(CC) $(LDFLAGS) -o $@ applets/busybox.o $(shell find $(SUBDIRS) -name \*.a) $(LIBCONFIG_LIB) $(LIBRARIES) $(STRIPCMD) @@ -295,7 +295,7 @@ scripts/split-include: scripts/split-include.c $(HOSTCC) $(HOSTCFLAGS) -o scripts/split-include scripts/split-include.c dep-files: scripts/mkdep - if [ ! -f .depend ] ; then \ + @if [ ! -f .depend ] ; then \ rm -f .depend .hdepend; \ mkdir -p $(TOPDIR)/include/config; \ scripts/mkdep -I $(TOPDIR)/include -- \ |