blob: 8b28749113ebafe3a2de2902dba8d06cf7712b0f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# @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@
distclean:
@. ./*[Ee]nv.[Ss]et.sh && \
dmake distclean
clean:
@. ./*[Ee]nv.[Ss]et.sh && \
dmake clean
dev-install:
@. ./*[Ee]nv.[Ss]et.sh && \
ooinstall -l @abs_builddir@/install && \
echo "" && \
echo "Developer installation finished, you can now execute:" && \
echo "@abs_builddir@/install/program/soffice"
|