xref: /trunk/main/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile (revision 4437c02e18a852c4a5e7d7e7c198180f06b2b9fc)
1*122c3632SJürgen Schmidt#**************************************************************
2cdf0e10cSrcweir#
3*122c3632SJürgen Schmidt#  Licensed to the Apache Software Foundation (ASF) under one
4*122c3632SJürgen Schmidt#  or more contributor license agreements.  See the NOTICE file
5*122c3632SJürgen Schmidt#  distributed with this work for additional information
6*122c3632SJürgen Schmidt#  regarding copyright ownership.  The ASF licenses this file
7*122c3632SJürgen Schmidt#  to you under the Apache License, Version 2.0 (the
8*122c3632SJürgen Schmidt#  "License"); you may not use this file except in compliance
9*122c3632SJürgen Schmidt#  with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir#
11*122c3632SJürgen Schmidt#    http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir#
13*122c3632SJürgen Schmidt#  Unless required by applicable law or agreed to in writing,
14*122c3632SJürgen Schmidt#  software distributed under the License is distributed on an
15*122c3632SJürgen Schmidt#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*122c3632SJürgen Schmidt#  KIND, either express or implied.  See the License for the
17*122c3632SJürgen Schmidt#  specific language governing permissions and limitations
18*122c3632SJürgen Schmidt#  under the License.
19cdf0e10cSrcweir#
20*122c3632SJürgen Schmidt#**************************************************************
21cdf0e10cSrcweir
22cdf0e10cSrcweir# Builds the OfficeDevDestopEnvironment example of the Developers Guide.
23cdf0e10cSrcweir
24cdf0e10cSrcweirPRJ=../../../..
25cdf0e10cSrcweirSETTINGS=$(PRJ)/settings
26cdf0e10cSrcweir
27cdf0e10cSrcweirinclude $(SETTINGS)/settings.mk
28cdf0e10cSrcweirinclude $(SETTINGS)/std.mk
29cdf0e10cSrcweirinclude $(SETTINGS)/dk.mk
30cdf0e10cSrcweir
31cdf0e10cSrcweir# Define non-platform/compiler specific settings
32cdf0e10cSrcweirEXAMPLE_NAME=OfficeDevDesktopEnv
33cdf0e10cSrcweirOUT_APP_CLASS = $(OUT_CLASS)/$(EXAMPLE_NAME)
34cdf0e10cSrcweir
35cdf0e10cSrcweirAPP1_NAME=DesktopExample
36cdf0e10cSrcweirAPP1_JAR=$(OUT_APP_CLASS)/$(APP1_NAME).jar
37cdf0e10cSrcweir
38cdf0e10cSrcweirAPP1_JAVAFILES  = \
39cdf0e10cSrcweir           CustomizeView.java \
40cdf0e10cSrcweir           Desk.java \
41cdf0e10cSrcweir           DocumentView.java \
42cdf0e10cSrcweir           FunctionHelper.java \
43cdf0e10cSrcweir           Interceptor.java \
44cdf0e10cSrcweir           IOnewayLink.java \
45cdf0e10cSrcweir           IShutdownListener.java \
46cdf0e10cSrcweir           JavaWindowPeerFake.java \
47cdf0e10cSrcweir           NativeView.java \
48cdf0e10cSrcweir           OfficeConnect.java \
49cdf0e10cSrcweir           OnewayExecutor.java \
50cdf0e10cSrcweir           StatusListener.java \
51cdf0e10cSrcweir           StatusView.java \
52cdf0e10cSrcweir           ViewContainer.java
53cdf0e10cSrcweir
54cdf0e10cSrcweirAPP1_CLASSFILES = $(patsubst %.java,$(OUT_APP_CLASS)/%.class,$(APP1_JAVAFILES))
55cdf0e10cSrcweirAPP1_CLASSNAMES = $(patsubst %.java,%.class,$(APP1_JAVAFILES)) \
56cdf0e10cSrcweir        CustomizeView$(QUOTE)$$ClickListener.class \
57cdf0e10cSrcweir        DocumentView$(QUOTE)$$1.class \
58cdf0e10cSrcweir        DocumentView$(QUOTE)$$Reactor.class
59cdf0e10cSrcweir
60cdf0e10cSrcweir
61cdf0e10cSrcweirSDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
62cdf0e10cSrcweir        $(PATH_SEPARATOR)$(OUT_APP_CLASS))
63cdf0e10cSrcweir
64cdf0e10cSrcweirifeq "$(OS)" "WIN"
65cdf0e10cSrcweirSUBDIR= nativelib/windows
66cdf0e10cSrcweirelse
67cdf0e10cSrcweirSUBDIR= nativelib/unix
68cdf0e10cSrcweirendif
69cdf0e10cSrcweir
70cdf0e10cSrcweir# Targets
71cdf0e10cSrcweir.PHONY: ALL
72cdf0e10cSrcweirALL : $(SUBDIR) \
73cdf0e10cSrcweir    $(EXAMPLE_NAME)
74cdf0e10cSrcweir
75cdf0e10cSrcweirinclude $(SETTINGS)/stdtarget.mk
76cdf0e10cSrcweir
77cdf0e10cSrcweir.PHONY : $(SUBDIR)
78cdf0e10cSrcweir$(SUBDIR) :
79cdf0e10cSrcweir    $(MAKE) -C $@
80cdf0e10cSrcweir
81cdf0e10cSrcweir$(APP1_CLASSFILES) : $(APP1_JAVAFILES)
82cdf0e10cSrcweir    -$(MKDIR) $(subst /,$(PS),$(@D))
83cdf0e10cSrcweir    $(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_APP_CLASS) $(APP1_JAVAFILES)
84cdf0e10cSrcweir
85cdf0e10cSrcweir$(OUT_APP_CLASS)/$(APP1_NAME).mf :
86cdf0e10cSrcweir    -$(MKDIR) $(subst /,$(PS),$(@D))
87cdf0e10cSrcweir    @echo Main-Class: com.sun.star.lib.loader.Loader> $@
88cdf0e10cSrcweir    $(ECHOLINE)>> $@
89cdf0e10cSrcweir    @echo Name: com/sun/star/lib/loader/Loader.class>> $@
90cdf0e10cSrcweir    @echo Application-Class: Desk>> $@
91cdf0e10cSrcweir
92cdf0e10cSrcweir$(APP1_JAR) : $(OUT_APP_CLASS)/$(APP1_NAME).mf $(APP1_CLASSFILES)
93cdf0e10cSrcweir    -$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
94cdf0e10cSrcweir    -$(MKDIR) $(subst /,$(PS),$(@D))
95cdf0e10cSrcweir    +cd $(subst /,$(PS),$(OUT_APP_CLASS)) && $(SDK_JAR) cvfm $(@F) $(basename $(@F)).mf $(APP1_CLASSNAMES)
96cdf0e10cSrcweir    +$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES)
97cdf0e10cSrcweir
98cdf0e10cSrcweir$(EXAMPLE_NAME) : $(APP1_JAR)
99cdf0e10cSrcweir    @echo --------------------------------------------------------------------------------
100cdf0e10cSrcweir    @echo Please use the following command to execute the example!
101cdf0e10cSrcweir    @echo -
102cdf0e10cSrcweir    @echo $(MAKE) DesktopExample.run
103cdf0e10cSrcweir    @echo ------
104cdf0e10cSrcweir    @echo If you want to run the $(JAR1_JAR) file please set your
105cdf0e10cSrcweir    @echo CLASSPATH = $(SDK_CLASSPATH)
106cdf0e10cSrcweir    @echo Start the example with jar -jar $(JAR1_JAR)
107cdf0e10cSrcweir    @echo --------------------------------------------------------------------------------
108cdf0e10cSrcweir
109cdf0e10cSrcweir%.run: $(OUT_APP_CLASS)/%.jar
110cdf0e10cSrcweir    $(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $<
111cdf0e10cSrcweir
112cdf0e10cSrcweir.PHONY: clean
113cdf0e10cSrcweirclean :
114cdf0e10cSrcweir    $(MAKE) -C $(SUBDIR) clean
115cdf0e10cSrcweir    -$(DELRECURSIVE) $(subst /,$(PS),$(OUT_APP_CLASS))
116