-
Notifications
You must be signed in to change notification settings - Fork 17
/
makefile
98 lines (98 loc) · 4.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
java:
python builder/builder.py -l java specs/$(target).corgis ./datasets
metrics:
python builder/builder.py -l metrics specs/$(target).corgis ./datasets
sql:
python builder/builder.py -l sql specs/$(target).corgis ./datasets
json:
python builder/builder.py -l json specs/$(target).corgis ./datasets
csv:
python builder/builder.py -l csv specs/$(target).corgis ./datasets
racket:
python builder/builder.py -l racket specs/$(target).corgis ./datasets
visualizer:
python builder/builder.py -l visualizer specs/$(target).corgis ./datasets
blockpy:
python builder/builder.py -l blockpy specs/$(target).corgis ./datasets
python:
python builder/builder.py -l python specs/$(target).corgis ./datasets
all_builders:
python builder/builder.py -l python specs/$(target).corgis ./datasets
python builder/builder.py -l blockpy specs/$(target).corgis ./datasets
python builder/builder.py -l visualizer specs/$(target).corgis ./datasets
python builder/builder.py -l csv specs/$(target).corgis ./datasets
python builder/builder.py -l racket specs/$(target).corgis ./datasets
python builder/builder.py -l json specs/$(target).corgis ./datasets
python builder/builder.py -l sql specs/$(target).corgis ./datasets
python builder/builder.py -l metrics specs/$(target).corgis ./datasets
python builder/builder.py -l java specs/$(target).corgis ./datasets
all:
python builder/builder.py -l python -a specs/ ./datasets
all_java:
python builder/builder.py -l java -a specs/ ./datasets
all_racket:
python builder/builder.py -l racket -a specs/ ./datasets
all_csv:
python builder/builder.py -l csv -a specs/ ./datasets
all_sql:
python builder/builder.py -l sql -a specs/ ./datasets
all_json:
python builder/builder.py -l json -a specs/ ./datasets
all_metrics:
python builder/builder.py -l metrics -a specs/ ./datasets
all_fast:
python builder/builder.py -l python --all --fast specs/ ./datasets
test:
python test.py $(target)
test_java:
python tests/java.py $(target)
python_test:
python builder/builder.py -l python specs/$(target).corgis ./datasets
python test.py $(target)
test_racket:
python tests/test_racket.py $(target)
test_sql:
python tests/test_sql.py $(target)
index:
python builder/builder.py -i specs/ ./datasets
latex_index:
python datasets/metrics/build_latex_index.py
infer_json:
python infer_json.py specs/$(target)/$(target).json
print_comments:
python print_comments.py specs/$(target)/$(target).json
all_visualizer:
python builder/builder.py -l visualizer specs/airlines.corgis ./datasets
python builder/builder.py -l visualizer specs/broadway.corgis ./datasets
python builder/builder.py -l visualizer specs/classics.corgis ./datasets
python builder/builder.py -l visualizer specs/construction_spending.corgis ./datasets
python builder/builder.py -l visualizer specs/earthquakes.corgis ./datasets
python builder/builder.py -l visualizer specs/global_development.corgis ./datasets
python builder/builder.py -l visualizer specs/immigration.corgis ./datasets
python builder/builder.py -l visualizer specs/publishers.corgis ./datasets
python builder/builder.py -l visualizer specs/school_scores.corgis ./datasets
python builder/builder.py -l visualizer specs/state_crime.corgis ./datasets
python builder/builder.py -l visualizer specs/state_demographics.corgis ./datasets
python builder/builder.py -l visualizer specs/tate.corgis ./datasets
python builder/builder.py -l visualizer specs/weather.corgis ./datasets
all_blockpy:
python builder/builder.py -l blockpy specs/airlines.corgis ./datasets
python builder/builder.py -l blockpy specs/aids.corgis ./datasets
python builder/builder.py -l blockpy specs/broadway.corgis ./datasets
python builder/builder.py -l blockpy specs/billionaires.corgis ./datasets
python builder/builder.py -l blockpy specs/business_dynamics.corgis ./datasets
python builder/builder.py -l blockpy specs/drugs.corgis ./datasets
python builder/builder.py -l blockpy specs/energy.corgis ./datasets
python builder/builder.py -l blockpy specs/finance.corgis ./datasets
python builder/builder.py -l blockpy specs/graduates.corgis ./datasets
python builder/builder.py -l blockpy specs/classics.corgis ./datasets
python builder/builder.py -l blockpy specs/construction_spending.corgis ./datasets
python builder/builder.py -l blockpy specs/earthquakes.corgis ./datasets
python builder/builder.py -l blockpy specs/global_development.corgis ./datasets
python builder/builder.py -l blockpy specs/immigration.corgis ./datasets
python builder/builder.py -l blockpy specs/publishers.corgis ./datasets
python builder/builder.py -l blockpy specs/school_scores.corgis ./datasets
python builder/builder.py -l blockpy specs/state_crime.corgis ./datasets
python builder/builder.py -l blockpy specs/state_demographics.corgis ./datasets
python builder/builder.py -l blockpy specs/tate.corgis ./datasets
python builder/builder.py -l blockpy specs/weather.corgis ./datasets