summaryrefslogtreecommitdiff
path: root/usr/src/cmd/dtrace/test/cmd/jdtrace/Makefile
blob: 4d88a584dee44e1263ae187213b3187238206021 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#

#
# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#

PROG = jdtrace
SRCS = jdtrace.c

include $(SRC)/cmd/Makefile.cmd

ROOTOPTPKG = $(ROOT)/opt/SUNWdtrt
ROOTBIN = $(ROOTOPTPKG)/bin
ROOTLIB = $(ROOTOPTPKG)/lib
ROOTLIBJAVA = $(ROOTLIB)/java

# Use the proto dtrace.jar if it exists, otherwise use whatever is
# installed on the system. It should be possible to build
# usr/src/cmd/dtrace/test independently, even if only on systems that
# have a compatible dtrace.jar installed.
DTRACE_JAR=usr/share/lib/java/dtrace.jar
PROTO_DTRACE_JAR=$(ROOT)/$(DTRACE_JAR)
INSTALLED_DTRACE_JAR=/$(DTRACE_JAR)
CLASSPATH=$(PROTO_DTRACE_JAR):$(INSTALLED_DTRACE_JAR)
DTEST_DIR=$(SRC)/cmd/dtrace/test
CLASSDIR=classes
LIBDIR=lib
MANIFESTDIR=manifest
MANIFEST=$(MANIFESTDIR)/jdtrace.jar-manifest
JDTRACE_JAR=$(LIBDIR)/jdtrace.jar

PROTO_JDTRACE_JAR=$(ROOTLIBJAVA)/jdtrace.jar
CMD = $(ROOTBIN)/jdtrace
XLIST = $(ROOTBIN)/exception.lst

$(PROTO_JDTRACE_JAR) := FILEMODE = 0644
$(CMD) := FILEMODE = 0555
$(XLIST) := FILEMODE = 0444

all: $(JDTRACE_JAR) $(PROG)

clean:
	-$(RM) $(CLASSDIR)/*.class

clobber: clean
	-$(RM) $(JDTRACE_JAR)
	-$(RM) $(PROG)

install: all $(PROTO_JDTRACE_JAR) $(CMD) $(XLIST)

$(PROG): $(SRCS)
	$(LINK.c) -o $@ $(SRCS) $(LDLIBS)
	$(POST_PROCESS) ; $(STRIP_STABS)

JFLAGS= -g -cp $(CLASSPATH) -d $(CLASSDIR)
JFLAGS += -source 7 -target 7 -Xlint:all,-options
COMPILE.java=$(JAVAC) $(JFLAGS)
JAVASRC= JDTrace.java Getopt.java

$(JDTRACE_JAR): $(JAVASRC)
	@mkdir -p $(CLASSDIR)
	@mkdir -p $(LIBDIR)
	$(COMPILE.java) $(JAVASRC)
	$(JAR) -cmf $(MANIFEST) $(JDTRACE_JAR) -C $(CLASSDIR) .

$(PROTO_JDTRACE_JAR): $(ROOTLIBJAVA)

$(CMD): $(ROOTBIN)

$(XLIST): $(ROOTBIN)

$(ROOTBIN):
	$(INS.dir)

$(ROOTLIB):
	$(INS.dir)

$(ROOTLIBJAVA): $(ROOTLIB)
	$(INS.dir)

$(ROOTLIBJAVA)/%.jar: $(LIBDIR)/%.jar
	$(INS.file)

$(ROOTBIN)/%: %
	$(INS.file)