diff options
author | Sebastian Spaeth <Sebastian@SSpaeth.de> | 2010-11-11 08:42:52 +0100 |
---|---|---|
committer | Sebastian Spaeth <Sebastian@SSpaeth.de> | 2010-11-11 08:42:52 +0100 |
commit | b1b799d8cf7d9527f57158c1cdeb0b178864c40c (patch) | |
tree | ff9b5cedf701f6aa63d55693b05c73cdaa3662a9 /Makefile.in | |
parent | a3a1705c5718a10e28c82eb30f128db6d981d43b (diff) |
Makefile.in: set dev-install target during ./configuration
Rather than relying on the sourced environment variables, create
Makefile with the correct dev-install target folder during the
./configure run. Slightly prettified the file.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in index f14fbd453793..eb67773a3141 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,23 +1,25 @@ -# just dumb wrapper; make install comes later +# @configure_input@ +# FIXME: create 'install' and 'check' target SHELL=/bin/sh all: @. ./*[Ee]nv.[Ss]et.sh && \ - ./bootstrap && \ - cd instsetoo_native && ../solenv/bin/build.pl -P@BUILD_NCPUS@ --all -P@BUILD_MAX_JOBS@ + ./bootstrap && \ + cd instsetoo_native && \ + ../solenv/bin/build.pl -P@BUILD_NCPUS@ --all -P@BUILD_MAX_JOBS@ distclean: @. ./*[Ee]nv.[Ss]et.sh && \ - dmake distclean + dmake distclean clean: @. ./*[Ee]nv.[Ss]et.sh && \ - dmake clean + dmake clean dev-install: @. ./*[Ee]nv.[Ss]et.sh && \ - ooinstall -l $$SRC_ROOT/install && \ - echo && \ - echo "Developer installation finished, you can find it here:" && \ - echo "$$SRC_ROOT/install" + ooinstall -l @abs_builddir@/install && \ + echo "" && \ + echo "Developer installation finished, you can now execute:" && \ + echo "@abs_builddir@/install/program/soffice" |