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
482 B
24 lines
482 B
JAVA_PKG_BASENAME=foundation.pEp
|
|
JAVA_PKG_BASEPATH=foundation/pEp
|
|
CLASSPATH=.
|
|
PLATFORM:=$(shell uname | tr A-Z a-z)
|
|
ifeq ($(PLATFORM),os/390)
|
|
JAVAC_CMD=javac
|
|
else
|
|
JAVAC_CMD=javac -encoding UTF-8
|
|
endif
|
|
JAVA=java -enableassertions
|
|
JAVA_CWD=../../../
|
|
|
|
|
|
JAVA_CLASSES_PITYTEST= \
|
|
TestSuite.class \
|
|
TestUnit.class \
|
|
TestContextInterface.class \
|
|
AbstractTestContext.class \
|
|
TestLogger.class \
|
|
utils/TestUtils.class \
|
|
utils/Pair.class \
|
|
TestState.class \
|
|
StopWatch.class
|
|
|
|
|