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.
32 lines
610 B
32 lines
610 B
include ../../Makefile.conf
|
|
include ../Makefile.conf
|
|
|
|
#TODO: Remove when successufuly reproduce the error, and then use it to avoid regression
|
|
$(info This is to be run using pEpJNIAdapter 626)
|
|
|
|
JAVA_CLASSES = \
|
|
SyncCallbacks.class \
|
|
Step1.class \
|
|
Step2.class
|
|
|
|
.PHONY: compile run test clean
|
|
|
|
all: compile
|
|
$(MAKE) run
|
|
|
|
run: compile
|
|
-HOME=$(PWD) CLASSPATH=$(CLASSPATH) time $(VM) Step1
|
|
HOME=$(PWD) CLASSPATH=$(CLASSPATH) time $(VM) Step2
|
|
|
|
compile: $(JAVA_CLASSES)
|
|
|
|
%.class: %.java
|
|
CLASSPATH=$(CLASSPATH) javac $<
|
|
|
|
clean:
|
|
rm -f *.class
|
|
rm -f *.log
|
|
rm -f .pEp_*
|
|
rm -Rf .pEp
|
|
rm -Rf .gnupg
|
|
rm -Rf .lldb
|
|
|