mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
666153e3b3
JMP is a profiler for java that can be used to trace objects usage and method timings. JMP uses the JVMPI interface to gather statistics and interact with the JVM. JMP uses a GTK+ interface to show the status. PR: 47151, 48474, 50325 Submitted by: Ronald Klop <ronald@cs.vu.nl>
20 lines
537 B
Plaintext
20 lines
537 B
Plaintext
$FreeBSD$
|
|
|
|
--- Makefile.in Tue May 13 22:11:43 2003
|
|
+++ Makefile.in Tue May 13 22:12:29 2003
|
|
@@ -598,12 +598,12 @@
|
|
gcc -shared -o $@ ${OBJECTS} -Wl,--kill-at
|
|
|
|
jmp/JMPController.class : java/jmp/JMPController.java
|
|
- javac -sourcepath java -d . $<
|
|
+ ${JAVAC} -sourcepath java -d . $<
|
|
|
|
# javah does not update file modification time, so touch it
|
|
# otherwise we will remake file every time
|
|
jmp_JMPController.h: jmp/JMPController.class
|
|
- javah jmp.JMPController
|
|
+ ${JAVAH} jmp.JMPController
|
|
@touch jmp_JMPController.h
|
|
|
|
javadocs:
|