1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22# Builds the OfficeDevClipboard example of the Developers Guide.
23
24PRJ=../../../..
25SETTINGS=$(PRJ)/settings
26
27include $(SETTINGS)/settings.mk
28include $(SETTINGS)/std.mk
29include $(SETTINGS)/dk.mk
30
31# Define non-platform/compiler specific settings
32EXAMPLE_NAME=OfficeDevTerminationTest
33OUT_APP_CLASS = $(OUT_CLASS)/$(EXAMPLE_NAME)
34
35APP1_NAME=TerminationTest
36APP1_JAR=$(OUT_APP_CLASS)/$(APP1_NAME).jar
37
38APP1_JAVAFILES  = \
39	   TerminateListener.java \
40	   TerminationTest.java
41
42APP1_CLASSFILES = $(patsubst %.java,$(OUT_APP_CLASS)/%.class,$(APP1_JAVAFILES))
43APP1_CLASSNAMES = $(patsubst %.java,%.class,$(APP1_JAVAFILES))
44
45SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
46		$(PATH_SEPARATOR)$(OUT_APP_CLASS))
47
48
49# Targets
50.PHONY: ALL
51ALL : $(EXAMPLE_NAME)
52
53include $(SETTINGS)/stdtarget.mk
54
55$(APP1_CLASSFILES) : $(APP1_JAVAFILES)
56	-$(MKDIR) $(subst /,$(PS),$(@D))
57	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -d $(OUT_APP_CLASS) $^
58
59$(OUT_APP_CLASS)/%.mf :
60	-$(MKDIR) $(subst /,$(PS),$(@D))
61	@echo Main-Class: com.sun.star.lib.loader.Loader> $@
62	$(ECHOLINE)>> $@
63	@echo Name: com/sun/star/lib/loader/Loader.class>> $@
64	@echo Application-Class: $*>> $@
65
66$(APP1_JAR) : $(OUT_APP_CLASS)/$(APP1_NAME).mf $(APP1_CLASSFILES)
67	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
68	-$(MKDIR) $(subst /,$(PS),$(@D))
69	+cd $(subst /,$(PS),$(OUT_APP_CLASS)) && $(SDK_JAR) cvfm $(@F) $(basename $(@F)).mf $(APP1_CLASSNAMES)
70	+$(SDK_JAR) uvf $@ $(SDK_JAVA_UNO_BOOTSTRAP_FILES)
71
72$(EXAMPLE_NAME) : $(APP1_JAR)
73	@echo --------------------------------------------------------------------------------
74	@echo Please use the following command to execute the example!
75	@echo -
76	@echo $(MAKE) $(APP1_NAME).run
77	@echo --------------------------------------------------------------------------------
78
79%.run: $(OUT_APP_CLASS)/%.jar
80	$(SDK_JAVA) -Dcom.sun.star.lib.loader.unopath="$(OFFICE_PROGRAM_PATH)" -jar $<
81
82.PHONY: clean
83clean :
84	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_APP_CLASS))
85