diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2011-11-25 15:14:09 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2011-11-25 15:14:33 +0100 |
commit | bb149de2b4d3458c0db1958edbbb75e79a8a53c4 (patch) | |
tree | 0517ac52f197216c8c26d86d8e0963d596367091 /Makefile.in | |
parent | a65b46b71d0f95119b343f4e931a318703889b08 (diff) |
some hints cleanup
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 9f58d3339e05..443305b1441a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -46,13 +46,18 @@ dev-install: build printf \ '\nDeveloper installation finished, you can now execute:\n\n' \ && \ - if test `uname -s` = Darwin; then \ + if test `uname -s` = Linux; then \ + printf 'make debugrun\n'; \ + elif test `uname -s` = Darwin; then \ printf 'open %s/install/LibreOffice.app\n' "@abs_builddir@"; \ else \ printf 'cd %s/install/program\n. ./ooenv\n./soffice.bin\n' \ "@abs_builddir@"; \ fi +debugrun : dev-install + @. ./Env.Host.sh && $$GNUMAKE -f "$$SRC_ROOT"/GNUmakefile.mk debugrun + check : allcheck @true |