22 lines
325 B
Makefile
22 lines
325 B
Makefile
|
|
# file: viewer/queryconstruction2/makefile
|
||
|
|
#
|
||
|
|
#
|
||
|
|
|
||
|
|
include ../../makefile.inc
|
||
|
|
|
||
|
|
|
||
|
|
JAVAFILES =$(shell find -name "*.java")
|
||
|
|
TMPFILES = $(subst .java,.class,$(JAVAFILES))
|
||
|
|
CLASSFILES = $(subst ./,,$(TMPFILES))
|
||
|
|
|
||
|
|
.PHONY: all
|
||
|
|
all: $(CLASSFILES)
|
||
|
|
|
||
|
|
%.class: %.java
|
||
|
|
$(JAVAC) -classpath $(CLASSPATH) $<
|
||
|
|
|
||
|
|
|
||
|
|
.PHONY: clean
|
||
|
|
clean:
|
||
|
|
rm -f *.class
|