-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (26 loc) · 853 Bytes
/
Makefile
File metadata and controls
33 lines (26 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#Makefile
TOPDIR = $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
CLASSDIR = $(TOPDIR)classes
SOURCEDIR = $(TOPDIR)sources
SOURCES = $(SOURCEDIR)/DataQuality
JC = javac
JFLAGS = -sourcepath $(SOURCEDIR) -d $(CLASSDIR) -Xlint:unchecked -g
.SUFFIXES: .java .class
.java.class:
$(JC) $(JFLAGS) $*.java
CLASSES = $(SOURCES)/DataQualityCheck.java \
$(SOURCES)/ImageRetirementCheck.java \
$(SOURCES)/ImageRetirementCheckStatus.java \
$(SOURCES)/Images.java \
$(SOURCES)/ImageSets.java \
$(SOURCES)/Marks.java \
$(SOURCES)/MySQLConnection.java \
$(SOURCES)/NullCheck.java \
$(SOURCES)/NullCheckStatus.java \
$(SOURCES)/RetrieveImages.java \
$(SOURCES)/RetrieveImageSets.java \
$(SOURCES)/RetrieveMarks.java \
$(SOURCES)/SortMarks.java
classes: $(CLASSES:.java=.class)
clean:
$(RM) $(CLASSDIR)/DataQuality/*.class