tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / odk / examples / DevelopersGuide / BasicAndDialogs / CreatingDialogs / Makefile
blob3af249f9d4b01a36dda7048d6088b4b2fe965610
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 CreatingDialogs example of the Developers Guide.
37 PRJ=../../../..
38 SETTINGS=$(PRJ)/settings
40 include $(SETTINGS)/settings.mk
41 include $(SETTINGS)/std.mk
43 # Define non-platform/compiler specific settings
44 EXAMPLE_NAME=BaDCreatingDialogsExample
45 OUT_COMP_CLASS = $(OUT_CLASS)/$(EXAMPLE_NAME)
47 COMPONENT_NAME=SampleDialog
48 COMPONENT_PACKAGE = $(OUT_BIN)/$(COMPONENT_NAME).$(UNOOXT_EXT)
49 COMPONENT_PACKAGE_URL = $(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMPONENT_NAME).$(UNOOXT_EXT)")
50 COMPONENT_JAR_NAME = $(COMPONENT_NAME).uno.jar
51 COMPONENT_JAR = $(OUT_CLASS)/$(COMPONENT_JAR_NAME)
52 COMPONENT_MANIFESTFILE = $(OUT_COMP_CLASS)/$(COMPONENT_NAME).uno.Manifest
53 COMPONENT_UNOPKG_MANIFEST = $(OUT_COMP_CLASS)/$(COMPONENT_NAME)/META-INF/manifest.xml
54 REGISTERFLAG = $(OUT_MISC)/devguide_basicanddialogs_creatingdialogs_register_component.flag
56 # often the java files are structured in a hierarchy similar to the package,
57 # for the example we know the package
58 PACKAGE = com.sun.star.comp.sdk.examples
60 JAVAFILES = \
61 SampleDialog.java
63 CLASSFILES = $(patsubst %.java,$(OUT_COMP_CLASS)/%.class,$(JAVAFILES))
65 $(COMPONENT_NAME)_CLASSFILES = SampleDialog.class \
67 SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
68 $(PATH_SEPARATOR)$(OUT_COMP_CLASS))
71 # Targets
72 .PHONY: ALL
73 ALL: $(EXAMPLE_NAME)
75 include $(SETTINGS)/stdtarget.mk
77 $(OUT_COMP_CLASS)/%.Manifest :
78 -$(MKDIR) $(subst /,$(PS),$(@D))
79 @echo RegistrationClassName: $(PACKAGE).$(basename $(basename $(@F)))> $@
81 $(OUT_COMP_CLASS)/%.class : %.java
82 -$(MKDIR) $(subst /,$(PS),$(@D))
83 $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_COMP_CLASS) $<
85 # rule for component jar file
86 $(COMPONENT_JAR) : $(COMPONENT_MANIFESTFILE) $(CLASSFILES)
87 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
88 -$(MKDIR) $(subst /,$(PS),$(@D))
89 $(SDK_JAR) cvfm $@ $< -C $(OUT_COMP_CLASS) .
91 # rule for component package manifest
92 $(OUT_COMP_CLASS)/%/manifest.xml :
93 -$(MKDIR) $(subst /,$(PS),$(@D))
94 @echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@
95 @echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@
96 @echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@
97 @echo $(SQM) $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-component;type=Java$(QM)" >> $@
98 @echo $(SQM) $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(OUT_COMP_CLASS)/,,$(@D))).uno.jar$(QM)"/$(CSEP) >> $@
99 @echo $(OSEP)/manifest:manifest$(CSEP) >> $@
101 # rule for component package file
102 $(COMPONENT_PACKAGE) : $(COMPONENT_JAR) $(COMPONENT_UNOPKG_MANIFEST)
103 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
104 -$(MKDIR) $(subst /,$(PS),$(@D))
105 cd $(subst /,$(PS),$(OUT_CLASS)) && $(SDK_ZIP) ../bin/$(@F) $(<F)
106 cd $(subst /,$(PS),$(OUT_COMP_CLASS)/$(subst .$(UNOOXT_EXT),,$(@F))) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
108 $(REGISTERFLAG) : $(COMPONENT_PACKAGE)
109 ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
110 -$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
111 -$(MKDIR) $(subst /,$(PS),$(@D))
112 $(DEPLOYTOOL) $(COMPONENT_PACKAGE_URL)
113 @echo flagged > $(subst /,$(PS),$@)
114 else
115 @echo --------------------------------------------------------------------------------
116 @echo If you want to install your component automatically, please set the environment
117 @echo variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only
118 @echo possible if no office instance is running.
119 @echo --------------------------------------------------------------------------------
120 endif
122 $(EXAMPLE_NAME) : $(REGISTERFLAG)
123 @echo --------------------------------------------------------------------------------
124 @echo The SampleDialog Java component was installed if SDK_AUTO_DEPLOYMENT = YES.
125 @echo Please load the "$(QM)CreatingDialogs.odt$(QM)" document to use the component or use it
126 @echo by yourself in your office installation, see the example description.
127 @echo -
128 @echo $(MAKE) CreatingDialogs.odt.load
129 @echo --------------------------------------------------------------------------------
131 CreatingDialogs.odt.load : $(REGISTERFLAG)
132 "$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@)
134 .PHONY: clean
135 clean :
136 -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_CLASS))
137 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMPONENT_PACKAGE_URL)))
138 -$(DEL) $(subst \\,\,$(subst /,$(PS),$(REGISTERFLAG)))