1 #*************************************************************************
3 # The Contents of this file are made available subject to the terms of
6 # Copyright 2000, 2010 Oracle and/or its affiliates.
9 # Redistribution and use in source and binary forms, with or without
10 # modification, are permitted provided that the following conditions
12 # 1. Redistributions of source code must retain the above copyright
13 # notice, this list of conditions and the following disclaimer.
14 # 2. Redistributions in binary form must reproduce the above copyright
15 # notice, this list of conditions and the following disclaimer in the
16 # documentation and/or other materials provided with the distribution.
17 # 3. Neither the name of Sun Microsystems, Inc. nor the names of its
18 # contributors may be used to endorse or promote products derived
19 # from this software without specific prior written permission.
21 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
28 # OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
30 # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
31 # USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #**************************************************************************
35 # Builds the Java Minimal component example of the SDK.
38 SETTINGS
=$(PRJ
)/settings
40 include $(SETTINGS
)/settings.mk
41 include $(SETTINGS
)/std.mk
43 # Define non-platform/compiler specific settings
45 # we use the sample directory name dor separating this example
46 # from others in the output directory
47 SAMPLE_NAME
=MinimalComponent
48 SAMPLE_CLASS_OUT
=$(OUT_CLASS
)/$(SAMPLE_NAME
)
49 SAMPLE_GEN_OUT
=$(OUT_MISC
)/$(SAMPLE_NAME
)
51 COMP_NAME
=MinimalComponent
52 COMP_CLASS_OUT
=$(SAMPLE_CLASS_OUT
)/$(COMP_NAME
)
53 COMP_GEN_OUT
=$(SAMPLE_GEN_OUT
)/$(COMP_NAME
)
54 COMP_RDB_NAME
=$(COMP_NAME
).uno.rdb
55 COMP_RDB
=$(COMP_GEN_OUT
)/$(COMP_RDB_NAME
)
56 COMP_PACKAGE
=$(OUT_BIN
)/$(COMP_NAME
).
$(UNOOXT_EXT
)
57 COMP_PACKAGE_URL
=$(subst \\,\
,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
58 COMP_JAR_NAME
=$(COMP_NAME
).uno.jar
59 COMP_JAR
=$(SAMPLE_CLASS_OUT
)/$(COMP_JAR_NAME
)
60 COMP_JAR_MANIFEST
=$(COMP_GEN_OUT
)/$(COMP_NAME
).uno.Manifest
61 COMP_UNOPKG_MANIFEST
= $(COMP_GEN_OUT
)/META-INF
/manifest.xml
62 COMP_REGISTERFLAG
=$(COMP_GEN_OUT
)$(PS
)java_
$(COMP_NAME
)_register_component.flag
63 COMP_COMPONENTS
=$(COMP_NAME
).components
65 APP1_NAME
=TestMinimalComponent
66 APP1_CLASS_OUT
=$(SAMPLE_CLASS_OUT
)/$(APP1_NAME
)
67 APP1_GEN_OUT
=$(SAMPLE_GEN_OUT
)/$(APP1_NAME
)
68 APP1_JAR
=$(SAMPLE_CLASS_OUT
)/$(APP1_NAME
).jar
69 APP1_JAR_MANIFEST
=$(APP1_GEN_OUT
)/$(APP1_NAME
).mf
71 IDLFILES
= MinimalComponent.idl
73 # normally the idl file should be stored in a directory tree fitting the module structure,
74 # for the example we know the module structure
75 PACKAGE
= org
/openoffice
77 COMP_JAVAFILES
= MinimalComponent.java
78 COMP_CLASSFILES
= $(patsubst %.java
,$(COMP_CLASS_OUT
)/%.class
,$(COMP_JAVAFILES
))
80 GEN_CLASSFILES
= $(patsubst %.idl
,$(SAMPLE_CLASS_OUT
)/$(PACKAGE
)/%.class
,$(IDLFILES
))
81 GEN_TYPELIST
= $(subst /,.
,$(patsubst %.idl
,-T
$(PACKAGE
)/% ,$(IDLFILES
)))
82 GEN_URDFILES
= $(patsubst %.idl
,$(SAMPLE_GEN_OUT
)/%.urd
,$(IDLFILES
))
84 # the generated types are necessary for the component and the application jar
85 GEN_CLASSFILENAMES
= $(subst $(SAMPLE_CLASS_OUT
)/,,$(GEN_CLASSFILES
))
87 SDK_CLASSPATH
= $(subst $(EMPTYSTRING
) $(PATH_SEPARATOR
),$(PATH_SEPARATOR
),$(CLASSPATH
)\
88 $(PATH_SEPARATOR
)$(SAMPLE_CLASS_OUT
)\
89 $(PATH_SEPARATOR
)$(COMP_CLASS_OUT
)\
90 $(PATH_SEPARATOR
)$(APP1_CLASS_OUT
))
95 ALL
: JavaMinimalComponentExample
97 include $(SETTINGS
)/stdtarget.mk
99 $(COMP_GEN_OUT
)/%.Manifest
:
100 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
101 @echo UNO-Type-Path
: $(basename $*).uno.jar
> $@
102 @echo RegistrationClassName
: $(basename $*)>> $@
104 $(SAMPLE_GEN_OUT
)/%.urd
: %.idl
105 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
106 $(IDLC
) -C
-I.
-I
$(IDL_DIR
) -O
$(SAMPLE_GEN_OUT
) $<
108 $(COMP_GEN_OUT
)/%.rdb
: $(GEN_URDFILES
)
109 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$@
))
110 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
111 $(REGMERGE
) $@
/UCR
$(GEN_URDFILES
)
113 $(GEN_CLASSFILES
) : $(COMP_RDB
)
114 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
115 $(JAVAMAKER
) -nD
$(GEN_TYPELIST
) -O
$(SAMPLE_CLASS_OUT
) $(COMP_RDB
) -X
$(URE_TYPES
) -X
$(OFFICE_TYPES
)
117 # component as well as application are dependent from the generated types
118 # rule for component class files
119 $(COMP_CLASS_OUT
)/%.class
: %.java
$(GEN_CLASSFILES
)
120 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
121 $(SDK_JAVAC
) $(JAVAC_FLAGS
) -classpath
"$(SDK_CLASSPATH)" -d
$(COMP_CLASS_OUT
) $<
123 # rule for example application class files
124 $(APP1_CLASS_OUT
)/%.class
: %.java
$(GEN_CLASSFILES
)
125 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
126 $(SDK_JAVAC
) $(JAVAC_FLAGS
) -classpath
"$(SDK_CLASSPATH)" -d
$(APP1_CLASS_OUT
) $<
128 # rule for client/example application manifest file
129 $(APP1_GEN_OUT
)/%.mf
:
130 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
131 @echo Main-Class
: com.sun.star.lib.loader.Loader
> $@
133 @echo Name
: com
/sun
/star
/lib
/loader
/Loader.class
>> $@
134 @echo Application-Class
: $*>> $@
136 # rule for client/example application jar file
137 $(APP1_JAR
) : $(APP1_JAR_MANIFEST
) $(APP1_CLASS_OUT
)/$(APP1_NAME
).class
$(GEN_CLASSFILES
)
138 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$@
))
139 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
140 $(SDK_JAR
) cvfm
$@
$< -C
$(APP1_CLASS_OUT
) .
141 +cd
$(subst /,$(PS
),$(SAMPLE_CLASS_OUT
)) && $(SDK_JAR
) uvf
$(@F
) $(GEN_CLASSFILENAMES
)
142 +$(SDK_JAR
) uvf
$@
$(SDK_JAVA_UNO_BOOTSTRAP_FILES
)
144 # rule for component jar file
145 $(COMP_JAR
) : $(COMP_JAR_MANIFEST
) $(COMP_CLASSFILES
)
146 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$@
))
147 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
148 $(SDK_JAR
) cvfm
$@
$< -C
$(COMP_CLASS_OUT
) .
149 +cd
$(subst /,$(PS
),$(SAMPLE_CLASS_OUT
)) && $(SDK_JAR
) uvf
$(@F
) $(GEN_CLASSFILENAMES
)
151 # rule for component package manifest
152 $(COMP_GEN_OUT
)/%/manifest.xml
:
153 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
154 @echo
$(OSEP
)?xml version
="$(QM)1.0$(QM)" encoding
="$(QM)UTF-8$(QM)"?
$(CSEP
) > $@
155 @echo
$(OSEP
)!DOCTYPE manifest
:manifest PUBLIC
"$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP
)>> $@
156 @echo
$(OSEP
)manifest
:manifest xmlns
:manifest
="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP
)>> $@
157 @echo
$(SQM
) $(SQM
)$(OSEP
)manifest
:file-entry manifest
:media-type
="$(QM)application/vnd.sun.star.uno-typelibrary;type=RDB$(QM)">> $@
158 @echo
$(SQM
) $(SQM
)manifest
:full-path
="$(QM)$(subst /META-INF,,$(subst $(SAMPLE_GEN_OUT)/,,$(@D))).uno.rdb$(QM)"/$(CSEP
)>> $@
159 @echo
$(SQM
) $(SQM
)$(OSEP
)manifest
:file-entry manifest
:media-type
="$(QM)application/vnd.sun.star.uno-components$(QM)">> $@
160 @echo
$(SQM
) $(SQM
)manifest
:full-path
="$(QM)$(COMP_NAME).components$(QM)"/$(CSEP
)>> $@
161 @echo
$(OSEP
)/manifest
:manifest
$(CSEP
) >> $@
163 # rule for component package file
164 $(COMP_PACKAGE
) : $(COMP_RDB
) $(COMP_JAR
) $(COMP_UNOPKG_MANIFEST
) $(COMP_NAME
).components
165 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$@
))
166 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
167 $(SDK_ZIP
) $@
$(COMP_NAME
).components
168 cd
$(subst /,$(PS
),$(COMP_GEN_OUT
)) && $(SDK_ZIP
) -u ..
/..
/..
/bin
/$(@F
) $(COMP_RDB_NAME
)
169 cd
$(subst /,$(PS
),$(SAMPLE_CLASS_OUT
)) && $(SDK_ZIP
) -u ..
/..
/bin
/$(@F
) $(COMP_JAR_NAME
)
170 cd
$(subst /,$(PS
),$(COMP_GEN_OUT
)) && $(SDK_ZIP
) -u ..
/..
/..
/bin
/$(@F
) META-INF
/manifest.xml
172 $(COMP_REGISTERFLAG
) : $(COMP_PACKAGE
)
173 ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
174 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$@
))
175 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
176 $(DEPLOYTOOL
) $(COMP_PACKAGE_URL
)
177 @echo flagged
> $(subst /,$(PS
),$@
)
179 @echo
--------------------------------------------------------------------------------
180 @echo If you want to
install your component automatically
, please set the environment
181 @echo variable SDK_AUTO_DEPLOYMENT
= YES. But note that auto deployment is only
182 @echo possible if no office instance is running.
183 @echo
--------------------------------------------------------------------------------
186 JavaMinimalComponentExample
: $(COMP_REGISTERFLAG
) $(APP1_JAR
)
187 @echo
--------------------------------------------------------------------------------
188 @echo Please use the following command to execute the example
!
190 @echo
$(MAKE
) $(APP1_NAME
).run
192 @echo The
$(COMP_NAME
) component was installed if SDK_AUTO_DEPLOYMENT
= YES.
193 @echo You can use this component inside your office installation
, see the example
195 @echo
--------------------------------------------------------------------------------
197 %.run
: $(SAMPLE_CLASS_OUT
)/%.jar
198 $(SDK_JAVA
) -Dcom.sun.star.lib.loader.unopath
="$(OFFICE_PROGRAM_PATH)" -jar
$<
202 -$(DELRECURSIVE
) $(subst /,$(PS
),$(SAMPLE_CLASS_OUT
))
203 -$(DELRECURSIVE
) $(subst /,$(PS
),$(SAMPLE_GEN_OUT
))
204 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$(COMP_PACKAGE_URL
)))