diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-06-11 20:40:38 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-06-11 20:40:38 +0000 |
commit | b35770100ea8ecccc89d94ba8de6b0086456a1be (patch) | |
tree | 0ca523ae9df9ab1c196f273cfb0c3fbc519ac8c7 /Makefile.in | |
parent | bfb7f715f23da16cac476e1cc236bee929e2d0a9 (diff) | |
download | crosstool-ng-b35770100ea8ecccc89d94ba8de6b0086456a1be.tar.gz crosstool-ng-b35770100ea8ecccc89d94ba8de6b0086456a1be.tar.bz2 crosstool-ng-b35770100ea8ecccc89d94ba8de6b0086456a1be.zip |
Print a little bit of progress in ./configure (computing the version string can be long, especially on networked file systems).
/trunk/configure | 6 6 0 0 ++++++
/trunk/Makefile.in | 14 8 6 0 ++++++++------
2 files changed, 14 insertions(+), 6 deletions(-)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/Makefile.in b/Makefile.in index 6e0a097f..c880e0fe 100644 --- a/Makefile.in +++ b/Makefile.in @@ -89,13 +89,15 @@ install-local-test: false; \ fi -install-bin: install-local-test $(BINDIR) +install-%: install-local-test + +install-bin: $(BINDIR) @echo " INST ct-ng" @install -m 755 ct-ng $(BINDIR)/ct-ng -install-lib: install-local-test $(LIBDIR) install-lib-main install-lib-samples +install-lib: uninstall-lib $(LIBDIR) install-lib-main install-lib-samples -install-lib-main: install-local-test $(LIBDIR) +install-lib-main: $(LIBDIR) @for src_dir in arch config kconfig patches scripts tools; do \ echo " INST $${src_dir}/"; \ tar cf - --exclude=.svn $${src_dir} |(cd $(LIBDIR); tar xf -); \ @@ -106,20 +108,20 @@ install-lib-main: install-local-test $(LIBDIR) # Samples need a little love: # - change every occurrence of CT_TOP_DIR to CT_LIB_DIR -install-lib-samples: install-local-test $(LIBDIR) install-lib-main +install-lib-samples: $(LIBDIR) install-lib-main @echo " INST samples/" @tar cf - --exclude=.svn samples |(cd $(LIBDIR); tar xf -) @for samp_file in $(LIBDIR)/samples/*/crosstool.config; do \ sed -r -i -e 's,\$$\{CT_TOP_DIR\},\$$\{CT_LIB_DIR\},g;' $${samp_file}; \ done -install-doc: install-local-test $(DOCDIR) +install-doc: $(DOCDIR) @for doc_file in docs/CREDITS docs/overview.txt; do \ echo " INST $${doc_file}"; \ install -m 644 "$${doc_file}" $(DOCDIR); \ done -install-man: install-local-test $(MANDIR) +install-man: $(MANDIR) @echo " INST ct-ng.1.gz" @install -m 644 docs/ct-ng.1.gz $(MANDIR) |