summaryrefslogtreecommitdiff
path: root/toolkit/test/accessibility/makefile.mk
blob: 30fc1f4a2b916346e0a92dc8456c6fe5dafdaea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# This is the dmake version.


# 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
#   and file URL.
PORT_NUMBER = 5678
FILE_NAME = "file:///tmp/impress-test-document.sxi"
#   The JAR_PATH points to the jar files of your local office installation.
JAR_PATH = $(STAR_RESOURCEPATH)$/



# The following variables probably don't need to be changed.
JAVAC = javac
JAVA = java



# The rest of this makefile should not need to be touched.

all : AccessibilityWorkBench

JAR_FILES =		\
    unoil.jar	\
    sandbox.jar	\
    ridl.jar	\
    jurt.jar	\
    juh.jar		\
    java_uno.jar

JAVA_FILES = \
    AccessibilityWorkBench.java	\
    AccessibleObject.java		\
    AccessibilityTree.java		\
    Canvas.java					\
    InformationWriter.java		\
    FrameActionListener.java	\
    MessageInterface.java		\
    OfficeConnection.java		\
    Print.java					\
    SimpleOffice.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) $<

AccessibilityWorkBench : $(JAVA_FILES:b:+".class")

# Create a jar file of all files neccessary to build and run the work bench.
dist:
    jar -cf AccessibilityWorkBench.jar \
        $(JAVA_FILES)\
        $(JAVA_FILES:b:+".class")

# Example of how to run the work bench.
run:
    $(JAVA) -classpath $(CLASSPATH) AccessibilityWorkBench -p $(PORT_NUMBER) -f $(FILE_NAME)