tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / odk / examples / DevelopersGuide / Components / Addons / JobsAddon / Makefile
blob6ee3481fcff2dfb782806730322cc5e70cdc2c4e
1 #*************************************************************************
3 # The Contents of this file are made available subject to the terms of
4 # the BSD license.
5 #
6 # Copyright 2000, 2010 Oracle and/or its affiliates.
7 # All rights reserved.
9 # Redistribution and use in source and binary forms, with or without
10 # modification, are permitted provided that the following conditions
11 # are met:
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 DevGuide Jobs Addon component example of the SDK.
37 PRJ=../../../../..
38 SETTINGS=$(PRJ)/settings
40 include $(SETTINGS)/settings.mk
41 include $(SETTINGS)/std.mk
43 # Define non-platform/compiler specific settings
44 COMP_NAME=AsyncJob
45 OUT_COMP_CLASS=$(OUT_CLASS)/$(COMP_NAME)
46 OUT_COMP_MISC=$(OUT_MISC)/$(COMP_NAME)
47 COMP_PACKAGE=$(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT)
48 COMP_PACKAGE_URL=$(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
49 COMP_JAR_NAME=$(COMP_NAME).uno.jar
50 COMP_JAR=$(OUT_CLASS)/$(COMP_JAR_NAME)
51 COMP_MANIFESTFILE=$(OUT_COMP_CLASS)/$(COMP_NAME).uno.Manifest
52 COMP_UNOPKG_MANIFEST = $(OUT_COMP_CLASS)/$(COMP_NAME)/META-INF/manifest.xml
53 REGISTERFLAG=$(OUT_COMP_MISC)$(PS)java_$(COMP_NAME)_register_component.flag
54 COMP_COMPONENTS=$(COMP_NAME).components
56 JAVAFILES = AsyncJob.java
58 CLASSFILES = $(patsubst %.java,$(OUT_COMP_CLASS)/%.class,$(JAVAFILES))
60 SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
61 $(PATH_SEPARATOR)$(OUT_COMP_CLASS))
64 # Targets
65 .PHONY: ALL
66 ALL : DevGuideJobsAddon
68 include $(SETTINGS)/stdtarget.mk
70 $(OUT_COMP_CLASS)/%.Manifest :
71 -$(MKDIR) $(subst /,$(PS),$(@D))
72 @echo RegistrationClassName: $(basename $(basename $(@F)))> $@
74 $(CLASSFILES) : $(JAVAFILES)
75 -$(MKDIR) $(subst /,$(PS),$(@D))
76 $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $(JAVAFILES)
78 # rule for component jar file
79 $(COMP_JAR) : $(COMP_MANIFESTFILE) $(CLASSFILES)
80 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
81 -$(MKDIR) $(subst /,$(PS),$(@D))
82 $(SDK_JAR) cvfm $@ $< -C $(OUT_COMP_CLASS) .
84 # rule for component package manifest
85 $(OUT_COMP_CLASS)/%/manifest.xml :
86 -$(MKDIR) $(subst /,$(PS),$(@D))
87 @echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@
88 @echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@
89 @echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@
90 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
91 @echo $(SQM) $(SQM)manifest:full-path="$(QM)Addons.xcu$(QM)"/$(CSEP) >> $@
92 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
93 @echo $(SQM) $(SQM)manifest:full-path="$(QM)Jobs.xcu$(QM)"/$(CSEP) >> $@
94 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-components$(QM)">> $@
95 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(COMP_COMPONENTS)$(QM)"/$(CSEP)>> $@
96 @echo $(OSEP)/manifest:manifest$(CSEP) >> $@
98 # rule for component package file
99 $(COMP_PACKAGE) : $(COMP_JAR) Addons.xcu Jobs.xcu $(COMP_UNOPKG_MANIFEST) $(COMP_COMPONENTS)
100 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
101 -$(MKDIR) $(subst /,$(PS),$(@D))
102 cd $(subst /,$(PS),$(OUT_CLASS)) && $(SDK_ZIP) ../bin/$(@F) $(<F)
103 $(SDK_ZIP) -u $@ Addons.xcu Jobs.xcu $(COMP_COMPONENTS)
104 cd $(subst /,$(PS),$(OUT_COMP_CLASS)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
107 $(REGISTERFLAG) : $(COMP_PACKAGE)
108 ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
109 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
110 -$(MKDIR) $(subst /,$(PS),$(@D))
111 $(DEPLOYTOOL) $(COMP_PACKAGE_URL)
112 @echo flagged > $(subst /,$(PS),$@)
113 else
114 @echo --------------------------------------------------------------------------------
115 @echo If you want to install your component automatically, please set the environment
116 @echo variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only
117 @echo possible if no office instance is running.
118 @echo --------------------------------------------------------------------------------
119 endif
121 DevGuideJobsAddon : $(REGISTERFLAG)
122 @echo --------------------------------------------------------------------------------
123 @echo The "$(QM)AsyncJob$(QM)" addon component was installed if SDK_AUTO_DEPLOYMENT = YES.
124 @echo You can use this component inside your office installation, see the example
125 @echo description.
126 @echo --------------------------------------------------------------------------------
128 %.run: $(OUT_COMP_CLASS)/%.class
129 $(SDK_JAVA) -classpath "$(SDK_CLASSPATH)" $(basename $@)
131 .PHONY: clean
132 clean :
133 -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_CLASS))
134 -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_MISC))
135 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL)))
136 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_JAR)))