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.
26 lines
386 B
26 lines
386 B
include ../../Makefile.conf
|
|
include ../Makefile.conf
|
|
|
|
JAVA_CLASSES = \
|
|
TestMain.class
|
|
|
|
.PHONY: compile run test clean
|
|
|
|
all: compile
|
|
$(MAKE) run
|
|
|
|
run: compile
|
|
HOME=$(PWD) CLASSPATH=$(CLASSPATH) time $(VM) TestMain
|
|
|
|
compile: $(JAVA_CLASSES)
|
|
|
|
%.class: %.java
|
|
CLASSPATH=$(CLASSPATH) javac $<
|
|
|
|
clean:
|
|
rm -f *.class
|
|
rm -f *.log
|
|
rm -rf .pEp_*
|
|
rm -Rf .pEp
|
|
rm -Rf .gnupg
|
|
rm -Rf .lldb
|
|
|