-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
64 lines (48 loc) · 3.2 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
## ========================================================================== ##
## Copyright (c) 2019 The University of Texas at Austin. ##
## All rights reserved. ##
## ##
## Licensed under the Apache License, Version 2.0 (the "License"); ##
## you may not use this file except in compliance with the License. ##
## A copy of the License is included with this software in the file LICENSE. ##
## If your copy does not contain the License, you may obtain a copy of the ##
## License at: ##
## ##
## https://www.apache.org/licenses/LICENSE-2.0 ##
## ##
## Unless required by applicable law or agreed to in writing, software ##
## distributed under the License is distributed on an "AS IS" BASIS, WITHOUT ##
## WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ##
## See the License for the specific language governing permissions and ##
## limitations under the License. ##
## ##
## ========================================================================== ##
all: SampleArcLenCF.xml CurvatureStreamlinesCF.xml JoinStreamlinesCF.xml OrientedGlyphCF.xml SampleSurfaceCF.xml MetropolisHastingsCF.xml SampleStreamlinesInTime.xml TrimStreamlinesCF.xml MH.xml MH2.xml MH3.xml DecimateStreamlines.xml MH4.xml PDF.xml
DecimateStreamlines.xml: DecimateStreamlines.py
python2 python_filter_generator.py DecimateStreamlines.py DecimateStreamlines.xml
PDF.xml: PDF.py
python2 python_filter_generator.py PDF.py PDF.xml
TrimStreamlinesCF.xml: TrimStreamlinesCF.py
python2 python_filter_generator.py TrimStreamlinesCF.py TrimStreamlinesCF.xml
SampleStreamlinesInTime.xml: SampleStreamlinesInTime.py
python2 python_filter_generator.py SampleStreamlinesInTime.py SampleStreamlinesInTime.xml
MetropolisHastingsCF.xml: MetropolisHastingsCF.py
python2 python_filter_generator.py MetropolisHastingsCF.py MetropolisHastingsCF.xml
MH.xml: MH.py
python2 python_filter_generator.py MH.py MH.xml
MH2.xml: MH2.py
python2 python_filter_generator.py MH2.py MH2.xml
MH3.xml: MH3.py
python2 python_filter_generator.py MH3.py MH3.xml
MH4.xml: MH4.py
python2 python_filter_generator.py MH4.py MH4.xml
OrientedGlyphCF.xml: OrientedGlyphCF.py
python2 python_filter_generator.py OrientedGlyphCF.py OrientedGlyphCF.xml
JoinStreamlinesCF.xml: JoinStreamlinesCF.py
python2 python_filter_generator.py JoinStreamlinesCF.py JoinStreamlinesCF.xml
SampleArcLenCF.xml: SampleArcLenCF.py
python2 python_filter_generator.py SampleArcLenCF.py SampleArcLenCF.xml
CurvatureStreamlinesCF.xml: CurvatureStreamlinesCF.py
python2 python_filter_generator.py CurvatureStreamlinesCF.py CurvatureStreamlinesCF.xml
SampleSurfaceCF.xml: SampleSurfaceCF.py
python2 python_filter_generator.py SampleSurfaceCF.py SampleSurfaceCF.xml