blob: 313f1e6d63a5cdbbde68df0c2f02fca2bd1be031 (
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
|
# just dumb wrapper; make install comes later
SHELL=/bin/sh
all:
. ./*Env.Set.sh && \
./bootstrap && \
cd instsetoo_native && ../solenv/bin/build.pl -P@BUILD_NCPUS@ --all -P@BUILD_MAX_JOBS@
distclean:
. ./*Env.Set.sh && \
dmake distclean
clean:
. ./*Env.Set.sh && \
dmake clean
dev-install:
. ./*Env.Set.sh && \
cd $$SRC_ROOT/instsetoo_native/util && \
LOCALINSTALLDIR=$$SRC_ROOT/install dmake openoffice_en-US PKGFORMAT=installed && \
$$SOLARENV/bin/linkoo $$SRC_ROOT/install/OpenOffice/installed/install/en-US $$SRC_ROOT && \
echo && \
echo "Developer installation finished, you can find it here:" && \
echo "$$SRC_ROOT/install/OpenOffice/installed/install/en-US"
|