diff options
author | Rob Landley | 2005-08-13 01:10:27 +0000 |
---|---|---|
committer | Rob Landley | 2005-08-13 01:10:27 +0000 |
commit | be3dae145f71b583f2c975d8dcdc10d9dad2268a (patch) | |
tree | 4bcd50be61a1945e41eabd59d645d398fc038522 /busybox/Makefile | |
parent | 6022fc8723c4bfaf055011db33f69565fa0c82b1 (diff) | |
download | busybox-be3dae145f71b583f2c975d8dcdc10d9dad2268a.zip busybox-be3dae145f71b583f2c975d8dcdc10d9dad2268a.tar.gz |
Makefile related backports:
10945, 10946 Make compile much, much faster.
10923 big makefile change. Nervous.
10946, 10991, 10998, 11003 small makefile fixes.
Diffstat (limited to 'busybox/Makefile')
-rw-r--r-- | busybox/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/busybox/Makefile b/busybox/Makefile index 81c59a0..048194d 100644 --- a/busybox/Makefile +++ b/busybox/Makefile @@ -34,7 +34,7 @@ ifndef top_builddir top_builddir=$(CURDIR) endif -srctree=$(top_srcdir) +export srctree=$(top_srcdir) vpath %/Config.in $(srctree) include $(top_builddir)/Rules.mak @@ -164,9 +164,9 @@ docs/busybox.pod : $(top_srcdir)/docs/busybox_header.pod $(top_srcdir)/include/u cat $(top_srcdir)/docs/busybox_footer.pod ) > docs/busybox.pod docs/BusyBox.txt: docs/busybox.pod - @echo - @echo BusyBox Documentation - @echo + $(SECHO) + $(SECHO) BusyBox Documentation + $(SECHO) -mkdir -p docs -pod2text $< > $@ @@ -214,9 +214,9 @@ include/config.h: .config @$(top_builddir)/scripts/config/conf -o $(CONFIG_CONFIG_IN) finished2: - @echo - @echo Finished installing... - @echo + $(SECHO) + $(SECHO) Finished installing... + $(SECHO) else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y) |