# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- # # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # $(eval $(call gb_Package_Package,desktop_smath_sh,$(SRCDIR)/desktop/scripts)) $(eval $(call gb_Package_add_file,desktop_smath_sh,$(LIBO_BIN_FOLDER)/smath,smath.sh)) # vim: set ts=4 sw=4 noet: >index : lo/core
LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/Makefile.in
AgeCommit message (Collapse)Author
2015-03-26add Makefile deps and cleanup for config_host_lang.mk*David Tardon
Change-Id: I7fabd28ccdf66a4fa96838aafadbe6ceee8d9ee3
2015-03-08autogen.sh: better error message when src_path contains spacesMiklos Vajna
Change-Id: I921ffaf2ee4be73ecfffca8bc36cfae484b70a32
2015-02-23android: install gdb printersMiklos Vajna
Commit f44f94b95b435ee0ec71c73133daeb88cd2539b1 (fix gdb pretty printers for --enable-mergelibs, 2013-09-10) doesn't really say why this was wanted, probably just to be on the safe side. Enabling them allows at least manually loading them. Change-Id: I22eeca67e4077e06efba8b3edfd6eb84159b9c47
2015-01-07Gallery missing from gbuild_TARGETSStephan Bergmann
Change-Id: I9f44b64f1bc6d608f80666e46cc313ac0c123475
2014-11-24Makefile: provide a hint when "make iwyudummy" failsMichael Stahl
Change-Id: I5d37478e1dfdd9bf96ceb302fe51fc5c2b4ed838
2014-11-24improvements to iwyudummy targetNoel Grandin
- split awk script into separate file - make awk work on older awk version - create new target in main Makefile.in to generate iwyudummy Makefile so we don't have to manually uncomment stuff - exclude /usr includes from the generated makefile - disable unused macros warnings to reduce noise - add some sanity checking - prevent using the generated makefile with compiler-plugins enabled - add new target for generating iwyu Makefile so we don't need to edit the Makefile when using it Change-Id: I4af8eb7d1aa5419e546acb9ef905a0fe623db57d Reviewed-on: https://gerrit.libreoffice.org/12980 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2014-11-21Call all executables in solenv/bin/ with full pathStephan Bergmann
Change-Id: Ib8db64b9d8ff131b5b7cadea434681a825c967e7
2014-11-20Call install-gdb-printers with full pathStephan Bergmann
Change-Id: I92b34e61edb641d29d1cbf344e7ae5823c912cbc
2014-11-18Makefile: set CC as well for include-what-you-useMichael Stahl
Change-Id: I28c8f134825e477ffe993a6895b801c9e895f613
2014-11-17add a script to generate a dummy library to "build" all headersMichael Stahl
... to be used together --with-iwyu to track down bloat in headers, which are not always named in the convention that include-what-you-use expects for reporting issues. Change-Id: Idffda7d49cca43170717004d52779b4663de19ae
2014-11-11add 'make etags' to generate etagsTakeshi Abe
Change-Id: Id87f71b6d31720173f0c5ec2a4fc395065223b79 Reviewed-on: https://gerrit.libreoffice.org/12300 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-11-05Add build support for iwyuRiccardo Magliocchetti
include-what-you-use is a tool to help removing unneeded includes. Homepage: https://code.google.com/p/include-what-you-use/ So to use it pass its path to configure like: ./configure --with-iwyu=/usr/bin/include-what-you-use May be helpful for fdo#42949 Change-Id: Idc185c5181d754b9dfd82fcf6a5ad05953b3cd03 Reviewed-on: https://gerrit.libreoffice.org/12255 Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Tested-by: Michael Meeks <michael.meeks@collabora.com>
2014-10-10android: Re-autogen when AndroidManifest.xml.in changes.Jan Holesovsky
Change-Id: I53cf6bf10f25702d9ae42afb6846411a3e31c187
2014-10-07Proper AC_CONFIG_FILE treatmentStephan Bergmann
Change-Id: Ic029d0d174a00af783fd276852231523aae59866
2014-10-03gbuild-to-ide: Add support for vs2013David Ostrovsky
Change-Id: I385e756109ab0a47feeeb4407ba4a2a4b68548dd Reviewed-on: https://gerrit.libreoffice.org/11728 Reviewed-by: Peter Foley <pefoley2@verizon.net> Tested-by: Peter Foley <pefoley2@verizon.net>
2014-09-17The URE unorc is now set up in instsetoo_native/CustomTarget_setup.mkTor Lillqvist
So no need to expand it at configure time in ure/source/unorc, and no need to handle the related builddir!=srcdir complications. Change-Id: Ifa34d25fab9ad2da13ed039bf6c5921b0fb58703
2014-09-16Missing rm of generated file in distcleanStephan Bergmann
Change-Id: I463bd51ad054b66c247f4d5ad778d15f476c6520
2014-09-12TypoTor Lillqvist
2014-09-09Surely by now nobody has a 'solver' folder or an 'install' symlink any moreTor Lillqvist
Change-Id: I814311cc0b3e78774f25cac06e48dbdc1cb82c69
2014-09-09Fix help and showmodules build targetsPeter Foley
Change-Id: I096798159f4d3d59306be1b3843de1daca280f7a Reviewed-on: https://gerrit.libreoffice.org/11342 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
2014-09-05gbuild: Framework for performance unit tests using callgrindMatúš Kukan
Run them with "make perfcheck" (toplevel or in a module) To add a new performance test: - Add it as a perfcheck target - Use gb_CppunitTest_set_performance_test - Use CALLGRIND_ macros from valgrind/callgrind.h http://valgrind.org/docs/manual/cl-manual.html#cl-manual.clientrequests Change-Id: I67c776dbe4db0a686607efeee7a7e4f3aeae0e5c