1 | #
|
---|
2 | # Copyright (c) 1998, 2005, Oracle and/or its affiliates. All rights reserved.
|
---|
3 | # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
---|
4 | #
|
---|
5 | # This code is free software; you can redistribute it and/or modify it
|
---|
6 | # under the terms of the GNU General Public License version 2 only, as
|
---|
7 | # published by the Free Software Foundation. Oracle designates this
|
---|
8 | # particular file as subject to the "Classpath" exception as provided
|
---|
9 | # by Oracle in the LICENSE file that accompanied this code.
|
---|
10 | #
|
---|
11 | # This code is distributed in the hope that it will be useful, but WITHOUT
|
---|
12 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
---|
13 | # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
---|
14 | # version 2 for more details (a copy is included in the LICENSE file that
|
---|
15 | # accompanied this code).
|
---|
16 | #
|
---|
17 | # You should have received a copy of the GNU General Public License version
|
---|
18 | # 2 along with this work; if not, write to the Free Software Foundation,
|
---|
19 | # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
---|
20 | #
|
---|
21 | # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
---|
22 | # or visit www.oracle.com if you need additional information or have any
|
---|
23 | # questions.
|
---|
24 | #
|
---|
25 |
|
---|
26 | #
|
---|
27 | # Makefile for building the JDI interface and
|
---|
28 | # front-end implementation
|
---|
29 | #
|
---|
30 |
|
---|
31 | BUILDDIR = ../..
|
---|
32 | PACKAGE = com.sun.tools.jdi
|
---|
33 | PRODUCT = jpda
|
---|
34 | include $(BUILDDIR)/common/Defs.gmk
|
---|
35 |
|
---|
36 | #
|
---|
37 | # Java Files to compile are found automatically.
|
---|
38 | #
|
---|
39 | AUTO_FILES_JAVA_DIRS = com/sun/jdi com/sun/tools/jdi
|
---|
40 |
|
---|
41 | #
|
---|
42 | # Files that need to be copied
|
---|
43 | #
|
---|
44 | SERVICEDIR = $(CLASSBINDIR)/META-INF/services
|
---|
45 |
|
---|
46 | FILES_copy = \
|
---|
47 | $(SERVICEDIR)/com.sun.jdi.connect.spi.TransportService \
|
---|
48 | $(SERVICEDIR)/com.sun.jdi.connect.Connector
|
---|
49 |
|
---|
50 | #
|
---|
51 | # Resources
|
---|
52 | #
|
---|
53 | LOCALE_SET_DEFINITION = jdk
|
---|
54 | RESOURCE_BUNDLES_COMPILED_PROPERTIES = \
|
---|
55 | com/sun/tools/jdi/resources/jdi.properties
|
---|
56 |
|
---|
57 | #
|
---|
58 | # Rules
|
---|
59 | #
|
---|
60 | include $(BUILDDIR)/common/Classes.gmk
|
---|
61 |
|
---|
62 | #
|
---|
63 | # Copy the service provider configuration files into the resource
|
---|
64 | # directory. Copy the configuration file also uncomments any
|
---|
65 | # providers that need to be enabled for this platform.
|
---|
66 | #
|
---|
67 |
|
---|
68 | build: copy-files
|
---|
69 |
|
---|
70 | copy-files: $(FILES_copy)
|
---|
71 |
|
---|
72 | $(SERVICEDIR)/%: $(SHARE_SRC)/classes/com/sun/tools/jdi/META-INF/services/%
|
---|
73 | $(prep-target)
|
---|
74 | $(RM) $@.temp
|
---|
75 | @$(CAT) $< | $(SED) -e "s/^#\[$(PLATFORM)\]//" > $@.temp
|
---|
76 | $(MV) $@.temp $@
|
---|
77 |
|
---|
78 | clean clobber::
|
---|
79 | $(RM) $(FILES_copy)
|
---|
80 |
|
---|
81 | .PHONY: copy-files
|
---|
82 |
|
---|