This repository has been archived by the owner on Aug 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmakefile.srcs
150 lines (140 loc) · 4.99 KB
/
makefile.srcs
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#############################################################################
#
# makefile.srcs: Defines all the source modules [other than the source
# containing main()] that are compiled and linked into
# the ParaDiS executable.
#
# This is provided to simplify the process of substituting
# a different main() function (as is done for the FEM
# coupling for paradisfem) but still compile in all the
# necessary support code.
#
############################################################################
###########################################################################
#
# Define the source/object modules for the application
#
###########################################################################
PARADIS_C_SRCS = CellCharge.c \
Collision.c \
CommSendGhosts.c \
CommSendGhostPlanes.c \
CommSendMirrorNodes.c \
CommSendRemesh.c \
CommSendSecondaryGhosts.c \
CommSendSegments.c \
CommSendVelocity.c \
CorrectionTable.c \
CrossSlip.c \
CrossSlipBCC.c \
CrossSlipFCC.c \
DebugFunctions.c \
Decomp.c \
DeltaPlasticStrain.c \
DeltaPlasticStrain_BCC.c \
DeltaPlasticStrain_FCC.c \
DisableUnneededParams.c \
DLBfreeOld.c \
deWitInteraction.c \
FindPreciseGlidePlane.c \
FixRemesh.c \
FMComm.c \
FMSigma2.c \
FMSupport.c \
ForwardEulerIntegrator.c \
FreeInitArrays.c \
GenerateOutput.c \
GetDensityDelta.c \
GetNewNativeNode.c \
GetNewGhostNode.c \
Gnuplot.c \
Heap.c \
InitCellDomains.c \
InitCellNatives.c \
InitCellNeighbors.c \
InitHome.c \
InitRemoteDomains.c \
InitSendDomains.c \
Initialize.c \
InputSanity.c \
LoadCurve.c \
LocalSegForces.c \
Matrix.c \
Meminfo.c \
MemCheck.c \
Migrate.c \
MobilityLaw_BCC_0.c \
MobilityLaw_BCC_0b.c \
MobilityLaw_BCC_glide.c \
MobilityLaw_FCC_0.c \
MobilityLaw_FCC_0b.c \
MobilityLaw_FCC_climb.c \
MobilityLaw_Relax.c \
NodeForce.c \
NodeVelocity.c \
OsmoticForce.c \
ParadisInit.c \
ParadisFinish.c \
ParadisStep.c \
ParadisThread.c \
Param.c \
Parse.c \
PickScrewGlidePlane.c \
Plot.c \
PredictiveCollision.c \
ProximityCollision.c \
QueueOps.c \
ReadRestart.c \
ReadBinaryRestart.c \
ResetGlidePlanes.c \
RBDecomp.c \
RSDecomp.c \
RemapInitialTags.c \
Remesh.c \
RemeshRule_2.c \
RemeshRule_3.c \
RemoteSegForces.c \
RemoveNode.c \
SemiInfiniteSegSegForce.c \
SortNativeNodes.c \
SortNodesForCollision.c \
SplitSurfaceNodes.c \
Tecplot.c \
Timer.c \
Topology.c \
TrapezoidIntegrator.c \
Util.c \
WriteArms.c \
WriteAtomEye.c \
WriteBinaryRestart.c \
WriteDensFlux.c \
WriteDensityField.c \
WriteForce.c \
WriteFragments.c \
WritePoleFig.c \
WritePovray.c \
WriteProp.c \
WriteRestart.c \
WriteVelocity.c \
WriteVisit.c
PARADIS_CPP_SRCS = DisplayC.C display.C
PARADIS_SRCS = $(PARADIS_C_SRCS) $(PARADIS_CPP_SRCS)
PARADIS_OBJS = $(PARADIS_C_SRCS:.c=.o) $(PARADIS_CPP_SRCS:.C=.o)
PARADIS_C_OBJS = $(PARADIS_C_SRCS:.c=.o)
###########################################################################
#
# Define the source/object modules for the ctablegen utility
#
###########################################################################
CTABLEGEN_SRCS = CTableGen.c \
CorrectionTable.c \
FindPreciseGlidePlane.c \
FMSigma2.c \
FMSupport.c \
Matrix.c \
Heap.c \
MemCheck.c \
PickScrewGlidePlane.c \
QueueOps.c \
Util.c
CTABLEGEN_OBJS = $(CTABLEGEN_SRCS:.c=.o)