merge the formfield patch from ooo-build
[ooovba.git] / toolkit / test / accessibility / ov / makefile.mk
blobaaa2692092d88d0d8cf8a40ac8c9c43fd46e35c8
1 # This is the dmake version.
3 # copied from settings.mk
4 SOLARBINDIR=$(SOLARVERSION)$/$(INPATH)$/bin$(UPDMINOREXT)
6 # Please modify the following lines to match your environment:
7 # If you use the run: target at the end of the file, then adapt port number.
8 PORT_NUMBER = 5678
10 # The following variables probably don't need to be changed.
11 JAVAC = javac
12 JAVA = java
13 # The JAR_PATH points to the jar files of your local office installation.
14 JAR_PATH = $(SOLARBINDIR)$/
17 # The rest of this makefile should not need to be touched.
19 all : ov
21 JAR_FILES = \
22 unoil.jar \
23 ridl.jar \
24 jurt.jar \
25 juh.jar \
26 java_uno.jar
28 JAVA_FILES = \
29 ov/ObjectViewContainer.java \
30 ov/ObjectView.java \
31 ov/ListeningObjectView.java \
32 ov/ContextView.java \
33 ov/FocusView.java \
34 ov/SelectionView.java \
35 ov/TextView.java
36 # ov/StateSetView.java \
39 JAVA_CLASSPATHS := \
40 . .. \
41 $(foreach,i,$(JAR_FILES) $(JAR_PATH)$i) \
42 $(CLASSPATH)
44 CLASSPATH !:=$(JAVA_CLASSPATHS:t$(PATH_SEPERATOR))
46 JFLAGS = -deprecation -classpath $(CLASSPATH)
48 %.class : %.java
49 $(JAVAC) $(JFLAGS) $<
51 ov : $(JAVA_FILES:b:+".class")
53 check: all