|
@ -1,14 +1,17 @@ |
|
|
include ../Makefile.conf |
|
|
include ../Makefile.conf |
|
|
|
|
|
|
|
|
$(info If on Mac, make sure to disable SIP, or copy the libpEpEngine.dylib into here) |
|
|
$(info If on Mac, make sure to disable SIP, or copy the libpEpEngine.dylib into here) |
|
|
ifeq ($(BUILD_FOR),Linux) |
|
|
|
|
|
|
|
|
ifdef ENGINE_LIB_PATH |
|
|
|
|
|
ifeq ($(BUILD_FOR),Linux) |
|
|
ifndef LD_LIBRARY_PATH |
|
|
ifndef LD_LIBRARY_PATH |
|
|
export LD_LIBRARY_PATH=$(ENGINE_LIB_PATH) |
|
|
export LD_LIBRARY_PATH=$(ENGINE_LIB_PATH) |
|
|
endif |
|
|
endif |
|
|
else ifeq ($(BUILD_FOR),Darwin) |
|
|
else ifeq ($(BUILD_FOR),Darwin) |
|
|
ifndef DYLD_LIBRARY_PATH |
|
|
ifndef DYLD_LIBRARY_PATH |
|
|
export DYLD_LIBRARY_PATH=$(ENGINE_LIB_PATH) |
|
|
export DYLD_LIBRARY_PATH=$(ENGINE_LIB_PATH) |
|
|
endif |
|
|
endif |
|
|
|
|
|
endif |
|
|
endif |
|
|
endif |
|
|
|
|
|
|
|
|
CLASSPATH=.:../src |
|
|
CLASSPATH=.:../src |
|
|