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 Database SDBC driver skeleton example of the Developers Guide.
38 SETTINGS
=$(PRJ
)/settings
40 include $(SETTINGS
)/settings.mk
41 include $(SETTINGS
)/std.mk
43 # Define non-platform/compiler specific settings
44 COMP_NAME
=DatabaseSDBCDriverSkeleton
45 COMP_IMPL_NAME
=$(COMP_NAME
).uno.
$(SHAREDLIB_EXT
)
46 COMP_LIBRARY
=$(SHAREDLIB_OUT
)/$(COMP_IMPL_NAME
)
47 OUT_COMP_INC
=$(OUT_INC
)/$(COMP_NAME
)
48 OUT_COMP_MISC
=$(OUT_MISC
)/$(COMP_NAME
)
49 OUT_COMP_SLO
=$(OUT_SLO
)/$(COMP_NAME
)
50 COMP_PACKAGE
= $(OUT_BIN
)/$(COMP_NAME
).
$(UNOOXT_EXT
)
51 COMP_PACKAGE_URL
= $(subst \\,\
,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
52 COMP_UNOPKG_MANIFEST
= $(OUT_COMP_MISC
)/$(COMP_NAME
)/META-INF
/manifest.xml
53 COMP_COMPONENTS
= $(OUT_COMP_MISC
)/$(COMP_NAME
).components
55 COMP_REGISTERFLAG
= $(OUT_COMP_MISC
)/devguide_
$(COMP_NAME
)_register_component.flag
57 CXXFILES
= SConnection.
cxx \
58 SDatabaseMetaData.
cxx \
61 SPreparedStatement.
cxx \
63 SResultSetMetaData.
cxx \
67 SLOFILES
= $(patsubst %.
cxx,$(OUT_COMP_SLO
)/%.
$(OBJ_EXT
),$(CXXFILES
))
72 DatabaseSDBCDriverSkeletonExample
74 include $(SETTINGS
)/stdtarget.mk
76 $(OUT_COMP_SLO
)/%.
$(OBJ_EXT
) : %.
cxx $(SDKTYPEFLAG
)
77 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
78 $(CC
) $(CC_FLAGS
) $(CC_INCLUDES
) $(STL_INCLUDES
) -I
$(OUT_COMP_INC
) $(CC_DEFINES
) $(CC_OUTPUT_SWITCH
)$(subst /,$(PS
),$@
) $<
81 $(SHAREDLIB_OUT
)/%.
$(SHAREDLIB_EXT
) : $(SLOFILES
)
82 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
83 -$(MKDIR
) $(subst /,$(PS
),$(OUT_COMP_MISC
))
84 $(LINK
) $(COMP_LINK_FLAGS
) /OUT
:$@ \
85 /MAP
:$(OUT_COMP_MISC
)/$(COMP_NAME
).map
$(SLOFILES
) \
86 $(CPPUHELPERLIB
) $(CPPULIB
) $(SALLIB
) msvcprt.lib
$(LIBO_SDK_LDFLAGS_STDLIBS
)
89 $(SHAREDLIB_OUT
)/%.
$(SHAREDLIB_EXT
) : $(SLOFILES
)
90 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
91 $(LINK
) $(COMP_LINK_FLAGS
) $(LINK_LIBS
) -o
$@
$(SLOFILES
) \
92 $(CPPUHELPERLIB
) $(CPPULIB
) $(SALLIB
) $(STC
++LIB
)
94 $(INSTALL_NAME_URELIBS
) $@
98 # rule for component package manifest
99 $(OUT_COMP_MISC
)/%/manifest.xml
:
100 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
101 @echo
$(OSEP
)?xml version
="$(QM)1.0$(QM)" encoding
="$(QM)UTF-8$(QM)"?
$(CSEP
) > $@
102 @echo
$(OSEP
)!DOCTYPE manifest
:manifest PUBLIC
"$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP
) >> $@
103 @echo
$(OSEP
)manifest
:manifest xmlns
:manifest
="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP
) >> $@
104 @echo
$(SQM
) $(SQM
)$(OSEP
)manifest
:file-entry manifest
:media-type
="$(QM)application/vnd.sun.star.uno-components;platform=$(UNOPKG_PLATFORM)$(QM)">> $@
105 @echo
$(SQM
) $(SQM
)manifest
:full-path
="$(QM)$(COMP_NAME).components$(QM)"/$(CSEP
)>> $@
106 @echo
$(OSEP
)/manifest
:manifest
$(CSEP
) >> $@
109 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
110 @echo
$(OSEP
)?xml version
="$(QM)1.0$(QM)" encoding
="$(QM)UTF-8$(QM)"?
$(CSEP
) > $@
111 @echo
$(OSEP
)components xmlns
="$(QM)http://openoffice.org/2010/uno-components$(QM)"$(CSEP
) >> $@
112 @echo
$(SQM
) $(SQM
)$(OSEP
)component loader
="$(QM)com.sun.star.loader.SharedLibrary$(QM)" uri
="$(QM)$(UNOPKG_PLATFORM)/$(COMP_IMPL_NAME)$(QM)"$(CSEP
) >> $@
113 @echo
$(SQM
) $(SQM
)$(OSEP
)implementation name
="$(QM)com.sun.star.comp.sdbc.SkeletonDriver$(QM)"$(CSEP
) >> $@
114 @echo
$(SQM
) $(SQM
)$(OSEP
)service name
="$(QM)com.sun.star.sdbc.Driver$(QM)"/$(CSEP
) >> $@
115 @echo
$(SQM
) $(SQM
)$(OSEP
)/implementation
$(CSEP
) >> $@
116 @echo
$(SQM
) $(SQM
)$(OSEP
)/component
$(CSEP
) >> $@
117 @echo
$(OSEP
)/components
$(CSEP
) >> $@
119 $(COMP_PACKAGE
) : $(COMP_LIBRARY
) $(COMP_UNOPKG_MANIFEST
) $(COMP_COMPONENTS
)
120 -$(MKDIR
) $(subst /,$(PS
),$(@D
)) && $(DEL
) $(subst \\,\
,$(subst /,$(PS
),$@
))
121 -$(MKDIR
) $(subst /,$(PS
),$(OUT_COMP_MISC
)/$(UNOPKG_PLATFORM
))
122 $(COPY
) $(subst /,$(PS
),$<) $(subst /,$(PS
),$(OUT_COMP_MISC
)/$(UNOPKG_PLATFORM
))
123 cd
$(subst /,$(PS
),$(OUT_COMP_MISC
)) && $(SDK_ZIP
) ..
/..
/bin
/$(@F
) $(COMP_NAME
).components
124 cd
$(subst /,$(PS
),$(OUT_COMP_MISC
)) && $(SDK_ZIP
) -u ..
/..
/bin
/$(@F
) $(UNOPKG_PLATFORM
)/$(<F
)
125 cd
$(subst /,$(PS
),$(OUT_COMP_MISC
)/$(subst .
$(UNOOXT_EXT
),,$(@F
))) && $(SDK_ZIP
) -u ..
/..
/..
/bin
/$(@F
) META-INF
/manifest.xml
127 $(COMP_REGISTERFLAG
) : $(COMP_PACKAGE
)
128 ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
129 -$(MKDIR
) $(subst /,$(PS
),$(@D
))
130 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$@
))
131 $(DEPLOYTOOL
) $(COMP_PACKAGE_URL
)
132 @echo flagged
> $(subst /,$(PS
),$@
)
134 @echo
--------------------------------------------------------------------------------
135 @echo If you want to
install your component automatically
, please set the environment
136 @echo variable SDK_AUTO_DEPLOYMENT
= YES. But note that auto deployment is only
137 @echo possible if no office instance is running.
138 @echo
--------------------------------------------------------------------------------
141 DatabaseSDBCDriverSkeletonExample
: $(COMP_REGISTERFLAG
)
142 @echo
--------------------------------------------------------------------------------
143 @echo The Database SDBC skeleton driver component was installed if SDK_AUTO_DEPLOYMENT
= YES.
144 @echo You can use this component inside your office installation
, see the example
145 @echo description and the howto of implementing a sdbc driver.
146 @echo
--------------------------------------------------------------------------------
150 -$(DELRECURSIVE
) $(subst /,$(PS
),$(OUT_COMP_INC
))
151 -$(DELRECURSIVE
) $(subst /,$(PS
),$(OUT_COMP_MISC
))
152 -$(DELRECURSIVE
) $(subst /,$(PS
),$(OUT_COMP_SLO
))
153 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$(COMP_LIBRARY
)))
154 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$(COMP_COMPONENTS
)))
155 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$(COMP_REGISTERFLAG
)))
156 -$(DEL
) $(subst \\,\
,$(subst /,$(PS
),$(COMP_PACKAGE_URL
)))