diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-01-24 16:19:25 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-01-24 16:27:07 +0200 |
commit | ea7ed84b499b953dd5407e49feeb4edb040932d6 (patch) | |
tree | 2d2db7ec59b68e5d6ba54a762683c2844e7ef391 /Makefile.in | |
parent | c88741679524d31c3cc70a281ebfcf5d41e07eac (diff) |
Show more commands before executing them
I understand that for commands repeated hundreds of times deeper down
in the build it is a good idea to make them silent in makefiles, to
reduce the amount of output. But here commands are executed just once
when running make here, no need to hide them. (Except echo commands,
they should be hidden.)
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/Makefile.in b/Makefile.in index 89da7c5177b6..9a854eaed733 100644 --- a/Makefile.in +++ b/Makefile.in @@ -3,39 +3,39 @@ SHELL=/usr/bin/env bash all: Makefile dmake/dmake@EXEEXT@ src.downloaded - @. ./*[Ee]nv.[Ss]et.sh && \ + . ./*[Ee]nv.[Ss]et.sh && \ cd instsetoo_native && \ build.pl -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ install: - @. ./*[Ee]nv.[Ss]et.sh && \ - echo "Installing in $${prefix:-@prefix@}..." && \ - ooinstall "$${prefix:-@prefix@}" && \ - echo "" && \ + @echo "Installing in $${prefix:-/usr/local}..." + . ./*[Ee]nv.[Ss]et.sh && \ + ooinstall "$${prefix:-@prefix@}" + @echo && \ echo "Installation finished, you can now execute:" && \ echo "$${prefix:-@prefix@}/program/soffice" dev-install: - @. ./*[Ee]nv.[Ss]et.sh && \ - ooinstall -l @abs_builddir@/install && \ - echo "" && \ + . ./*[Ee]nv.[Ss]et.sh && \ + ooinstall -l @abs_builddir@/install + @echo && \ echo "Developer installation finished, you can now execute:" && \ echo "@abs_builddir@/install/program/soffice" distclean: dmake/dmake@EXEEXT@ - @. ./*[Ee]nv.[Ss]et.sh && \ + . ./*[Ee]nv.[Ss]et.sh && \ dmake distclean clean: dmake/dmake@EXEEXT@ - @. ./*[Ee]nv.[Ss]et.sh && \ + . ./*[Ee]nv.[Ss]et.sh && \ dmake clean dmake/dmake@EXEEXT@: - @. ./*[Ee]nv.[Ss]et.sh && \ + . ./*[Ee]nv.[Ss]et.sh && \ ./bootstrap src.downloaded: ooo.lst download - @. ./*[Ee]nv.[Ss]et.sh && \ + . ./*[Ee]nv.[Ss]et.sh && \ $$SRC_ROOT/download $$SRC_ROOT/ooo.lst && touch $@ fetch: src.downloaded @@ -44,19 +44,19 @@ Makefile: configure.in set_soenv.in Makefile.in ./autogen.sh check: Makefile dmake/dmake@EXEEXT@ fetch - @. ./*[Ee]nv.[Ss]et.sh && \ + . ./*[Ee]nv.[Ss]et.sh && \ cd smoketestoo_native && \ export SAL_USE_VCLPLUGIN="svp" && \ build.pl -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ id: - @. ./*[Ee]nv.[Ss]et.sh && \ + . ./*[Ee]nv.[Ss]et.sh && \ create-ids tags: - @. ./*[Ee]nv.[Ss]et.sh && \ + . ./*[Ee]nv.[Ss]et.sh && \ create-tags docs: - @. ./*[Ee]nv.[Ss]et.sh && \ + . ./*[Ee]nv.[Ss]et.sh && \ mkdocs.sh $$SRC_ROOT/docs $$SOLARENV/inc/doxygen.cfg |