makefile.am
来自「基于LWVCL开发的库」· AM 代码 · 共 125 行
AM
125 行
# Internal testing## Copyright (c) 2003, 2004 University of Utah and the Flux Group.# All rights reserved..## This file is licensed under the terms of the GNU Public License.# See the file "license.terms" for information on usage and redistribution# of this file, and for a DISCLAIMER OF ALL WARRANTIES.## Contributed by the Flux Research Group, Department of Computer Science,# University of Utah, http://www.cs.utah.edu/flux/@engine_frag@AM_CFLAGS= $(KAFFE_CFLAGS)if NEED_LIBXPROFlibxprof = ../../kaffe/xprof/libkaffexprof.laelselibxprof = #endifif ENABLE_JVMPIlibjvmpi = ../../kaffe/jvmpi/libkaffejvmpi.laelselibjvmpi = #endif@threads_frag@check_PROGRAMS = jitBasicAM_CPPFLAGS = -I$(top_srcdir)/kaffe \ -I$(top_builddir)/kaffe/kaffe \ $(ENGINE_INCLUDES) \ -I../../kaffe/kaffevm \ $(ENGINE_DEFS) \ -I$(top_srcdir)/kaffe/kaffevm \ -I$(top_srcdir)/kaffe/jvmpi \ -I$(top_builddir)/include \ -I$(top_srcdir)/kaffe/kaffevm/jni \ -I$(top_srcdir)/config/$(Khost_cpu) \ -I$(top_srcdir)/config/$(Khost_cpu)/$(Khost_os)LIBREPLACE = $(top_builddir)/replace/libreplace.laLIBKAFFEVM = ../../kaffe/kaffevm/libkaffe.la $(libjvmpi)jitBasic_LDFLAGS = -export-dynamicjitBasic_LDADD = \ $(LTLIBINTL) \ $(LIBREPLACE) \ $(LIBKAFFEVM) \ $(libxprof) \ -dlopen ../../kaffe/kaffevm/libkaffevm.lajitBasic_DEPENDENCIES = $(LIBKAFFEVM) $(libxprof)STUB = main_stub.cJIT_STUB = jit_stub.cjitBasic_SOURCES = \ jitBasic.c \ stringParsing.c \ stringParsing.h \ $(JIT_STUB)# Order matters here!TEST_CLASSES = \ ConstMethods.class \ ConstMathMethods.class \ ParameterizedMethods.class \ ParameterizedMathMethods.class \ ParameterizedLogicalMethods.class \ ParameterizedBitwiseMethods.class \ ControlFlowMethods.class \ StaticMethodCall.class \ TypeConversion.class \ StaticFields.class \ PrimitiveArrays.class \ ObjectFields.class \ MethodOptimizations.class \ NativeMethodCall.class \ Exceptions.class \ VirtualMethod.classjitBasicdir = $(srcdir)dist_jitBasic_JAVA = \ ConstMethods.java \ ConstMathMethods.java \ ParameterizedMethods.java \ ParameterizedMathMethods.java \ ParameterizedLogicalMethods.java \ ParameterizedBitwiseMethods.java \ ControlFlowMethods.java \ StaticMethodCall.java \ TypeConversion.java \ StaticFields.java \ PrimitiveArrays.java \ ObjectFields.java \ MethodOptimizations.java \ NativeMethodCall.java \ Exceptions.java \ VirtualMethod.java \ java/lang/System.java \ java/lang/VMSystem.javaTESTS_ENVIRONMENT = env TEST_CLASSES="$(TEST_CLASSES)" `. $(top_builddir)/BUILD_ENVIRONMENT; BOOTCLASSPATH=.:\$${BOOTCLASSPATH}; export BOOTCLASSPATH; $(SED) 's/.*export \(.*\)/echo \1=$$\1/' < $(top_builddir)/BUILD_ENVIRONMENT | sh`CPATH = .:$(GLIBJ_ZIP)AM_JAVACFLAGS = -classpath $(CPATH)JAVAROOT = .TESTS = $(check_PROGRAMS)XFAIL_TESTS =CLEANFILES = \ *.fail \ *.out \ core \ *.core \ `find . -name "*.class"`
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?