36372364ab
The list of modules built in the cross-build-toolset target, many with --all, is getting a bit unwieldy. Should do this in a cleaner way, with a for loop, and avoiding multiple invokations of build.pl --all, instead just figure oiut a clever way to get the definite list of individual modules needed, in the correct order.
112 lines
3.6 KiB
Makefile
112 lines
3.6 KiB
Makefile
# @configure_input@
|
|
|
|
SHELL=/usr/bin/env bash
|
|
|
|
ifeq ($(USE_GMAKE),)
|
|
GBUILD_OPT:=
|
|
else
|
|
GBUILD_OPT:=--gmake
|
|
endif
|
|
|
|
ifeq (@CROSS_COMPILING@,YES)
|
|
all: Makefile dmake/dmake@EXEEXT_FOR_BUILD@ src.downloaded cross-build-toolset
|
|
else
|
|
all: Makefile dmake/dmake@EXEEXT_FOR_BUILD@ src.downloaded
|
|
endif
|
|
@. ./*Env.Set.sh && \
|
|
cd instsetoo_native && \
|
|
build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@
|
|
|
|
ifeq (@CROSS_COMPILING@,YES)
|
|
cross-build-toolset:
|
|
. ./Env.Build.sh && \
|
|
(cd autodoc && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd idlc && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd icu && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@) && \
|
|
(cd udkapi && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd i18npool && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd unodevtools && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd offapi && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd oovbaapi && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd codemaker && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd ridljar && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd glib && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd gettext && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@ && deliver.pl) && \
|
|
(cd dictionaries && build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ -- -P@BUILD_MAX_JOBS@)
|
|
endif
|
|
|
|
install:
|
|
@. ./*Env.Set.sh && \
|
|
echo "Installing in $${prefix:-@prefix@}..." && \
|
|
ooinstall "$${prefix:-@prefix@}" && \
|
|
echo "" && \
|
|
echo "Installation finished, you can now execute:" && \
|
|
echo "$${prefix:-@prefix@}/program/soffice"
|
|
|
|
dev-install:
|
|
@. ./*Env.Set.sh && \
|
|
cd smoketestoo_native && \
|
|
export SAL_USE_VCLPLUGIN="svp" && \
|
|
build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ && \
|
|
cd @abs_builddir@ && ln -s $$SOLARVER/$$INPATH/installation/opt/ install && \
|
|
echo "" && \
|
|
echo "Developer installation finished, you can now execute:"
|
|
@if test `uname -s` = Darwin; then \
|
|
echo open install/LibreOffice.app; \
|
|
else \
|
|
echo "cd @abs_builddir@/install/program" && \
|
|
echo ". ooenv" && \
|
|
echo "./soffice.bin"; \
|
|
fi
|
|
|
|
distclean:
|
|
-rm config.cache
|
|
-rm config.log
|
|
ifeq (@BUILD_DMAKE@,YES)
|
|
-$(GNUMAKE) -C dmake distclean
|
|
endif
|
|
|
|
clean:
|
|
. ./*Env.Set.sh && \
|
|
rm -rf */$$INPATH && \
|
|
rm -rf solver/*/$$INPATH && \
|
|
rm -rf install && \
|
|
$$GNUMAKE -C dmake clean && \
|
|
rm -f solenv/*/bin/dmake* && \
|
|
$$GNUMAKE -f GNUmakefile.mk -sr clean
|
|
ifeq (@CROSS_COMPILING@,YES)
|
|
. ./*Env.Set.sh && \
|
|
rm -rf */$$INPATH_FOR_BUILD && \
|
|
rm -rf solver/*/$$INPATH_FOR_BUILD
|
|
endif
|
|
|
|
dmake/dmake@EXEEXT_FOR_BUILD@:
|
|
./bootstrap
|
|
|
|
src.downloaded: ooo.lst download
|
|
@. ./*Env.Set.sh && \
|
|
$$SRC_ROOT/download $$SRC_ROOT/ooo.lst && touch $@
|
|
|
|
fetch: src.downloaded
|
|
|
|
Makefile: configure.in set_soenv.in Makefile.in
|
|
./autogen.sh
|
|
|
|
check: Makefile dmake/dmake@EXEEXT_FOR_BUILD@ fetch
|
|
@. ./*Env.Set.sh && \
|
|
cd smoketestoo_native && \
|
|
export SAL_USE_VCLPLUGIN="svp" && \
|
|
build.pl $(GBUILD_OPT) -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@
|
|
@. ./*Env.Set.sh && $$SOLARENV/bin/subsequenttests
|
|
|
|
id:
|
|
@. ./*Env.Set.sh && \
|
|
create-ids
|
|
|
|
tags:
|
|
@. ./*Env.Set.sh && \
|
|
create-tags
|
|
|
|
docs:
|
|
@. ./*Env.Set.sh && \
|
|
mkdocs.sh $$SRC_ROOT/docs $$SOLARENV/inc/doxygen.cfg
|