[WK2] selection does not disappear after coping the text
[framework/web/webkit-efl.git] / LayoutTests / java / Makefile
1 # Copyright (C) 2010 Apple Inc. All rights reserved.
2 #
3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions
5 # are met:
6 #
7 # 1. Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer.
9 #
10 # 2. Redistributions in binary form must reproduce the above copyright
11 # notice, this list of conditions and the following disclaimer in the
12 # documentation and/or other materials provided with the distribution.
13 #
14 # THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS “AS IS”
15 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
16 # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
18 # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
19 # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
20 # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21 # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
22 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
23 # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
24 # THE POSSIBILITY OF SUCH DAMAGE.
25
26 ifeq ($(findstring 10.4, $(shell sw_vers -productVersion)), 10.4)
27         USE_NORMAL_PLUGIN_JAR_PATH = 1
28 endif
29
30 ifeq ($(findstring 10.5, $(shell sw_vers -productVersion)), 10.5)
31         USE_NORMAL_PLUGIN_JAR_PATH = 1
32 endif
33
34 JC = javac
35 ifeq ($(USE_NORMAL_PLUGIN_JAR_PATH), 1)
36         CLASSPATH = /System/Library/Frameworks/JavaVM.framework/Home/lib/plugin.jar
37 else
38         # The above path works on Tiger and Leopard, but is a broken link on SnowLeopard, <rdar://7578937>.
39     CLASSPATH = /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/Deploy.bundle/Contents/Resources/Java/plugin.jar
40 endif
41 JFLAGS = -classpath $(CLASSPATH):jstests.jar
42 .SUFFIXES: .java .class
43
44 .java.class:
45         $(JC) $(JFLAGS) $*.java
46
47 CLASSES = $(wildcard *.java)
48
49 default: classes
50
51 classes: $(CLASSES:.java=.class)
52
53 clean:
54         $(RM) *.class