comparison agent/make/Makefile @ 152:c70a245cad3a

6670684: 4/5 SA command universe did not print out CMS space information Summary: Forward port of Yumin's fix for 6670684 from HSX-11; Yumin verified the port was correct. Reviewed-by: dcubed
author dcubed
date Fri, 09 May 2008 08:55:13 -0700
parents a61af66fc99e
children d1605aabd0a1
comparison
equal deleted inserted replaced
83:d3cd40645d0d 152:c70a245cad3a
244 244
245 # Tagging it on because there's no reason not to run it 245 # Tagging it on because there's no reason not to run it
246 all: filelist 246 all: filelist
247 @mkdir -p $(OUTPUT_DIR) 247 @mkdir -p $(OUTPUT_DIR)
248 @echo "$(SA_BUILD_VERSION_PROP)" > $(SA_PROPERTIES) 248 @echo "$(SA_BUILD_VERSION_PROP)" > $(SA_PROPERTIES)
249 @javac -source 1.4 -classpath $(CLASSPATH) -deprecation -sourcepath $(SRC_DIR) -g -d $(OUTPUT_DIR) @filelist 249 @${JDK_HOME}/bin/javac -source 1.4 -classpath $(CLASSPATH) -deprecation -sourcepath $(SRC_DIR) -g -d $(OUTPUT_DIR) @filelist
250 @rmic -classpath $(OUTPUT_DIR) -d $(OUTPUT_DIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer 250 @${JDK_HOME}/bin/rmic -classpath $(OUTPUT_DIR) -d $(OUTPUT_DIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer
251 rm -f $(OUTPUT_DIR)/sun/jvm/hotspot/utilities/soql/sa.js 251 rm -f $(OUTPUT_DIR)/sun/jvm/hotspot/utilities/soql/sa.js
252 cp $(SRC_DIR)/sun/jvm/hotspot/utilities/soql/sa.js $(OUTPUT_DIR)/sun/jvm/hotspot/utilities/soql 252 cp $(SRC_DIR)/sun/jvm/hotspot/utilities/soql/sa.js $(OUTPUT_DIR)/sun/jvm/hotspot/utilities/soql
253 253
254 allprof: filelist 254 allprof: filelist
255 @mkdir -p $(OUTPUT_DIR) 255 @mkdir -p $(OUTPUT_DIR)
256 @echo "$(SA_BUILD_VERSION_PROP)" > $(SA_PROPERTIES) 256 @echo "$(SA_BUILD_VERSION_PROP)" > $(SA_PROPERTIES)
257 @javac -source 1.4 -J-Xprof -classpath $(CLASSPATH) -deprecation -sourcepath $(SRC_DIR) -g -d $(OUTPUT_DIR) @filelist 257 @${JDK_HOME}/bin/javac -source 1.4 -J-Xprof -classpath $(CLASSPATH) -deprecation -sourcepath $(SRC_DIR) -g -d $(OUTPUT_DIR) @filelist
258 @rmic -classpath $(OUTPUT_DIR) -d $(OUTPUT_DIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer 258 @${JDK_HOME}/bin/rmic -classpath $(OUTPUT_DIR) -d $(OUTPUT_DIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer
259 rm -f $(OUTPUT_DIR)/sun/jvm/hotspot/utilities/soql/sa.js 259 rm -f $(OUTPUT_DIR)/sun/jvm/hotspot/utilities/soql/sa.js
260 cp $(SRC_DIR)/sun/jvm/hotspot/utilities/soql/sa.js $(OUTPUT_DIR)/sun/jvm/hotspot/utilities/soql 260 cp $(SRC_DIR)/sun/jvm/hotspot/utilities/soql/sa.js $(OUTPUT_DIR)/sun/jvm/hotspot/utilities/soql
261 261
262 filelist: $(ALLFILES) 262 filelist: $(ALLFILES)
263 @if [ ! -f $(JDK_HOME)/lib/tools.jar ] ; then \ 263 @if [ ! -f $(JDK_HOME)/lib/tools.jar ] ; then \