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.
34 lines
668 B
34 lines
668 B
include ../../../../../../../Makefile.conf
|
|
include ../Makefile.conf
|
|
|
|
TEST_UNIT_NAME=jni92
|
|
|
|
JAVA_CLASSES = \
|
|
TestMain.class \
|
|
../utils/AdapterTestUtils.class
|
|
|
|
.PHONY: pitytest compile run test clean
|
|
|
|
all: compile
|
|
$(MAKE) run
|
|
|
|
pitytest:
|
|
$(MAKE) -C $(PITYTEST_DIR)
|
|
|
|
run: compile clean-pep-home
|
|
cd $(JAVA_CWD);HOME=$(JAVA_PEP_HOME_DIR) $(JAVA) $(JAVA_PKG_BASENAME).$(TEST_UNIT_NAME).TestMain
|
|
|
|
compile: $(JAVA_CLASSES) pitytest
|
|
|
|
%.class: %.java
|
|
cd $(JAVA_CWD);$(JAVAC_CMD) -cp $(CLASSPATH) $(JAVA_PKG_BASEPATH)/$(TEST_UNIT_NAME)/$<
|
|
|
|
clean:
|
|
rm -f $(JAVA_CLASSES)
|
|
rm -f *.class
|
|
rm -f *.log
|
|
rm -Rf .gnupg
|
|
rm -Rf .lldb
|
|
|
|
clean-pep-home:
|
|
rm -rf $(PEP_HOME_DIR)/.pEp
|