blob: eb67773a314133756010899a5c10a1879f5b9fa7 (
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"
|