xref: /AOO41X/main/instsetoo_native/util/makefile.mk (revision d575d58faf6a1c4e48dda7b480be8cda57b8c8e5)
17871dc3eSAndrew Rist#**************************************************************
2cdf0e10cSrcweir#
37871dc3eSAndrew Rist#  Licensed to the Apache Software Foundation (ASF) under one
47871dc3eSAndrew Rist#  or more contributor license agreements.  See the NOTICE file
57871dc3eSAndrew Rist#  distributed with this work for additional information
67871dc3eSAndrew Rist#  regarding copyright ownership.  The ASF licenses this file
77871dc3eSAndrew Rist#  to you under the Apache License, Version 2.0 (the
87871dc3eSAndrew Rist#  "License"); you may not use this file except in compliance
97871dc3eSAndrew Rist#  with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir#
117871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir#
137871dc3eSAndrew Rist#  Unless required by applicable law or agreed to in writing,
147871dc3eSAndrew Rist#  software distributed under the License is distributed on an
157871dc3eSAndrew Rist#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
167871dc3eSAndrew Rist#  KIND, either express or implied.  See the License for the
177871dc3eSAndrew Rist#  specific language governing permissions and limitations
187871dc3eSAndrew Rist#  under the License.
19cdf0e10cSrcweir#
207871dc3eSAndrew Rist#**************************************************************
217871dc3eSAndrew Rist
22cdf0e10cSrcweirPRJ=..
23cdf0e10cSrcweirPRJNAME=instsetoo_native
24cdf0e10cSrcweirTARGET=util
25cdf0e10cSrcweir
26cdf0e10cSrcweir.INCLUDE:  settings.mk
27cdf0e10cSrcweir.INCLUDE: $(SOLARINCDIR)$/rtlbootstrap.mk
28cdf0e10cSrcweir
29cdf0e10cSrcweir# watch for the path delimiter
30cdf0e10cSrcweir.IF "$(GUI)"=="WNT"
31cdf0e10cSrcweirPYTHONPATH:=$(PWD)$/$(BIN);$(SOLARLIBDIR);$(SOLARLIBDIR)$/python;$(SOLARLIBDIR)$/python$/lib-dynload
32cdf0e10cSrcweir.ELSE           # "$(GUI)"=="WNT"
33cdf0e10cSrcweirPYTHONPATH:=$(PWD)$/$(BIN):$(SOLARLIBDIR):$(SOLARLIBDIR)$/python:$(SOLARLIBDIR)$/python$/lib-dynload
34cdf0e10cSrcweir.ENDIF          # "$(GUI)"=="WNT"
35cdf0e10cSrcweir.EXPORT: PYTHONPATH
36cdf0e10cSrcweir
37cdf0e10cSrcweir.IF "$(CWS_WORK_STAMP)"=="" || "$(UPDATER)"!=""
38cdf0e10cSrcweirENABLE_DOWNLOADSETS*=TRUE
39cdf0e10cSrcweir.ENDIF          # "$(CWS_WORK_STAMP)"=="" || "$(UPDATER)"!=""
40cdf0e10cSrcweir.IF "$(FORCE_DOWNLOADSETS)"!=""
41cdf0e10cSrcweirENABLE_DOWNLOADSETS=TRUE
42cdf0e10cSrcweir.ENDIF          # "$(FORCE_DOWNLOADSETS)"!=""
43cdf0e10cSrcweir
44cdf0e10cSrcweir.EXPORT: ENABLE_DOWNLOADSETS
45cdf0e10cSrcweir.EXPORT: LAST_MINOR
46cdf0e10cSrcweir.EXPORT: PRJ
47cdf0e10cSrcweir.EXPORT: PRJNAME
48cdf0e10cSrcweir
49cdf0e10cSrcweir.IF "$(OS)"=="LINUX"
50cdf0e10cSrcweirDONT_REMOVE_PACKAGE:=TRUE
51cdf0e10cSrcweir.EXPORT: DONT_REMOVE_PACKAGE
52cdf0e10cSrcweir.ENDIF          # "$(OS)"=="LINUX"
53cdf0e10cSrcweir
54cdf0e10cSrcweir.INCLUDE .IGNORE: $(SRC_ROOT)$/cwsname.mk
55cdf0e10cSrcweir
56cdf0e10cSrcweirSHARED_COM_SDK_PATH*:=.
57cdf0e10cSrcweir
58cdf0e10cSrcweirINSTALLDIR=$(OUT)
59cdf0e10cSrcweir
60cdf0e10cSrcweir.INCLUDE: target.mk
61cdf0e10cSrcweir
6232d4040dSAndre Fischer# The help target belongs after the inclusion of target.mk to not become the default target.
6332d4040dSAndre Fischerhelp .PHONY :
6432d4040dSAndre Fischer    @echo "known targets:"
6532d4040dSAndre Fischer    @echo "    openoffice             builds the default installation packages for the platform"
6632d4040dSAndre Fischer    @echo "    aoo_srcrelease         packs the source release package"
6732d4040dSAndre Fischer    @echo "    updatepack"
6832d4040dSAndre Fischer    @echo "    openofficedev          devloper snapshot"
6932d4040dSAndre Fischer    @echo "    openofficewithjre"
7032d4040dSAndre Fischer    @echo "    ooolanguagepack"
7132d4040dSAndre Fischer    @echo "    ooodevlanguagepack"
7232d4040dSAndre Fischer    @echo "    sdkoo"
7332d4040dSAndre Fischer    @echo "    sdkoodev"
7432d4040dSAndre Fischer    @echo
759f91b7e3SAndre Fischer    @echo "experimental targets:"
769f91b7e3SAndre Fischer    @echo "    patch_create           create a patch for updating an installed office (Windows only)"
779f91b7e3SAndre Fischer    @echo "    patch_apply            apply a previously created patch"
78*d575d58fSAndre Fischer    @echo "    patch_update_releases_xml"
799f91b7e3SAndre Fischer    @echo
8032d4040dSAndre Fischer    @echo "Most targets (all except aoo_srcrelease and updatepack) accept suffixes"
8132d4040dSAndre Fischer    @echo "    add _<language> to build a target for one language only"
8232d4040dSAndre Fischer    @echo "        the default set of languages is alllangiso=$(alllangiso)"
8332d4040dSAndre Fischer    @echo "    add .<package_format> to build a target for one package format only"
8432d4040dSAndre Fischer    @echo "        the default set of package formats is archive and PKGFORMAT=$(PKGFORMAT)"
8532d4040dSAndre Fischer
8632d4040dSAndre Fischer
87cdf0e10cSrcweirLOCALPYFILES=           \
88cdf0e10cSrcweir    $(BIN)$/uno.py      \
89cdf0e10cSrcweir    $(BIN)$/unohelper.py    \
90cdf0e10cSrcweir    $(BIN)$/pythonloader.py \
91cdf0e10cSrcweir    $(BIN)$/pythonscript.py \
92cdf0e10cSrcweir    $(BIN)$/officehelper.py \
93cdf0e10cSrcweir    $(BIN)$/mailmerge.py
94cdf0e10cSrcweir
95cdf0e10cSrcweirxxxx:
96cdf0e10cSrcweir    echo $(PERL) -w $(SOLARENV)$/bin$/gen_update_info.pl --buildid $(BUILD) --arch "$(RTL_ARCH)" --os "$(RTL_OS)" --lstfile $(PRJ)$/util$/openoffice.lst --product OpenOffice --languages $(subst,$(@:s/_/ /:1)_, $(@:b)) $(PRJ)$/util$/update.xml
97cdf0e10cSrcweir
98cdf0e10cSrcweir.IF "$(GUI)"!="WNT" && "$(EPM)"=="NO" && "$(USE_PACKAGER)"==""
99cdf0e10cSrcweirALLTAR  : $(LOCALPYFILES)
100cdf0e10cSrcweir    @echo "No EPM: do no packaging at this stage"
101cdf0e10cSrcweir.ELSE           # "$(GUI)"!="WNT" && "$(EPM)"=="NO" && "$(USE_PACKAGER)"==""
102cdf0e10cSrcweir.IF "$(UPDATER)"=="" || "$(USE_PACKAGER)"==""
103cdf0e10cSrcweir.IF "$(BUILD_TYPE)"=="$(BUILD_TYPE:s/ODK//)"
104cdf0e10cSrcweirALLTAR : openoffice
105cdf0e10cSrcweir.ELSE
106910823aeSJürgen SchmidtALLTAR : openoffice sdkoo_en-US
107cdf0e10cSrcweir.ENDIF
108cdf0e10cSrcweir.ELSE           # "$(UPDATER)"=="" || "$(USE_PACKAGER)"==""
109cdf0e10cSrcweirALLTAR : updatepack
110cdf0e10cSrcweir.ENDIF          # "$(UPDATER)"=="" || "$(USE_PACKAGER)"==""
111cdf0e10cSrcweir.ENDIF          # "$(GUI)"!="WNT" && "$(EPM)"=="NO" && "$(USE_PACKAGER)"==""
112cdf0e10cSrcweir
113cdf0e10cSrcweir.IF "$(FORCE2ARCHIVE)" == "TRUE"
114cdf0e10cSrcweirPKGFORMAT = archive
115cdf0e10cSrcweir.END
116cdf0e10cSrcweir
117cdf0e10cSrcweir.IF "$(MAKETARGETS:e)"!=""
118cdf0e10cSrcweirPKGFORMAT+=$(MAKETARGETS:e:s/.//)
119cdf0e10cSrcweir.ENDIF          # "$(MAKETARGETS:e)"!=""
120cdf0e10cSrcweir
121cdf0e10cSrcweir# Independent of PKGFORMAT, always build a default-language openoffice product
122cdf0e10cSrcweir# also in archive format, so that tests that require an OOo installation (like
123cdf0e10cSrcweir# smoketestoo_native) have one available:
1249f91b7e3SAndre Fischer#openoffice_$(defaultlangiso) : $$@.archive
125cdf0e10cSrcweir
126cdf0e10cSrcweir.IF "$(VERBOSE)"=="TRUE"
127cdf0e10cSrcweirVERBOSESWITCH=-verbose
1283b45f81aSAriel Constenla-Haile.ELIF "$(VERBOSE)"=="FALSE"
129cdf0e10cSrcweirVERBOSESWITCH=-quiet
130cdf0e10cSrcweir.ENDIF
131cdf0e10cSrcweir
1329f91b7e3SAndre Fischer.IF "$(release:U)"=="T"
1339f91b7e3SAndre FischerRELEASE_SWITCH=-release
1349f91b7e3SAndre Fischer$(foreach,i,$(alllangiso) openoffice_$i.msi) : prepare_release_build
1359f91b7e3SAndre Fischer.ELSE
1369f91b7e3SAndre FischerRELEASE_SWITCH=
1379f91b7e3SAndre Fischer.ENDIF
1389f91b7e3SAndre Fischer
1399f91b7e3SAndre Fischerprepare_release_build .PHONY:
1409f91b7e3SAndre Fischer    @$(PERL) -w $(SOLARENV)$/bin$/release_prepare.pl    \
1419f91b7e3SAndre Fischer        --lst-file $(PRJ)$/util$/openoffice.lst     \
1429f91b7e3SAndre Fischer        --product-name Apache_OpenOffice        \
1439f91b7e3SAndre Fischer        --output-path $(OUT)                \
1449f91b7e3SAndre Fischer        $(alllangiso)
1459f91b7e3SAndre Fischer
1463b45f81aSAriel Constenla-Haile.IF "$(VERBOSE_INSTALLER)"=="TRUE"
1473b45f81aSAriel Constenla-HaileVERBOSESWITCH+=-log
1483b45f81aSAriel Constenla-Haile.ENDIF
1493b45f81aSAriel Constenla-Haile
150c81b3157SJürgen Schmidt# New target to prepare a source release
151c81b3157SJürgen SchmidtSRC_RELEASE_OUT_DIR=$(shell cd $(OUT) && pwd)$/AOO_SRC_Release
152c81b3157SJürgen Schmidt
153c81b3157SJürgen Schmidtaoo_srcrelease: $(SOLARENV)$/bin$/srcrelease.xml
154c81b3157SJürgen Schmidt    @-$(MKDIR) $(OUT)$/AOO_SRC_Release
155c81b3157SJürgen Schmidt    $(ANT) -f $(SOLARENV)$/bin$/srcrelease.xml -q -Dbasedir=$(SOURCE_ROOT_DIR) -Dout.dir=$(SRC_RELEASE_OUT_DIR)
156c81b3157SJürgen Schmidt
157cdf0e10cSrcweirupdatepack:
158cdf0e10cSrcweir    $(PERL) -w $(SOLARENV)$/bin$/packager.pl
159cdf0e10cSrcweir
160cdf0e10cSrcweir.IF "$(alllangiso)"!=""
161cdf0e10cSrcweir
162cdf0e10cSrcweiropenoffice: $(foreach,i,$(alllangiso) openoffice_$i)
163cdf0e10cSrcweir
164cdf0e10cSrcweiropenofficedev: $(foreach,i,$(alllangiso) openofficedev_$i)
165cdf0e10cSrcweir
166cdf0e10cSrcweiropenofficewithjre: $(foreach,i,$(alllangiso) openofficewithjre_$i)
167cdf0e10cSrcweir
168cdf0e10cSrcweirooolanguagepack : $(foreach,i,$(alllangiso) ooolanguagepack_$i)
169cdf0e10cSrcweir
170cdf0e10cSrcweirooodevlanguagepack: $(foreach,i,$(alllangiso) ooodevlanguagepack_$i)
171cdf0e10cSrcweir
172cdf0e10cSrcweirsdkoo: $(foreach,i,$(alllangiso) sdkoo_$i)
173cdf0e10cSrcweir
174cdf0e10cSrcweirsdkoodev: $(foreach,i,$(alllangiso) sdkoodev_$i)
175cdf0e10cSrcweir
176cdf0e10cSrcweirMSIOFFICETEMPLATESOURCE=$(PRJ)$/inc_openoffice$/windows$/msi_templates
177cdf0e10cSrcweirMSILANGPACKTEMPLATESOURCE=$(PRJ)$/inc_ooolangpack$/windows$/msi_templates
178cdf0e10cSrcweirMSISDKOOTEMPLATESOURCE=$(PRJ)$/inc_sdkoo$/windows$/msi_templates
179cdf0e10cSrcweir
180cdf0e10cSrcweirNOLOGOSPLASH:=$(BIN)$/intro.zip
181cdf0e10cSrcweirDEVNOLOGOSPLASH:=$(BIN)$/dev$/intro.zip
182cdf0e10cSrcweirMSIOFFICETEMPLATEDIR=$(MISC)$/openoffice$/msi_templates
183cdf0e10cSrcweirMSILANGPACKTEMPLATEDIR=$(MISC)$/ooolangpack$/msi_templates
184cdf0e10cSrcweirMSISDKOOTEMPLATEDIR=$(MISC)$/sdkoo$/msi_templates
185cdf0e10cSrcweir
1869f91b7e3SAndre FischerADDDEPS=adddeps
1879f91b7e3SAndre Fischeradddeps .PHONY : $(NOLOGOSPLASH) $(DEVNOLOGOSPLASH)
188451f97f9SPedro Giffuni
189cdf0e10cSrcweir.IF "$(OS)" == "WNT"
1909f91b7e3SAndre Fischeradddeps : msitemplates
191cdf0e10cSrcweir.ENDIF
192cdf0e10cSrcweir
1939f91b7e3SAndre Fischer.IF "$(LOCALPYFILES)"!=""
1949f91b7e3SAndre Fischerlocal_python_files .PHONY : $(LOCALPYFILES)
1959f91b7e3SAndre Fischeradddeps : local_python_files
1969f91b7e3SAndre Fischerupdatepack : local_python_files
1979f91b7e3SAndre Fischer.ENDIF          # "$(LOCALPYFILES)"!=""
1989f91b7e3SAndre Fischer
1999f91b7e3SAndre Fischer
200cdf0e10cSrcweir$(foreach,i,$(alllangiso) openoffice_$i) : $(ADDDEPS)
201cdf0e10cSrcweiropenoffice_$(defaultlangiso).archive : $(ADDDEPS)
202cdf0e10cSrcweir
203cdf0e10cSrcweir$(foreach,i,$(alllangiso) openofficedev_$i) : $(ADDDEPS)
204cdf0e10cSrcweir
205cdf0e10cSrcweir$(foreach,i,$(alllangiso) openofficewithjre_$i) : $(ADDDEPS)
206cdf0e10cSrcweir
207cdf0e10cSrcweir$(foreach,i,$(alllangiso) ooolanguagepack_$i) : $(ADDDEPS)
208cdf0e10cSrcweir
209cdf0e10cSrcweir$(foreach,i,$(alllangiso) ooodevlanguagepack_$i) : $(ADDDEPS)
210cdf0e10cSrcweir
211cdf0e10cSrcweir$(foreach,i,$(alllangiso) sdkoo_$i) : $(ADDDEPS)
212cdf0e10cSrcweir
213cdf0e10cSrcweir$(foreach,i,$(alllangiso) sdkoodev_$i) : $(ADDDEPS)
214cdf0e10cSrcweir
215cdf0e10cSrcweir$(foreach,i,$(alllangiso) openoffice_$i) : $$@{$(PKGFORMAT:^".")}
2169f91b7e3SAndre Fischer$(foreach,i,$(alllangiso) openofficewithjre_$i) : $$@{$(PKGFORMAT:^".")}
2179f91b7e3SAndre Fischer$(foreach,i,$(alllangiso) openofficedev_$i) : $$@{$(PKGFORMAT:^".")}
2189f91b7e3SAndre Fischer$(foreach,i,$(alllangiso) ooolanguagepack_$i) : $$@{$(PKGFORMAT:^".")}
2199f91b7e3SAndre Fischer$(foreach,i,$(alllangiso) ooodevlanguagepack_$i) : $$@{$(PKGFORMAT:^".")}
2209f91b7e3SAndre Fischer$(foreach,i,$(alllangiso) sdkoo_$i) : $$@{$(PKGFORMAT:^".")}
2219f91b7e3SAndre Fischer$(foreach,i,$(alllangiso) sdkoodev_$i) : $$@{$(PKGFORMAT:^".")}
222aa3f9146SAndre Fischer
223aa3f9146SAndre Fischer
224aa3f9146SAndre Fischer# This macro makes calling the make_installer.pl script a bit easier.
225aa3f9146SAndre Fischer# Just add -p and -msitemplate switches.
226aa3f9146SAndre FischerMAKE_INSTALLER_COMMAND=                 \
227dc914883SAndre Fischer    @$(PERL) -w $(SOLARENV)$/bin$/make_installer.pl \
228aa3f9146SAndre Fischer        -f $(PRJ)$/util$/openoffice.lst     \
229aa3f9146SAndre Fischer        -l $(subst,$(@:s/_/ /:1)_, $(@:b))  \
230aa3f9146SAndre Fischer        -u $(OUT)               \
231aa3f9146SAndre Fischer        -buildid $(BUILD)           \
232aa3f9146SAndre Fischer        -msilanguage $(MISC)$/win_ulffiles  \
233aa3f9146SAndre Fischer        -format $(@:e:s/.//)            \
234aa3f9146SAndre Fischer        $(VERBOSESWITCH)
235aa3f9146SAndre Fischer
236aa3f9146SAndre Fischer# This macro makes calling gen_update_info.pl a bit easier
237aa3f9146SAndre Fischer# Just add --product switches, and xml input file and redirect output.
238aa3f9146SAndre FischerGEN_UPDATE_INFO_COMMAND=                    \
239dc914883SAndre Fischer    @$(PERL) -w $(SOLARENV)$/bin$/gen_update_info.pl    \
240aa3f9146SAndre Fischer        --buildid $(BUILD)              \
241aa3f9146SAndre Fischer        --arch "$(RTL_ARCH)"                \
242aa3f9146SAndre Fischer        --os "$(RTL_OS)"                \
243aa3f9146SAndre Fischer        --lstfile $(PRJ)$/util$/openoffice.lst      \
244aa3f9146SAndre Fischer        --languages $(subst,$(@:s/_/ /:1)_, $(@:b))
245aa3f9146SAndre Fischer
246dc914883SAndre Fischeropenoffice_%{$(PKGFORMAT:^".")} :
247dc914883SAndre Fischer    $(MAKE_INSTALLER_COMMAND)           \
248dc914883SAndre Fischer        -p Apache_OpenOffice            \
2499f91b7e3SAndre Fischer        -msitemplate $(MSIOFFICETEMPLATEDIR)    \
2509f91b7e3SAndre Fischer        $(RELEASE_SWITCH)
251dc914883SAndre Fischer    $(GEN_UPDATE_INFO_COMMAND)      \
252dc914883SAndre Fischer        --product Apache_OpenOffice \
253dc914883SAndre Fischer        $(PRJ)$/util$/update.xml    \
254dc914883SAndre Fischer        > $(MISC)/$(@:b)_$(RTL_OS)_$(RTL_ARCH)$(@:e).update.xml
255dc914883SAndre Fischer
256dc914883SAndre Fischeropenoffice_%{.archive} :
257aa3f9146SAndre Fischer    $(MAKE_INSTALLER_COMMAND)       \
258aa3f9146SAndre Fischer        -p Apache_OpenOffice        \
259aa3f9146SAndre Fischer        -msitemplate $(MSIOFFICETEMPLATEDIR)
260aa3f9146SAndre Fischer    $(GEN_UPDATE_INFO_COMMAND)      \
261aa3f9146SAndre Fischer        --product Apache_OpenOffice \
262aa3f9146SAndre Fischer        $(PRJ)$/util$/update.xml    \
263aa3f9146SAndre Fischer        > $(MISC)/$(@:b)_$(RTL_OS)_$(RTL_ARCH)$(@:e).update.xml
264cdf0e10cSrcweir
265cdf0e10cSrcweiropenofficewithjre_%{$(PKGFORMAT:^".")} :
266aa3f9146SAndre Fischer    $(MAKE_INSTALLER_COMMAND) -p Apache_OpenOffice_wJRE -msitemplate $(MSIOFFICETEMPLATEDIR)
267cdf0e10cSrcweir
268cdf0e10cSrcweiropenofficedev_%{$(PKGFORMAT:^".")} :
269aa3f9146SAndre Fischer    $(MAKE_INSTALLER_COMMAND)       \
270aa3f9146SAndre Fischer        -p Apache_OpenOffice_Dev    \
271aa3f9146SAndre Fischer        -msitemplate $(MSIOFFICETEMPLATEDIR)
272aa3f9146SAndre Fischer    $(GEN_UPDATE_INFO_COMMAND)          \
273aa3f9146SAndre Fischer        --product Apache_OpenOffice_Dev     \
274aa3f9146SAndre Fischer        $(PRJ)$/util$/update.xml        \
275aa3f9146SAndre Fischer        > $(MISC)/$(@:b)_$(RTL_OS)_$(RTL_ARCH)$(@:e).update.xml
276cdf0e10cSrcweir
277cdf0e10cSrcweirooolanguagepack_%{$(PKGFORMAT:^".")} :
278aa3f9146SAndre Fischer    $(MAKE_INSTALLER_COMMAND)           \
279aa3f9146SAndre Fischer        -p Apache_OpenOffice            \
280aa3f9146SAndre Fischer        -msitemplate $(MSILANGPACKTEMPLATEDIR)  \
281aa3f9146SAndre Fischer        -languagepack
282cdf0e10cSrcweir
283cdf0e10cSrcweirooodevlanguagepack_%{$(PKGFORMAT:^".")} :
284aa3f9146SAndre Fischer    $(MAKE_INSTALLER_COMMAND) -p Apache_OpenOffice_Dev -msitemplate $(MSILANGPACKTEMPLATEDIR) -languagepack
285cdf0e10cSrcweir
286cdf0e10cSrcweirsdkoo_%{$(PKGFORMAT:^".")} :
287aa3f9146SAndre Fischer    $(MAKE_INSTALLER_COMMAND) -p Apache_OpenOffice_SDK -msitemplate $(MSISDKOOTEMPLATEDIR) -dontstrip
288cdf0e10cSrcweir
289cdf0e10cSrcweirsdkoodev_%{$(PKGFORMAT:^".")} :
290aa3f9146SAndre Fischer    $(MAKE_INSTALLER_COMMAND) -p Apache_OpenOffice_Dev_SDK -msitemplate $(MSISDKOOTEMPLATEDIR) -dontstrip
291cdf0e10cSrcweir
292cdf0e10cSrcweir.ELSE           # "$(alllangiso)"!=""
293cdf0e10cSrcweiropenoffice:
294cdf0e10cSrcweir    @echo cannot pack nothing...
295cdf0e10cSrcweir
296cdf0e10cSrcweir.ENDIF          # "$(alllangiso)"!=""
297cdf0e10cSrcweir
298cdf0e10cSrcweir$(BIN)$/%.py : $(SOLARSHAREDBIN)$/pyuno$/%.py
2999f91b7e3SAndre Fischer    $(COPY) $< $@
300cdf0e10cSrcweir
301910823aeSJürgen Schmidt$(BIN)$/intro.zip : $(SOLARCOMMONPCKDIR)$/intro.zip
302cdf0e10cSrcweir    $(COPY) $< $@
303cdf0e10cSrcweir
304910823aeSJürgen Schmidt$(BIN)$/dev$/intro.zip : $(SOLARCOMMONPCKDIR)$/openoffice_dev$/intro.zip
305cdf0e10cSrcweir    @-$(MKDIR) $(@:d)
306cdf0e10cSrcweir    $(COPY) $< $@
307cdf0e10cSrcweir
3089f91b7e3SAndre Fischer
3099f91b7e3SAndre Fischer.IF "$(OS)" == "WNT"
3109f91b7e3SAndre Fischerpatch_create .PHONY : $(PRJ)$/data
311*d575d58fSAndre Fischer    perl -I $(SOLARENV)$/bin/modules $(SOLARENV)$/bin$/patch_tool.pl    \
312*d575d58fSAndre Fischer        create                              \
3139f91b7e3SAndre Fischer        --product-name Apache_OpenOffice                \
3149f91b7e3SAndre Fischer        --output-path $(OUT)                        \
3159f91b7e3SAndre Fischer        --data-path $(PRJ)$/data                    \
3169f91b7e3SAndre Fischer        --lst-file $(PRJ)$/util$/openoffice.lst
3179f91b7e3SAndre Fischerpatch_apply .PHONY :
318*d575d58fSAndre Fischer    perl -I $(SOLARENV)$/bin/modules $(SOLARENV)$/bin$/patch_tool.pl    \
319*d575d58fSAndre Fischer        apply                               \
320*d575d58fSAndre Fischer        --product-name Apache_OpenOffice                \
321*d575d58fSAndre Fischer        --output-path $(OUT)                        \
322*d575d58fSAndre Fischer        --lst-file $(PRJ)$/util$/openoffice.lst
323*d575d58fSAndre Fischerpatch_update_releases_xml .PHONY:
324*d575d58fSAndre Fischer    perl -I $(SOLARENV)$/bin/modules $(SOLARENV)$/bin$/patch_tool.pl    \
325*d575d58fSAndre Fischer        update-releases-xml                     \
326*d575d58fSAndre Fischer        --product-name Apache_OpenOffice                \
327*d575d58fSAndre Fischer        --output-path $(OUT)                        \
328*d575d58fSAndre Fischer        --lst-file $(PRJ)$/util$/openoffice.lst\
329*d575d58fSAndre Fischer        --target-version 4.0.1
3309f91b7e3SAndre Fischer
3319f91b7e3SAndre Fischer$(PRJ)$/data :
3329f91b7e3SAndre Fischer    mkdir $@
3339f91b7e3SAndre Fischer.ELSE
3349f91b7e3SAndre Fischerpatch .PHONY :
3359f91b7e3SAndre Fischer    @echo "patches can only be created on Windows at the moment"
3369f91b7e3SAndre Fischer.ENDIF
3379f91b7e3SAndre Fischer
3389f91b7e3SAndre Fischer
339b6dfe6c8SAndre Fischermsitemplates .PHONY: msi_template_files msi_langpack_template_files msi_sdk_template_files
3407a3dfa40SAndre Fischer
3417a3dfa40SAndre FischerMSI_OFFICE_TEMPLATE_FILES=      \
3427a3dfa40SAndre Fischer    ActionTe.idt            \
3437a3dfa40SAndre Fischer    AdminExe.idt            \
3447a3dfa40SAndre Fischer    AdminUIS.idt            \
3457a3dfa40SAndre Fischer    AdvtExec.idt            \
3467a3dfa40SAndre Fischer    AppSearc.idt            \
3477a3dfa40SAndre Fischer    Binary.idt          \
3487a3dfa40SAndre Fischer    CheckBox.idt            \
3497a3dfa40SAndre Fischer    Control.idt         \
3507a3dfa40SAndre Fischer    ControlC.idt            \
3517a3dfa40SAndre Fischer    ControlE.idt            \
3527a3dfa40SAndre Fischer    CustomAc.idt            \
3537a3dfa40SAndre Fischer    Dialog.idt          \
3547a3dfa40SAndre Fischer    Error.idt           \
3557a3dfa40SAndre Fischer    EventMap.idt            \
3567a3dfa40SAndre Fischer    InstallE.idt            \
3577a3dfa40SAndre Fischer    InstallU.idt            \
3587a3dfa40SAndre Fischer    LaunchCo.idt            \
3597a3dfa40SAndre Fischer    ListBox.idt         \
3607a3dfa40SAndre Fischer    Property.idt            \
3617a3dfa40SAndre Fischer    RadioBut.idt            \
3627a3dfa40SAndre Fischer    RegLocat.idt            \
3637a3dfa40SAndre Fischer    Signatur.idt            \
3647a3dfa40SAndre Fischer    TextStyl.idt            \
3657a3dfa40SAndre Fischer    UIText.idt          \
3667a3dfa40SAndre Fischer    _Validat.idt            \
3677a3dfa40SAndre Fischer    codes.txt           \
3687a3dfa40SAndre Fischer    codes_broo.txt          \
3697a3dfa40SAndre Fischer    codes_broodev.txt       \
3707a3dfa40SAndre Fischer    codes_ooodev.txt        \
3717a3dfa40SAndre Fischer    components.txt          \
3727a3dfa40SAndre Fischer    upgradecode_remove_ooo.txt  \
3737a3dfa40SAndre Fischer    Binary/Banner.bmp       \
3747a3dfa40SAndre Fischer    Binary/Image.bmp        \
3757a3dfa40SAndre Fischer    Binary/caution.ico      \
3767a3dfa40SAndre Fischer    Binary/dontinstall.ico      \
3777a3dfa40SAndre Fischer    Binary/install.ico      \
3787a3dfa40SAndre Fischer    Binary/installfirstuse.ico  \
3797a3dfa40SAndre Fischer    Binary/installpartial.ico   \
3807a3dfa40SAndre Fischer    Binary/installstatemenu.ico \
3817a3dfa40SAndre Fischer    Binary/networkinstall.ico   \
3827a3dfa40SAndre Fischer    Binary/newfolder.ico        \
3837a3dfa40SAndre Fischer    Binary/openfolder.ico       \
3847a3dfa40SAndre Fischer    Binary/setup.ico        \
3857a3dfa40SAndre Fischer    Binary/setupcomplete.ico    \
3867a3dfa40SAndre Fischer    Binary/setuppartial.ico     \
3877a3dfa40SAndre Fischer    Binary/setuprepair.ico      \
3887a3dfa40SAndre Fischer    Binary/trashcan.ico     \
3897a3dfa40SAndre Fischer    Binary/up.ico
3907a3dfa40SAndre Fischer
3917a3dfa40SAndre FischerMSI_LANGPACK_TEMPLATE_FILES=        \
3927a3dfa40SAndre Fischer    ActionTe.idt            \
3937a3dfa40SAndre Fischer    AdminExe.idt            \
3947a3dfa40SAndre Fischer    AdminUIS.idt            \
3957a3dfa40SAndre Fischer    AdvtExec.idt            \
3967a3dfa40SAndre Fischer    Binary.idt          \
3977a3dfa40SAndre Fischer    CheckBox.idt            \
3987a3dfa40SAndre Fischer    Control.idt         \
3997a3dfa40SAndre Fischer    ControlC.idt            \
4007a3dfa40SAndre Fischer    ControlE.idt            \
4017a3dfa40SAndre Fischer    CustomAc.idt            \
4027a3dfa40SAndre Fischer    Dialog.idt          \
4037a3dfa40SAndre Fischer    Error.idt           \
4047a3dfa40SAndre Fischer    EventMap.idt            \
4057a3dfa40SAndre Fischer    InstallE.idt            \
4067a3dfa40SAndre Fischer    InstallU.idt            \
4077a3dfa40SAndre Fischer    LaunchCo.idt            \
4087a3dfa40SAndre Fischer    ListBox.idt         \
4097a3dfa40SAndre Fischer    Property.idt            \
4107a3dfa40SAndre Fischer    RadioBut.idt            \
4117a3dfa40SAndre Fischer    TextStyl.idt            \
4127a3dfa40SAndre Fischer    UIText.idt          \
4137a3dfa40SAndre Fischer    _Validat.idt            \
4147a3dfa40SAndre Fischer    bro_patchcodes.txt      \
4157a3dfa40SAndre Fischer    brodev_patchcodes.txt       \
4167a3dfa40SAndre Fischer    codes.txt           \
4177a3dfa40SAndre Fischer    codes_broo.txt          \
4187a3dfa40SAndre Fischer    codes_ooodev.txt        \
4197a3dfa40SAndre Fischer    components.txt          \
4207a3dfa40SAndre Fischer    ooo_patchcodes.txt      \
4217a3dfa40SAndre Fischer    ooodev_patchcodes.txt       \
4227a3dfa40SAndre Fischer    Binary/Banner.bmp
4237a3dfa40SAndre Fischer
4247a3dfa40SAndre FischerMSI_SDK_TEMPLATE_FILES=         \
4257a3dfa40SAndre Fischer    ActionTe.idt            \
4267a3dfa40SAndre Fischer    AdminExe.idt            \
4277a3dfa40SAndre Fischer    AdminUIS.idt            \
4287a3dfa40SAndre Fischer    AdvtExec.idt            \
4297a3dfa40SAndre Fischer    AppSearc.idt            \
4307a3dfa40SAndre Fischer    Binary.idt          \
4317a3dfa40SAndre Fischer    CheckBox.idt            \
4327a3dfa40SAndre Fischer    Control.idt         \
4337a3dfa40SAndre Fischer    ControlC.idt            \
4347a3dfa40SAndre Fischer    ControlE.idt            \
4357a3dfa40SAndre Fischer    CustomAc.idt            \
4367a3dfa40SAndre Fischer    Dialog.idt          \
4377a3dfa40SAndre Fischer    Error.idt           \
4387a3dfa40SAndre Fischer    EventMap.idt            \
4397a3dfa40SAndre Fischer    InstallE.idt            \
4407a3dfa40SAndre Fischer    InstallU.idt            \
4417a3dfa40SAndre Fischer    LaunchCo.idt            \
4427a3dfa40SAndre Fischer    ListBox.idt         \
4437a3dfa40SAndre Fischer    Property.idt            \
4447a3dfa40SAndre Fischer    RadioBut.idt            \
4457a3dfa40SAndre Fischer    RegLocat.idt            \
4467a3dfa40SAndre Fischer    Signatur.idt            \
4477a3dfa40SAndre Fischer    TextStyl.idt            \
4487a3dfa40SAndre Fischer    UIText.idt          \
4497a3dfa40SAndre Fischer    _Validat.idt            \
4507a3dfa40SAndre Fischer    codes.txt           \
4517a3dfa40SAndre Fischer    components.txt          \
4527a3dfa40SAndre Fischer    Binary/Banner.bmp       \
4537a3dfa40SAndre Fischer    Binary/Image.bmp        \
4547a3dfa40SAndre Fischer    Binary/caution.ico      \
4557a3dfa40SAndre Fischer    Binary/dontinstall.ico      \
4567a3dfa40SAndre Fischer    Binary/install.ico      \
4577a3dfa40SAndre Fischer    Binary/installfirstuse.ico  \
4587a3dfa40SAndre Fischer    Binary/installpartial.ico   \
4597a3dfa40SAndre Fischer    Binary/installstatemenu.ico \
4607a3dfa40SAndre Fischer    Binary/networkinstall.ico   \
4617a3dfa40SAndre Fischer    Binary/newfolder.ico        \
4627a3dfa40SAndre Fischer    Binary/openfolder.ico       \
4637a3dfa40SAndre Fischer    Binary/setup.ico        \
4647a3dfa40SAndre Fischer    Binary/setupcomplete.ico    \
4657a3dfa40SAndre Fischer    Binary/setuppartial.ico     \
4667a3dfa40SAndre Fischer    Binary/setuprepair.ico      \
4677a3dfa40SAndre Fischer    Binary/trashcan.ico     \
4687a3dfa40SAndre Fischer    Binary/up.ico
4697a3dfa40SAndre Fischer
4707a3dfa40SAndre Fischermsi_template_files .PHONY:                  \
4717a3dfa40SAndre Fischer    $(MSIOFFICETEMPLATEDIR)                 \
4727a3dfa40SAndre Fischer    $(MSIOFFICETEMPLATEDIR)$/Binary             \
4737a3dfa40SAndre Fischer    $(MSIOFFICETEMPLATEDIR)$/{$(MSI_OFFICE_TEMPLATE_FILES)}
4747a3dfa40SAndre Fischer$(MSIOFFICETEMPLATEDIR) $(MSIOFFICETEMPLATEDIR)$/Binary :
4757a3dfa40SAndre Fischer    -$(MKDIRHIER) $@
4767a3dfa40SAndre Fischer$(MSIOFFICETEMPLATEDIR)$/% : $(MSIOFFICETEMPLATESOURCE)$/%
4777a3dfa40SAndre Fischer    $(GNUCOPY) $< $@
4787a3dfa40SAndre Fischer
4797a3dfa40SAndre Fischermsi_langpack_template_files .PHONY :                \
4807a3dfa40SAndre Fischer    $(MSILANGPACKTEMPLATEDIR)               \
4817a3dfa40SAndre Fischer    $(MSILANGPACKTEMPLATEDIR)$/Binary           \
4827a3dfa40SAndre Fischer    $(MSILANGPACKTEMPLATEDIR)$/{$(MSI_LANGPACK_TEMPLATE_FILES)}
4837a3dfa40SAndre Fischer$(MSILANGPACKTEMPLATEDIR) $(MSILANGPACKTEMPLATEDIR)$/Binary  :
4847a3dfa40SAndre Fischer    -$(MKDIRHIER) $@
4857a3dfa40SAndre Fischer$(MSILANGPACKTEMPLATEDIR)$/% : $(MSILANGPACKTEMPLATESOURCE)$/%
4867a3dfa40SAndre Fischer    $(GNUCOPY) $< $@
487cdf0e10cSrcweir
488cdf0e10cSrcweir
4897a3dfa40SAndre Fischermsi_sdk_template_files .PHONY :                 \
4907a3dfa40SAndre Fischer    $(MSISDKOOTEMPLATEDIR)                  \
4917a3dfa40SAndre Fischer    $(MSISDKOOTEMPLATEDIR)$/Binary              \
4927a3dfa40SAndre Fischer    $(MSISDKOOTEMPLATEDIR)$/{$(MSI_SDK_TEMPLATE_FILES)}
4937a3dfa40SAndre Fischer$(MSISDKOOTEMPLATEDIR) $(MSISDKOOTEMPLATEDIR)$/Binary :
4947a3dfa40SAndre Fischer    -$(MKDIRHIER) $@
4957a3dfa40SAndre Fischer$(MSISDKOOTEMPLATEDIR)/% : $(MSISDKOOTEMPLATESOURCE)$/%
4967a3dfa40SAndre Fischer    $(GNUCOPY) $< $@
4979f91b7e3SAndre Fischer
4989f91b7e3SAndre Fischer
4999f91b7e3SAndre Fischer# Local Variables:
5009f91b7e3SAndre Fischer# tab-width: 8
5019f91b7e3SAndre Fischer# End:
502