-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·57 lines (40 loc) · 1.02 KB
/
Makefile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#
#
CC = groovyc
ARCH = jar
OPT = cvf
PACKAGE = qcpipeline
.PHONY: .FORCE
.FORCE:
all: jar
jar: .FORCE $(PACKAGE)/Project.class
$(ARCH) $(OPT) $(PACKAGE).jar $(PACKAGE)
rm -v $(PACKAGE)/*.class
$(PACKAGE)/Project.class: \
.FORCE \
$(PACKAGE)/Sample.class \
$(PACKAGE)/SampleSet.class
$(CC) -d . $(PACKAGE)/Project.gy
$(PACKAGE)/SampleSet.class: .FORCE
$(CC) -d . $(PACKAGE)/SampleSet.gy
$(PACKAGE)/Sample.class: .FORCE $(PACKAGE)/Fastq.class
$(CC) -d . $(PACKAGE)/Sample.gy
$(PACKAGE)/Fastq.class: \
.FORCE \
$(PACKAGE)/Run.class \
$(PACKAGE)/Machine.class \
$(PACKAGE)/FlowCell.class \
$(PACKAGE)/Lane.class \
$(PACKAGE)/Read.class
$(CC) -d . $(PACKAGE)/Fastq.gy
$(PACKAGE)/Run.class: .FORCE
$(CC) -d . $(PACKAGE)/Run.gy
$(PACKAGE)/Machine.class: .FORCE
$(CC) -d . $(PACKAGE)/Machine.gy
$(PACKAGE)/FlowCell.class: .FORCE
$(CC) -d . $(PACKAGE)/FlowCell.gy
$(PACKAGE)/Lane.class: .FORCE
$(CC) -d . $(PACKAGE)/Lane.gy
$(PACKAGE)/Read.class: .FORCE
$(CC) -d . $(PACKAGE)/Read.gy