author | dsamersoff |
Thu, 17 Oct 2013 16:08:01 +0400 | |
changeset 21069 | 728330d2593a |
parent 15324 | 74584166bb07 |
permissions | -rw-r--r-- |
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
1 |
# |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
2 |
# Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
4 |
# |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
10 |
# |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
15 |
# accompanied this code). |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
16 |
# |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
20 |
# |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
23 |
# questions. |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
24 |
# |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
25 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
26 |
# |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
27 |
# Makefile for building jabswitch.exe |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
28 |
# |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
29 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
30 |
BUILDDIR = ../.. |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
31 |
PROGRAM = jabswitch |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
32 |
include $(BUILDDIR)/common/Defs.gmk |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
33 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
34 |
# Indicate we want the C++ compiler to do the linking. |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
35 |
CPLUSPLUSLIBRARY=true |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
36 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
37 |
VERSIONINFO_RESOURCE = $(CLOSED_PLATFORM_SRC)/native/sun/bridge/AccessBridgeStatusWindow.rc |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
38 |
VERSIONRES = $(TEMPDIR)/AccessBridgeStatusWindow.res |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
39 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
40 |
JAB_EXE= $(TEMPDIR)/jabswitch.exe |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
41 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
42 |
JAB_SRC = $(CLOSED_PLATFORM_SRC)/native/sun/bridge/jabswitch.cpp |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
43 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
44 |
JAB_MANIFEST_INP = $(CLOSED_PLATFORM_SRC)/native/sun/bridge/jabswitch.manifest |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
45 |
JAB_MANIFEST_OUT = $(TEMPDIR)/jabswitch.exe.intermediate.manifest |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
46 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
47 |
RC_FLAGS += /fo "$(VERSIONRES)" |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
48 |
OTHER_CPPFLAGS += /MD /Fo"$(TEMPDIR)/" /Fd"$(TEMPDIR)/" /analyze- /Od /Gd /nologo /D "WIN32" /D "_WINDOWS" /D "_UNICODE" /D "UNICODE" /RTC1 /W3 /ZI /Zc:wchar_t /EHsc |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
49 |
LDDFLAGS += Advapi32.lib Version.lib User32.lib |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
50 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
51 |
all: buildexe copyfilejab |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
52 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
53 |
buildexe : |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
54 |
$(CD) $(TEMPDIR) |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
55 |
$(RC) $(RC_FLAGS) $(VERSIONINFO_RESOURCE) |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
56 |
$(CC) $(CPPFLAGS) $(JAB_SRC) $(LDDFLAGS) $(VERSIONRES) -o $(JAB_EXE) |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
57 |
$(MT) /nologo /verbose /manifest $(JAB_MANIFEST_INP) /outputresource:$(JAB_EXE) |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
58 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
59 |
copyfilejab : |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
60 |
$(CP) $(JAB_EXE) $(BINDIR) |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
61 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
62 |
vpath %.cpp $(CLOSED_PLATFORM_SRC)/native/sun/bridge |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
diff
changeset
|
63 |
vpath %.rc $(CLOSED_PLATFORM_SRC)/native/sun/bridge |