diff options
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 -- \ |