~ubuntu-branches/ubuntu/intrepid/gmsh/intrepid

« back to all changes in this revision

Viewing changes to Plugin/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Andrea Veri
  • Date: 2007-07-14 23:29:56 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070714232956-ikw2f28278kxkquw
Tags: 2.0.8-1ubuntu1
* Merge from debian unstable, remaining changes:
  debian/rules:
    - added dh_desktop for registering gmsh.desktop file.
  debian/gmsh.install:
    - Installing both gmsh.desktop and respective icon.
  debian/menu:
    - added gmsh icon path
  debian/control:
    - Modify Maintainer value to match Debian-Maintainer-Field Spec.

* removing 02_gcc4.3-FTBFS.dpatch previously added in ubuntu, it has been reported 
  and fixed upstream with the new usptream release (2.0.8).
  Check debian bug #417211 for confirmation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: Makefile,v 1.119 2007/02/26 08:25:46 geuzaine Exp $
 
1
# $Id: Makefile,v 1.127 2007-07-09 13:54:37 geuzaine Exp $
2
2
#
3
3
# Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle
4
4
#
22
22
include ../variables
23
23
 
24
24
LIB     = ../lib/libGmshPlugin.a
25
 
INCLUDE = -I../Common -I../Graphics -I../DataStr -I../Geo -I../Fltk\
26
 
          -I../Mesh -I../Numeric -I../contrib/ANN/include\
 
25
INCLUDE = -I../Common -I../Graphics -I../DataStr -I../Geo -I../Mesh\
 
26
          -I../Post -I../Fltk -I../Numeric -I../contrib/ANN/include\
27
27
          -I../contrib/Triangle -I../contrib/MathEval
28
28
CFLAGS  = ${OPTIM} ${FLAGS} ${INCLUDE}
29
29
 
36
36
        StreamLines.cpp CutGrid.cpp\
37
37
        Transform.cpp\
38
38
        Triangulate.cpp\
39
 
        Warp.cpp\
 
39
        Warp.cpp SphericalRaise.cpp\
40
40
        Skin.cpp\
41
41
        Extract.cpp ExtractElements.cpp ExtractEdges.cpp\
42
 
        DecomposeInSimplex.cpp\
43
 
        Evaluate.cpp\
 
42
        MakeSimplex.cpp\
 
43
        Evaluate.cpp FieldView.cpp\
44
44
        Integrate.cpp Gradient.cpp Curl.cpp Divergence.cpp\
45
45
        Annotate.cpp Remove.cpp\
46
46
        Probe.cpp\
70
70
 
71
71
# DO NOT DELETE THIS LINE
72
72
Plugin.o: Plugin.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
73
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
73
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
74
74
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
75
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h PluginManager.h \
76
 
  CutMap.h Levelset.h CutGrid.h StreamLines.h CutPlane.h CutParametric.h \
 
75
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h PluginManager.h CutMap.h \
 
76
  Levelset.h CutGrid.h StreamLines.h CutPlane.h CutParametric.h \
77
77
  CutSphere.h Skin.h ../DataStr/Tree.h ../DataStr/avl.h Extract.h \
78
78
  ExtractElements.h ExtractEdges.h HarmonicToTime.h ModulusPhase.h \
79
79
  Integrate.h Gradient.h Curl.h Divergence.h Annotate.h Remove.h \
80
 
  DecomposeInSimplex.h Smooth.h Transform.h Triangulate.h Warp.h \
81
 
  Eigenvectors.h Eigenvalues.h Lambda2.h Evaluate.h \
82
 
  ../Common/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h \
83
 
  Probe.h ../Common/Context.h
 
80
  MakeSimplex.h Smooth.h Transform.h Triangulate.h Warp.h \
 
81
  SphericalRaise.h Eigenvectors.h Eigenvalues.h Lambda2.h Evaluate.h \
 
82
  ../Post/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h \
 
83
  Probe.h FieldView.h ../Common/Context.h
84
84
Levelset.o: Levelset.cpp Levelset.h Plugin.h ../Common/Options.h \
85
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
85
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
86
86
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
87
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
88
 
  DecomposeInSimplex.h ../DataStr/Tools.h ../DataStr/List.h \
89
 
  ../DataStr/Tree.h ../DataStr/avl.h ../Graphics/Iso.h \
90
 
  ../Common/Context.h ../DataStr/Malloc.h
 
87
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
 
88
  MakeSimplex.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \
 
89
  ../DataStr/avl.h ../Graphics/Iso.h ../Common/Context.h \
 
90
  ../DataStr/Malloc.h
91
91
CutPlane.o: CutPlane.cpp CutPlane.h Levelset.h Plugin.h \
92
 
  ../Common/Options.h ../Common/Message.h ../Common/Views.h \
93
 
  ../Common/ColorTable.h ../DataStr/List.h ../Common/VertexArray.h \
94
 
  ../Common/SmoothData.h ../Numeric/Numeric.h ../Common/AdaptiveViews.h \
 
92
  ../Common/Options.h ../Common/Message.h ../Post/Views.h \
 
93
  ../Post/ColorTable.h ../DataStr/List.h ../Common/VertexArray.h \
 
94
  ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/AdaptiveViews.h \
95
95
  ../Common/GmshMatrix.h ../Common/Context.h ../Common/GmshUI.h \
96
96
  ../Graphics/Draw.h
97
97
CutSphere.o: CutSphere.cpp CutSphere.h Levelset.h Plugin.h \
98
 
  ../Common/Options.h ../Common/Message.h ../Common/Views.h \
99
 
  ../Common/ColorTable.h ../DataStr/List.h ../Common/VertexArray.h \
100
 
  ../Common/SmoothData.h ../Numeric/Numeric.h ../Common/AdaptiveViews.h \
 
98
  ../Common/Options.h ../Common/Message.h ../Post/Views.h \
 
99
  ../Post/ColorTable.h ../DataStr/List.h ../Common/VertexArray.h \
 
100
  ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/AdaptiveViews.h \
101
101
  ../Common/GmshMatrix.h ../Common/Context.h ../Common/GmshUI.h \
102
102
  ../Graphics/Draw.h
103
103
CutMap.o: CutMap.cpp CutMap.h Levelset.h Plugin.h ../Common/Options.h \
104
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
104
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
105
105
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
106
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
106
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
107
107
  ../Common/Context.h
108
108
Smooth.o: Smooth.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
109
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
109
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
110
110
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
111
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Smooth.h \
 
111
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Smooth.h \
112
112
  ../Common/Context.h
113
 
CutParametric.o: CutParametric.cpp ../Common/OctreePost.h \
 
113
CutParametric.o: CutParametric.cpp ../Post/OctreePost.h \
114
114
  ../Common/Octree.h ../Common/OctreeInternals.h CutParametric.h Plugin.h \
115
 
  ../Common/Options.h ../Common/Message.h ../Common/Views.h \
116
 
  ../Common/ColorTable.h ../DataStr/List.h ../Common/VertexArray.h \
117
 
  ../Common/SmoothData.h ../Numeric/Numeric.h ../Common/AdaptiveViews.h \
 
115
  ../Common/Options.h ../Common/Message.h ../Post/Views.h \
 
116
  ../Post/ColorTable.h ../DataStr/List.h ../Common/VertexArray.h \
 
117
  ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/AdaptiveViews.h \
118
118
  ../Common/GmshMatrix.h ../Common/Context.h ../Common/GmshUI.h \
119
119
  ../Graphics/Draw.h
120
120
Lambda2.o: Lambda2.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
121
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
121
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
122
122
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
123
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Lambda2.h \
 
123
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Lambda2.h \
124
124
  ../Common/Context.h ../Common/ShapeFunctions.h
125
125
Eigenvectors.o: Eigenvectors.cpp Plugin.h ../Common/Options.h \
126
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
126
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
127
127
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
128
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
128
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
129
129
  Eigenvectors.h ../Common/Context.h ../DataStr/Malloc.h \
130
130
  ../Numeric/EigSolve.h
131
131
Eigenvalues.o: Eigenvalues.cpp Plugin.h ../Common/Options.h \
132
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
132
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
133
133
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
134
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
134
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
135
135
  Eigenvalues.h ../Common/Context.h ../DataStr/Malloc.h
136
 
StreamLines.o: StreamLines.cpp ../Common/OctreePost.h ../Common/Octree.h \
 
136
StreamLines.o: StreamLines.cpp ../Post/OctreePost.h ../Common/Octree.h \
137
137
  ../Common/OctreeInternals.h StreamLines.h Plugin.h ../Common/Options.h \
138
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
138
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
139
139
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
140
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
140
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
141
141
  ../Common/Context.h ../Common/GmshUI.h ../Graphics/Draw.h
142
 
CutGrid.o: CutGrid.cpp ../Common/OctreePost.h ../Common/Octree.h \
 
142
CutGrid.o: CutGrid.cpp ../Post/OctreePost.h ../Common/Octree.h \
143
143
  ../Common/OctreeInternals.h CutGrid.h Plugin.h ../Common/Options.h \
144
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
144
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
145
145
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
146
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
146
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
147
147
  ../Common/Context.h ../Common/GmshUI.h ../Graphics/Draw.h
148
148
Transform.o: Transform.cpp Plugin.h ../Common/Options.h \
149
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
149
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
150
150
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
151
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
151
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
152
152
  Transform.h ../Common/Context.h
153
153
Triangulate.o: Triangulate.cpp ../Common/Gmsh.h ../Common/Message.h \
154
154
  ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \
155
155
  ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \
156
 
  Plugin.h ../Common/Options.h ../Common/Views.h ../Common/ColorTable.h \
 
156
  Plugin.h ../Common/Options.h ../Post/Views.h ../Post/ColorTable.h \
157
157
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
158
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Triangulate.h \
 
158
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Triangulate.h \
159
159
  ../Common/Context.h ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/gmshFace.h \
160
160
  ../Geo/Geo.h ../Common/GmshDefines.h ../Geo/gmshSurface.h ../Geo/Pair.h \
161
161
  ../Geo/Range.h ../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \
172
172
  ../Geo/ExtrudeParams.h ../Geo/gmshVertex.h ../Geo/Geo.h \
173
173
  ../Geo/GVertex.h ../Geo/Range.h
174
174
Warp.o: Warp.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
175
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
175
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
176
176
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
177
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Warp.h \
 
177
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Warp.h \
178
178
  ../Common/Context.h
 
179
SphericalRaise.o: SphericalRaise.cpp Plugin.h ../Common/Options.h \
 
180
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
 
181
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
 
182
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
 
183
  SphericalRaise.h ../Common/Context.h
179
184
Skin.o: Skin.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
180
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
185
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
181
186
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
182
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Skin.h \
183
 
  ../DataStr/Tree.h ../DataStr/avl.h ../Common/Context.h \
184
 
  ../DataStr/Malloc.h
 
187
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Skin.h ../DataStr/Tree.h \
 
188
  ../DataStr/avl.h ../Common/Context.h ../DataStr/Malloc.h
185
189
Extract.o: Extract.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
186
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
190
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
187
191
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
188
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Extract.h \
 
192
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Extract.h \
189
193
  ../Common/Context.h ../DataStr/Malloc.h
190
194
ExtractElements.o: ExtractElements.cpp Plugin.h ../Common/Options.h \
191
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
195
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
192
196
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
193
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
197
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
194
198
  ExtractElements.h ../Common/Context.h ../DataStr/Malloc.h
195
199
ExtractEdges.o: ExtractEdges.cpp Plugin.h ../Common/Options.h \
196
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
200
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
197
201
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
198
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
202
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
199
203
  ExtractEdges.h ../DataStr/Tree.h ../DataStr/avl.h ../Common/Context.h \
200
204
  ../DataStr/Malloc.h ../Mesh/BDS.h ../Geo/GFace.h ../Geo/GPoint.h \
201
205
  ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
208
212
  ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/ExtrudeParams.h \
209
213
  ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \
210
214
  ../Geo/ExtrudeParams.h
211
 
DecomposeInSimplex.o: DecomposeInSimplex.cpp Plugin.h ../Common/Options.h \
212
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
215
MakeSimplex.o: MakeSimplex.cpp Plugin.h ../Common/Options.h \
 
216
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
213
217
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
214
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
215
 
  DecomposeInSimplex.h ../DataStr/Tree.h ../DataStr/avl.h \
216
 
  ../Common/Context.h ../DataStr/Malloc.h
 
218
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
 
219
  MakeSimplex.h ../DataStr/Tree.h ../DataStr/avl.h ../Common/Context.h \
 
220
  ../DataStr/Malloc.h
217
221
Evaluate.o: Evaluate.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
218
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
222
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
219
223
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
220
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Evaluate.h \
221
 
  ../Common/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h \
 
224
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Evaluate.h \
 
225
  ../Post/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h \
222
226
  ../Common/Context.h
 
227
FieldView.o: FieldView.cpp Plugin.h ../Common/Options.h \
 
228
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
 
229
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
 
230
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
 
231
  ../Mesh/Field.h ../Geo/Geo.h ../Common/GmshDefines.h \
 
232
  ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h \
 
233
  ../Geo/SPoint3.h ../Geo/SVector3.h ../Geo/SPoint3.h \
 
234
  ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../DataStr/Tree.h \
 
235
  ../DataStr/avl.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h ../Geo/GEdge.h \
 
236
  ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
 
237
  ../Geo/SBoundingBox3d.h ../Geo/GVertex.h ../Geo/GEntity.h \
 
238
  ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/GPoint.h ../Geo/SPoint2.h \
 
239
  ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/MElement.h \
 
240
  ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \
 
241
  ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \
 
242
  ../Common/Context.h ../Geo/ExtrudeParams.h ../Post/OctreePost.h \
 
243
  ../Common/Octree.h ../Common/OctreeInternals.h FieldView.h \
 
244
  ../Common/ShapeFunctions.h
223
245
Integrate.o: Integrate.cpp Plugin.h ../Common/Options.h \
224
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
246
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
225
247
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
226
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
248
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
227
249
  Integrate.h ../Common/Context.h ../Common/ShapeFunctions.h
228
250
Gradient.o: Gradient.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
229
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
251
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
230
252
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
231
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Gradient.h \
 
253
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Gradient.h \
232
254
  ../Common/Context.h ../Common/ShapeFunctions.h
233
255
Curl.o: Curl.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
234
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
256
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
235
257
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
236
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Curl.h \
 
258
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Curl.h \
237
259
  ../Common/Context.h ../Common/ShapeFunctions.h
238
260
Divergence.o: Divergence.cpp Plugin.h ../Common/Options.h \
239
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
261
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
240
262
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
241
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
263
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
242
264
  Divergence.h ../Common/Context.h ../Common/ShapeFunctions.h
243
265
Annotate.o: Annotate.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
244
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
266
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
245
267
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
246
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Annotate.h \
 
268
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Annotate.h \
247
269
  ../Common/Context.h ../Common/GmshUI.h ../Fltk/GUI.h \
248
270
  ../Fltk/Opengl_Window.h ../Fltk/Colorbar_Window.h \
249
271
  ../Fltk/Popup_Button.h ../Fltk/SpherePosition_Widget.h \
250
272
  ../Graphics/Draw.h
251
273
Remove.o: Remove.cpp Plugin.h ../Common/Options.h ../Common/Message.h \
252
 
  ../Common/Views.h ../Common/ColorTable.h ../DataStr/List.h \
 
274
  ../Post/Views.h ../Post/ColorTable.h ../DataStr/List.h \
253
275
  ../Common/VertexArray.h ../Common/SmoothData.h ../Numeric/Numeric.h \
254
 
  ../Common/AdaptiveViews.h ../Common/GmshMatrix.h Remove.h \
 
276
  ../Post/AdaptiveViews.h ../Common/GmshMatrix.h Remove.h \
255
277
  ../Common/Context.h
256
278
Probe.o: Probe.cpp Probe.h Plugin.h ../Common/Options.h \
257
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
279
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
258
280
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
259
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
281
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
260
282
  ../Common/Context.h ../Common/GmshUI.h ../Graphics/Draw.h \
261
 
  ../Common/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h
 
283
  ../Post/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h
262
284
HarmonicToTime.o: HarmonicToTime.cpp Plugin.h ../Common/Options.h \
263
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
285
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
264
286
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
265
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
287
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
266
288
  HarmonicToTime.h ../Common/Context.h
267
289
ModulusPhase.o: ModulusPhase.cpp Plugin.h ../Common/Options.h \
268
 
  ../Common/Message.h ../Common/Views.h ../Common/ColorTable.h \
 
290
  ../Common/Message.h ../Post/Views.h ../Post/ColorTable.h \
269
291
  ../DataStr/List.h ../Common/VertexArray.h ../Common/SmoothData.h \
270
 
  ../Numeric/Numeric.h ../Common/AdaptiveViews.h ../Common/GmshMatrix.h \
 
292
  ../Numeric/Numeric.h ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \
271
293
  ModulusPhase.h ../Common/Context.h