Files

22 lines
325 B
Makefile
Raw Permalink Normal View History

2026-01-23 17:03:45 +08:00
# 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