# @configure_input@ SHELL=/usr/bin/env bash ifeq (@CROSS_COMPILING@,YES) CROSS_TOOLSET_RULE:=cross-build-toolset else CROSS_TOOLSET_RULE:= endif ifeq ($(filter all check unitcheck,$(MAKECMDGOALS)),) gb_MAKETARGET=build else # fail early gb_MAKETARGET=all endif .PHONY : build dev-install all cross-build-toolset install distro-pack-install clean distclean findunusedcode all: build unitcheck @echo @echo "LibreOffice build succesfully finished :-)" @echo ifeq (@CROSS_COMPILING@,YES) @echo "Please consult README.cross how to install it." else @echo "To install, issue: @GNUMAKE@ install" @echo "Developers might prefer this way: @GNUMAKE@ dev-install -o build" @echo "To run smoketest, issue: @GNUMAKE@ check" endif @echo build: Makefile dmake/dmake@EXEEXT_FOR_BUILD@ src.downloaded $(CROSS_TOOLSET_RULE) @. ./Env.Host.sh && \ cd instsetoo_native && \ gb_MAKETARGET=$(gb_MAKETARGET) build.pl -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ dev-install: build @. ./Env.Host.sh && \ cd smoketestoo_native && \ build.pl -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && \ rm -f "@abs_builddir@"/install && \ ln -s "$$SOLARVER/$$INPATH"/installation/opt/ \ "@abs_builddir@"/install && \ printf '\n' && \ printf \ '\nDeveloper installation finished, you can now execute:\n\n' \ && \ if 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 check : allcheck @true %check: @. ./Env.Host.sh && $$GNUMAKE -f "$$SRC_ROOT"/GNUmakefile.mk -r \ $(if @VERBOSE@,,-s) --jobs="$(if \ $(CHECK_PARALLELISM),$(CHECK_PARALLELISM),@GMAKE_PARALLELISM@)" \ $(patsubst allcheck,check,$@) cross-build-toolset: @. ./Env.Build.sh && \ cd cross_toolset && \ build.pl -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ install: build @. ./Env.Host.sh && \ echo "Installing in @INSTALLDIR@..." && \ ooinstall "@INSTALLDIR@" && \ echo "" && \ echo "Installation finished, you can now execute:" && \ echo "@INSTALLDIR@/program/soffice" distro-pack-install: install ./bin/distro-install-clean-up ./bin/distro-install-desktop-integration ./bin/distro-install-sdk ./bin/distro-install-file-lists distclean: clean ifeq (@BUILD_DMAKE@,YES) -test -f dmake/Makefile && $(MAKE) -C dmake distclean endif rm -rf Env.Host.sh Makefile aclocal.m4 autogen.lastrun autom4te.cache \ bin/repo-list bootstrap config.log config.status configure \ desktop/scripts/soffice.sh ooo.lst post_download post_download.log \ set_soenv set_soenv.last set_soenv.stamp src.downloaded warn clean: . ./Env.Host.sh && \ rm -rf */$$INPATH && \ rm -rf solver/$$INPATH && \ rm -rf workdir && \ rm -rf install ifeq (@BUILD_DMAKE@,YES) . ./Env.Host.sh && \ (if [ -f dmake/Makefile ] ; then $$GNUMAKE -C dmake clean; fi) && \ rm -f solenv/*/bin/dmake* endif ifeq (@CROSS_COMPILING@,YES) . ./Env.Host.sh && \ rm -rf */$$INPATH_FOR_BUILD && \ rm -rf solver/$$INPATH_FOR_BUILD endif dmake/dmake@EXEEXT_FOR_BUILD@: ./bootstrap src.downloaded: ooo.lst download ifeq (@DO_FETCH_TARBALLS@,YES) @. ./Env.Host.sh && \ $$SRC_ROOT/download $$SRC_ROOT/ooo.lst && touch $@ else @echo "Automatic fetching of external tarballs is disabled." endif fetch: src.downloaded Makefile: autogen.lastrun configure.in ooo.lst.in set_soenv.in Makefile.in ./autogen.sh id: @. ./Env.Host.sh && \ create-ids tags: @. ./Env.Host.sh && \ create-tags docs: @. ./Env.Host.sh && \ mkdocs.sh $$SRC_ROOT/docs $$SOLARENV/inc/doxygen.cfg findunusedcode: # experimental callcatcher target # http://www.skynet.ie/~caolan/Packages/callcatcher.html @which callcatcher > /dev/null 2>&1 || \ (echo "callcatcher not installed" && false) @. ./Env.Host.sh && \ mkdir -p $$SRC_ROOT/solenv/callcatcher/bin && \ ln -sf $$SRC_ROOT/solenv/$$INPATH/bin/dmake \ $$SRC_ROOT/solenv/callcatcher/bin/dmake && \ source <(sed -e s,$$INPATH,callcatcher,g ./Env.Host.sh) && \ . ./solenv/bin/callcatchEnv.Set.sh && \ cd instsetoo_native && \ build.pl -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ @. ./Env.Host.sh && \ source <(sed -e s,$$INPATH,callcatcher,g ./Env.Host.sh) && \ callanalyse \ $$WORKDIR/LinkTarget/*/* \ */$$OUTPATH/bin/* \ */$$OUTPATH/lib/* > unusedcode.all #because non-c++ symbols could be dlsymed lets make a list of class level #unused methods which don't require much effort to determine if they need #to be just removed, or put behind appropiate platform or debug level ifdefs @grep ::.*\( unusedcode.all | grep -v ^cppu:: > unusedcode.easy #as long as we are not completely gbuildified we need to explicitly depend on the build/install unitcheck: build subsequentcheck: dev-install allcheck : dev-install e='distro/collabora/lov-6.4'>distro/collabora/lov-6.4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/filter
AgeCommit message (Expand)Author
2013-03-07Resolves: #i119513# fix loading of CMYK JPEG in PPT importHerbert Dürr
2013-03-07Renamed the method to something more appropriate...Kohei Yoshida
2013-03-07Make check passes. Remove deep-only detection for real.Kohei Yoshida
2013-03-07Temporarily disable deep-only detection phase.Kohei Yoshida
2013-03-07Some cleanup, comments, and re-organizing...Kohei Yoshida
2013-03-07fdo#60562: List *all* format types that we support and rank them all properly.Kohei Yoshida
2013-03-07Test all file format types regardless of document services.Kohei Yoshida
2013-03-07A little boolean cleanups etc.Kohei Yoshida
2013-03-07Modernize the type detection service instantiation a bit.Kohei Yoshida
2013-03-06fdo#60148 Clean up warnings from the Clang compiler pluginnccuong
2013-03-06fdo#60724 change spelling error REMOVEABLE -> REMOVABLEKenneth Beck
2013-03-04remove trailing whitespacesThomas Arnhold
2013-03-04sal_Bool to boolTakeshi Abe
2013-03-04remove unused and commented out codeThomas Arnhold
2013-03-03remove stale javafiltersAndras Timar
2013-03-03Related to fdo#60724: correct spellingThomas Arnhold
2013-03-03loplugin: improve indentationThomas Arnhold
2013-03-03protocol shttp is not defined yetThomas Arnhold
2013-03-03make sure the outdir exists before it is usedDavid Tardon
2013-03-03move fltcall.hxx to vcl to avoid circ. dep.David Tardon
2013-03-02coverity#982991: fix memory leakMarkus Mohrhard
2013-03-02Typo fix: informations -> information and a few other adjacent typos.Gregg King
2013-02-28remove all d.lstMichael Stahl
2013-02-26msfilter: support checking if conversion to legacy encoding is lossless or notMiklos Vajna
2013-02-26fdo#60724: lintian typo fix: useful -> usefulGregg King
2013-02-25loplugin: improve indentationThomas Arnhold
2013-02-25loplugin: unused variablesThomas Arnhold
2013-02-23Fix typo (beacuse/becasue)/becauseJulien Nabet
2013-02-23Fix typo recieved/receivedJulien Nabet
2013-02-23Fix typo seperated/separatedJulien Nabet
2013-02-23sal: update log areasThomas Arnhold
2013-02-22WaE: ´nLen´ may be used uninitialized in this functionTor Lillqvist
2013-02-22String cleanup in filterRicardo Montania
2013-02-22[Uu]sefull -> [Uu]sefulJulien Nabet
2013-02-22s/heigth/height/Tor Lillqvist
2013-02-22s/the the/the/Tor Lillqvist
2013-02-21change lib:widget delimiter from : to -Caolán McNamara