summaryrefslogtreecommitdiff
path: root/toolkit/test/accessibility/ov/makefile.mk
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/test/accessibility/ov/makefile.mk')
-rw-r--r--toolkit/test/accessibility/ov/makefile.mk51
1 files changed, 51 insertions, 0 deletions
diff --git a/toolkit/test/accessibility/ov/makefile.mk b/toolkit/test/accessibility/ov/makefile.mk
new file mode 100644
index 000000000000..56fb563eeee0
--- /dev/null
+++ b/toolkit/test/accessibility/ov/makefile.mk
@@ -0,0 +1,51 @@
+# This is the dmake version.
+
+# copied from settings.mk
+SOLARBINDIR=$(SOLARVERSION)$/$(INPATH)$/bin$(UPDMINOREXT)
+
+# Please modify the following lines to match your environment:
+# If you use the run: target at the end of the file, then adapt port number.
+PORT_NUMBER = 5678
+
+# The following variables probably don't need to be changed.
+JAVAC = javac
+JAVA = java
+# The JAR_PATH points to the jar files of your local office installation.
+JAR_PATH = $(SOLARBINDIR)$/
+
+
+# The rest of this makefile should not need to be touched.
+
+all : ov
+
+JAR_FILES = \
+ unoil.jar \
+ ridl.jar \
+ jurt.jar \
+ juh.jar \
+ java_uno.jar
+
+JAVA_FILES = \
+ ov/ObjectViewContainer.java \
+ ov/ObjectView.java \
+ ov/ListeningObjectView.java \
+ ov/ContextView.java \
+ ov/FocusView.java \
+ ov/SelectionView.java \
+ ov/TextView.java
+# ov/StateSetView.java \
+
+
+JAVA_CLASSPATHS := \
+ . .. \
+ $(foreach,i,$(JAR_FILES) $(JAR_PATH)$i) \
+ $(CLASSPATH)
+
+CLASSPATH !:=$(JAVA_CLASSPATHS:t$(PATH_SEPERATOR))
+
+JFLAGS = -deprecation -classpath $(CLASSPATH)
+
+%.class : %.java
+ $(JAVAC) $(JFLAGS) $<
+
+ov : $(JAVA_FILES:b:+".class")