17871dc3eSAndrew Rist#**************************************************************
27871dc3eSAndrew Rist#
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
107871dc3eSAndrew Rist#
117871dc3eSAndrew Rist#    http://www.apache.org/licenses/LICENSE-2.0
127871dc3eSAndrew Rist#
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.
197871dc3eSAndrew Rist#
207871dc3eSAndrew Rist#**************************************************************
217871dc3eSAndrew Rist
227871dc3eSAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweirPRJ		= ..$/..$/..$/..$/..
25cdf0e10cSrcweirPRJNAME = xmlhelp
26cdf0e10cSrcweirTARGET  = HelpLinker
27cdf0e10cSrcweirPACKAGE = com$/sun$/star$/help
28cdf0e10cSrcweir
29cdf0e10cSrcweir.IF "$(SOLAR_JAVA)"!=""
30cdf0e10cSrcweir# --- Settings -----------------------------------------------------
31cdf0e10cSrcweir
32cdf0e10cSrcweir.INCLUDE : settings.mk
33cdf0e10cSrcweir
34cdf0e10cSrcweirJAVACLASSFILES = \
35cdf0e10cSrcweir	$(CLASSDIR)$/$(PACKAGE)$/HelpSearch.class			        \
36cdf0e10cSrcweir	$(CLASSDIR)$/$(PACKAGE)$/HelpComponent.class			        \
37cdf0e10cSrcweir	$(CLASSDIR)$/$(PACKAGE)$/HelpIndexer.class
38cdf0e10cSrcweir
39cdf0e10cSrcweirTRANSEX3FILES = \
40cdf0e10cSrcweir		$(SOLARBINDIR)$/help$/$(PACKAGE)$/HelpIndexerTool.class		\
41cdf0e10cSrcweir		$(SOLARBINDIR)$/help$/$(PACKAGE)$/HelpFileDocument.class
42cdf0e10cSrcweir
43cdf0e10cSrcweirADDFILES = $(subst,$(SOLARBINDIR)$/help,$(CLASSDIR) $(TRANSEX3FILES))
44cdf0e10cSrcweir
45cdf0e10cSrcweirJARFILES  = ridl.jar jurt.jar unoil.jar juh.jar
46cdf0e10cSrcweir.IF "$(SYSTEM_LUCENE)" == "YES"
47cdf0e10cSrcweirEXTRAJARFILES = $(LUCENE_CORE_JAR) $(LUCENE_ANALYZERS_JAR)
48cdf0e10cSrcweirJARCLASSPATH = $(EXTRAJARFILES)
49cdf0e10cSrcweir.ELSE
50*7fb4469bSPedro GiffuniJARFILES += lucene-core-2.9.4-dev.jar lucene-analyzers-2.9.4-dev.jar
51*7fb4469bSPedro GiffuniJARCLASSPATH = lucene-core-2.9.4-dev.jar lucene-analyzers-2.9.4-dev.jar
52cdf0e10cSrcweir.ENDIF
53cdf0e10cSrcweir
54cdf0e10cSrcweirJARTARGET	   	   = LuceneHelpWrapper.jar
55cdf0e10cSrcweirJARCOMPRESS        = TRUE
56cdf0e10cSrcweirCUSTOMMANIFESTFILE = MANIFEST.MF
57cdf0e10cSrcweir
58cdf0e10cSrcweir# --- Targets ------------------------------------------------------
59cdf0e10cSrcweir
60cdf0e10cSrcweir.INCLUDE :  target.mk
61cdf0e10cSrcweir
62cdf0e10cSrcweir.IF "$(JARTARGETN)"!=""
63cdf0e10cSrcweir$(JAVATARGET) : $(ADDFILES)
64cdf0e10cSrcweir$(JARTARGETN) : $(ADDFILES)
65cdf0e10cSrcweir.ENDIF
66cdf0e10cSrcweir
67cdf0e10cSrcweir$(ADDFILES) : $(SOLARBINDIR)$/help$/$(PACKAGE)$/$$(@:f)
68cdf0e10cSrcweir	$(MKDIRHIER) $(@:d)
69cdf0e10cSrcweir	$(COPY) $< $@
70cdf0e10cSrcweir
71cdf0e10cSrcweirfix_system_lucene:
72cdf0e10cSrcweir	@echo "Fix Java Class-Path entry for Lucene libraries from system."
73cdf0e10cSrcweir	@$(SED) -r -e "s#^(Class-Path:).*#\1 file://$(LUCENE_CORE_JAR) file://$(LUCENE_ANALYZERS_JAR)#" \
74cdf0e10cSrcweir	-i ../../../../../$(INPATH)/class/HelpLinker/META-INF/MANIFEST.MF
75cdf0e10cSrcweir
76cdf0e10cSrcweirALLTAR : $(MISC)/LuceneHelpWrapper.component
77cdf0e10cSrcweir
78cdf0e10cSrcweir$(MISC)/LuceneHelpWrapper.component .ERRREMOVE : \
79cdf0e10cSrcweir        $(SOLARENV)/bin/createcomponent.xslt LuceneHelpWrapper.component
80cdf0e10cSrcweir    $(XSLTPROC) --nonet --stringparam uri \
81cdf0e10cSrcweir        '$(COMPONENTPREFIX_BASIS_JAVA)$(JARTARGET)' -o $@ \
82cdf0e10cSrcweir        $(SOLARENV)/bin/createcomponent.xslt LuceneHelpWrapper.component
83cdf0e10cSrcweir.ELSE
84cdf0e10cSrcweirall:
85cdf0e10cSrcweir        @echo java disabled
86cdf0e10cSrcweir.ENDIF
87