You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
629 B
24 lines
629 B
JAVA_PKG_BASENAME=foundation.pEp.jniadapter.test
|
|
JAVA_PKG_BASEPATH=foundation/pEp/jniadapter/test
|
|
REPOROOT=../..
|
|
JAVA_CWD=../../../../../
|
|
JAVA_RESOURCES_DIR=../resources
|
|
JAVA_PEP_HOME_DIR=$(JAVA_RESOURCES_DIR)/pep-home
|
|
PEP_HOME_DIR=$(JAVA_CWD)$(JAVA_PEP_HOME_DIR)
|
|
CLASSPATH=.:$(REPOROOT)/src
|
|
|
|
JAVA=java -Xcheck:jni -cp $(CLASSPATH) -Djava.library.path=$(CLASSPATH)
|
|
|
|
|
|
ifdef ENGINE_LIB_PATH
|
|
ifeq ($(PLATFORM),linux)
|
|
ifndef LD_LIBRARY_PATH
|
|
export LD_LIBRARY_PATH=$(ENGINE_LIB_PATH)
|
|
endif
|
|
else ifeq ($(PLATFORM),darwin)
|
|
ifndef DYLD_LIBRARY_PATH
|
|
export DYLD_LIBRARY_PATH=$(ENGINE_LIB_PATH)
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
|