-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile_Opacities
91 lines (76 loc) · 2.6 KB
/
Makefile_Opacities
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
WEAKLIB_DIR ?= $(HOME)/weaklib
include $(WEAKLIB_DIR)/Distributions/Build/Makefile_Build
include $(WEAKLIB_DIR)/Distributions/Build/Makefile_WeakLib_ObjectFiles
include $(WEAKLIB_DIR)/Distributions/Build/Makefile_WeakLib_Dependencies
include $(WEAKLIB_DIR)/TableCreator/Build/Makefile_Path
include $(WEAKLIB_DIR)/TableCreator/Build/Makefile_WeakLib_ObjectFiles
.DEFAULT_GOAL := all
all: wlOpacityFieldsTest \
wlReadOpacityTableTest \
wlOpacityPerformanceTest \
wlInterpolateAb \
wlInterpolateIso \
wlInterpolateNES \
wlInterpolatePair \
wlInterpolateBrem
Interpolations: wlInterpolateAb \
wlInterpolateIso \
wlInterpolateNES \
wlInterpolatePair \
wlInterpolateBrem
wlOpacityFieldsTest: \
$(weaklib) wlOpacityFieldsTest.o
$(FLINKER) $(FLAGS) -o wlOpacityFieldsTest_$(MACHINE) \
$(weaklib) wlOpacityFieldsTest.o \
$(LIBRARIES)
wlReadOpacityTableTest: \
$(weaklib) wlReadOpacityTableTest.o
$(FLINKER) $(FLAGS) -o wlReadOpacityTableTest_$(MACHINE) \
$(weaklib) wlReadOpacityTableTest.o \
$(LIBRARIES)
wlOpacityPerformanceTest: \
$(weaklib) wlOpacityPerformanceTest.o
$(FLINKER) $(FLAGS) -o wlOpacityPerformanceTest_$(MACHINE) \
$(weaklib) wlOpacityPerformanceTest.o \
$(LIBRARIES)
wlInterpolateAb: \
$(weaklib) wlInterpolateAb.o
$(FLINKER) $(FLAGS) -o wlInterpolateAb_$(MACHINE) \
$(weaklib) wlInterpolateAb.o \
$(LIBRARIES)
wlInterpolateIso: \
$(Weaklib_TableCreator) wlInterpolateIso.o
$(FLINKER) $(FLAGS) -o wlInterpolateIso_$(MACHINE) \
$(weaklib) wlInterpolateIso.o \
$(LIBRARIES)
wlInterpolateNES: \
$(Weaklib_TableCreator) wlInterpolateNES.o
$(FLINKER) $(FLAGS) -o wlInterpolateNES_$(MACHINE) \
$(Weaklib_TableCreator) wlInterpolateNES.o \
$(LIBRARIES)
wlInterpolatePair: \
$(Weaklib_TableCreator) wlInterpolatePair.o
$(FLINKER) $(FLAGS) -o wlInterpolatePair_$(MACHINE) \
$(Weaklib_TableCreator) wlInterpolatePair.o \
$(LIBRARIES)
wlInterpolateBrem: \
$(Weaklib_TableCreator) wlInterpolateBrem.o
$(FLINKER) $(FLAGS) -o wlInterpolateBrem_$(MACHINE) \
$(Weaklib_TableCreator) wlInterpolateBrem.o \
$(LIBRARIES)
wlQueryTables: \
$(Weaklib_TableCreator) wlQueryTables.o
$(FLINKER) $(FLAGS) -o wlQueryTables_$(MACHINE) \
$(Weaklib_TableCreator) wlQueryTables.o \
$(LIBRARIES)
clean:
rm -f *.o *.mod *.ld *.acc.s
clobber: clean
rm -f *_$(MACHINE)
wlOpacityPerformanceTest.o: \
wlKindModule.o \
wlOpacityTableModule.o \
wlIOModuleHDF.o \
wlOpacityTableIOModuleHDF.o \
wlInterpolationModule.o \
wlOpacityPerformanceTest.F90