
3 changed files with 28 additions and 9 deletions
@ -1,18 +1,27 @@ |
|||||
include ../../Makefile.conf |
include ../../Makefile.conf |
||||
include ../Makefile.conf |
include ../Makefile.conf |
||||
|
|
||||
.PHONY: test clean |
JAVA_CLASSES = \
|
||||
|
Testing.class \
|
||||
|
SyncCallbacks.class |
||||
|
|
||||
test: Testing.class SyncCallbacks.class |
.PHONY: compile run test clean |
||||
|
|
||||
|
all: compile |
||||
|
$(MAKE) run |
||||
|
|
||||
|
run: compile |
||||
HOME=$(PWD) CLASSPATH=$(CLASSPATH) time $(VM) Testing |
HOME=$(PWD) CLASSPATH=$(CLASSPATH) time $(VM) Testing |
||||
|
|
||||
|
compile: $(JAVA_CLASSES) |
||||
|
|
||||
%.class: %.java |
%.class: %.java |
||||
CLASSPATH=$(CLASSPATH) javac $< |
CLASSPATH=$(CLASSPATH) javac $< |
||||
|
|
||||
clean: |
clean: |
||||
rm -f *.class |
rm -f *.class |
||||
rm -f *.log |
rm -f *.log |
||||
rm -f .pEp_* |
rm -rf .pEp_* |
||||
rm -Rf .pEp |
rm -Rf .pEp |
||||
rm -Rf .gnupg |
rm -Rf .gnupg |
||||
rm -Rf .lldb |
rm -Rf .lldb |
||||
|
Loading…
Reference in new issue