Skip to content
Snippets Groups Projects
Commit 5a182522 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

create dummy model during option processing

parent 143cab2f
No related branches found
No related tags found
No related merge requests found
// $Id: CommandLine.cpp,v 1.121 2008-03-11 20:24:30 geuzaine Exp $ // $Id: CommandLine.cpp,v 1.122 2008-03-11 22:30:31 geuzaine Exp $
// //
// Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// //
...@@ -24,15 +24,13 @@ ...@@ -24,15 +24,13 @@
#include "GmshDefines.h" #include "GmshDefines.h"
#include "GmshVersion.h" #include "GmshVersion.h"
#include "Message.h" #include "Message.h"
#include "OpenFile.h"
#include "CommandLine.h" #include "CommandLine.h"
#include "Numeric.h"
#include "Context.h" #include "Context.h"
#include "Options.h" #include "Options.h"
#include "GModel.h"
#include "PView.h" #include "PView.h"
#include "OpenFile.h"
#include "CreateFile.h" #include "CreateFile.h"
#include "Parser.h"
#include "GModel.h"
#include "OS.h" #include "OS.h"
#if !defined(GMSH_EXTRA_VERSION) #if !defined(GMSH_EXTRA_VERSION)
...@@ -176,6 +174,10 @@ char *Get_BuildOptions(void) ...@@ -176,6 +174,10 @@ char *Get_BuildOptions(void)
void Get_Options(int argc, char *argv[]) void Get_Options(int argc, char *argv[])
{ {
// Create a dummy model during option processing so we cannot crash
// the parser, and so we can load files for -convert
GModel *dummy = new GModel();
// Parse session and option files // Parse session and option files
ParseFile(CTX.session_filename_fullpath, 1); ParseFile(CTX.session_filename_fullpath, 1);
ParseFile(CTX.options_filename_fullpath, 1); ParseFile(CTX.options_filename_fullpath, 1);
...@@ -677,4 +679,6 @@ void Get_Options(int argc, char *argv[]) ...@@ -677,4 +679,6 @@ void Get_Options(int argc, char *argv[])
strncpy(CTX.filename, CTX.default_filename_fullpath, 255); strncpy(CTX.filename, CTX.default_filename_fullpath, 255);
else else
strncpy(CTX.filename, CTX.files[0].c_str(), 255); strncpy(CTX.filename, CTX.files[0].c_str(), 255);
delete dummy;
} }
# $Id: Makefile,v 1.161 2008-03-11 20:03:09 geuzaine Exp $ # $Id: Makefile,v 1.162 2008-03-11 22:30:31 geuzaine Exp $
# #
# Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle # Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
# #
...@@ -67,34 +67,31 @@ depend: ...@@ -67,34 +67,31 @@ depend:
# DO NOT DELETE THIS LINE # DO NOT DELETE THIS LINE
Context.o: Context.cpp ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \ Context.o: Context.cpp ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \
Context.h ../DataStr/List.h DefaultOptions.h GmshDefines.h Options.h \ Context.h DefaultOptions.h GmshDefines.h Options.h ../Post/ColorTable.h \
../Post/ColorTable.h Trackball.h Trackball.h
Octree.o: Octree.cpp Octree.h OctreeInternals.h Octree.o: Octree.cpp Octree.h OctreeInternals.h
OctreeInternals.o: OctreeInternals.cpp Message.h OctreeInternals.h OctreeInternals.o: OctreeInternals.cpp Message.h OctreeInternals.h
Options.o: Options.cpp GmshUI.h GmshDefines.h Message.h \ Options.o: Options.cpp GmshUI.h GmshDefines.h Message.h \
../Graphics/Draw.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ ../Graphics/Draw.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \
../Post/PView.h ../Post/PViewData.h ../Post/PViewOptions.h \ ../Post/PView.h ../Post/PViewData.h ../Post/PViewOptions.h \
../Post/ColorTable.h ../Mesh/Generator.h Context.h ../DataStr/List.h \ ../Post/ColorTable.h ../Mesh/Generator.h Context.h Options.h \
Options.h ../Mesh/BackgroundMesh.h ../Plugin/PluginManager.h \ ../Mesh/BackgroundMesh.h ../Plugin/PluginManager.h ../Plugin/Plugin.h \
../Plugin/Plugin.h ../Common/Options.h ../Common/Message.h \ ../Common/Options.h ../Common/Message.h ../Post/PViewDataList.h \
../Post/PViewDataList.h ../Post/PViewData.h ../Post/AdaptiveViews.h \ ../Post/PViewData.h ../Post/AdaptiveViews.h ../DataStr/List.h \
../Common/GmshMatrix.h ../Fltk/Solvers.h ../Fltk/GUI.h \ ../Common/GmshMatrix.h ../Fltk/Solvers.h ../Fltk/GUI.h \
../Fltk/Opengl_Window.h ../Fltk/Colorbar_Window.h ../Common/GmshUI.h \ ../Fltk/Opengl_Window.h ../Fltk/Colorbar_Window.h ../Common/GmshUI.h \
../Fltk/Popup_Button.h ../Fltk/SpherePosition_Widget.h ../Fltk/Popup_Button.h ../Fltk/SpherePosition_Widget.h
CommandLine.o: CommandLine.cpp GmshUI.h GmshDefines.h GmshVersion.h \ CommandLine.o: CommandLine.cpp GmshUI.h GmshDefines.h GmshVersion.h \
Message.h CommandLine.h ../Numeric/Numeric.h \ Message.h ../Parser/OpenFile.h CommandLine.h Context.h Options.h \
../Numeric/NumericEmbedded.h Context.h ../DataStr/List.h Options.h \ ../Post/ColorTable.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h \
../Post/ColorTable.h ../Post/PView.h ../Post/PViewData.h \ ../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ ../Geo/SPoint3.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h \
../Post/ColorTable.h ../Parser/OpenFile.h ../Parser/CreateFile.h \
../Parser/Parser.h ../DataStr/Tree.h ../DataStr/avl.h ../Geo/GModel.h \
../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/SBoundingBox3d.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h \
../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \ ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \
../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h \ ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h \
../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/SPoint2.h \ ../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/SPoint2.h \
../Geo/SVector3.h ../Geo/Pair.h ../Geo/GRegion.h ../Geo/GEntity.h \ ../Geo/SVector3.h ../Geo/Pair.h ../Geo/GRegion.h ../Geo/GEntity.h \
../Geo/SBoundingBox3d.h OS.h ../Geo/SBoundingBox3d.h ../Post/PView.h ../Post/PViewData.h \
../Post/PViewOptions.h ../Post/ColorTable.h ../Parser/CreateFile.h OS.h
Gmsh.o: Gmsh.cpp ../Parser/Parser.h ../DataStr/List.h ../DataStr/Tree.h \ Gmsh.o: Gmsh.cpp ../Parser/Parser.h ../DataStr/List.h ../DataStr/Tree.h \
../DataStr/avl.h Options.h ../Post/ColorTable.h CommandLine.h OS.h \ ../DataStr/avl.h Options.h ../Post/ColorTable.h CommandLine.h OS.h \
../Plugin/PluginManager.h ../Plugin/Plugin.h ../Common/Options.h \ ../Plugin/PluginManager.h ../Plugin/Plugin.h ../Common/Options.h \
...@@ -119,7 +116,7 @@ Visibility.o: Visibility.cpp Visibility.h GmshDefines.h ../Geo/GVertex.h \ ...@@ -119,7 +116,7 @@ Visibility.o: Visibility.cpp Visibility.h GmshDefines.h ../Geo/GVertex.h \
../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h
Trackball.o: Trackball.cpp Trackball.h Trackball.o: Trackball.cpp Trackball.h
VertexArray.o: VertexArray.cpp VertexArray.h ../Geo/SVector3.h \ VertexArray.o: VertexArray.cpp VertexArray.h ../Geo/SVector3.h \
../Geo/SPoint3.h Context.h ../DataStr/List.h ../Numeric/Numeric.h \ ../Geo/SPoint3.h Context.h ../Numeric/Numeric.h \
../Numeric/NumericEmbedded.h ../Numeric/NumericEmbedded.h
SmoothData.o: SmoothData.cpp SmoothData.h ../Numeric/Numeric.h \ SmoothData.o: SmoothData.cpp SmoothData.h ../Numeric/Numeric.h \
../Numeric/NumericEmbedded.h ../Numeric/NumericEmbedded.h
......
// $Id: Main.cpp,v 1.119 2008-03-11 20:24:30 geuzaine Exp $ // $Id: Main.cpp,v 1.120 2008-03-11 22:30:31 geuzaine Exp $
// //
// Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle // Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
// //
...@@ -49,10 +49,11 @@ int main(int argc, char *argv[]) ...@@ -49,10 +49,11 @@ int main(int argc, char *argv[])
time_t now; time_t now;
time(&now); time(&now);
std::string currtime(ctime(&now)); std::string currtime(ctime(&now));
currtime[currtime.size() - 1] = '\0';
std::string cmdline; std::string cmdline;
for(int i = 0; i < argc; i++){ for(int i = 0; i < argc; i++){
if(i) cmdline += " ";
cmdline += argv[i]; cmdline += argv[i];
cmdline += " ";
} }
// Hack to generate automatic documentation (before getting // Hack to generate automatic documentation (before getting
......
# $Id: Makefile,v 1.173 2008-03-11 20:03:09 geuzaine Exp $ # $Id: Makefile,v 1.174 2008-03-11 22:30:31 geuzaine Exp $
# #
# Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle # Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
# #
...@@ -73,7 +73,7 @@ Main.o: Main.cpp GUI.h Opengl_Window.h Colorbar_Window.h \ ...@@ -73,7 +73,7 @@ Main.o: Main.cpp GUI.h Opengl_Window.h Colorbar_Window.h \
SpherePosition_Widget.h ../Common/Gmsh.h ../Common/Message.h \ SpherePosition_Widget.h ../Common/Gmsh.h ../Common/Message.h \
../Mesh/Generator.h ../Parser/CreateFile.h ../Graphics/Draw.h \ ../Mesh/Generator.h ../Parser/CreateFile.h ../Graphics/Draw.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/Context.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/Context.h \
../DataStr/List.h ../Common/Options.h ../Parser/Parser.h \ ../Common/Options.h ../Parser/Parser.h ../DataStr/List.h \
../DataStr/Tree.h ../DataStr/avl.h ../Parser/OpenFile.h \ ../DataStr/Tree.h ../DataStr/avl.h ../Parser/OpenFile.h \
../Common/CommandLine.h Solvers.h ../Plugin/PluginManager.h \ ../Common/CommandLine.h Solvers.h ../Plugin/PluginManager.h \
../Plugin/Plugin.h ../Post/PView.h ../Post/PViewData.h \ ../Plugin/Plugin.h ../Post/PView.h ../Post/PViewData.h \
...@@ -93,26 +93,25 @@ Main.o: Main.cpp GUI.h Opengl_Window.h Colorbar_Window.h \ ...@@ -93,26 +93,25 @@ Main.o: Main.cpp GUI.h Opengl_Window.h Colorbar_Window.h \
../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Post/OctreePost.h \ ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Post/OctreePost.h \
../Common/Octree.h ../Common/OctreeInternals.h ../Mesh/BackgroundMesh.h ../Common/Octree.h ../Common/OctreeInternals.h ../Mesh/BackgroundMesh.h
Message.o: Message.cpp ../Common/Message.h ../Common/GmshUI.h \ Message.o: Message.cpp ../Common/Message.h ../Common/GmshUI.h \
../Common/Context.h ../DataStr/List.h ../Common/Options.h \ ../Common/Context.h ../Common/Options.h ../Post/ColorTable.h GUI.h \
../Post/ColorTable.h GUI.h Opengl_Window.h Colorbar_Window.h \ Opengl_Window.h Colorbar_Window.h Popup_Button.h \
Popup_Button.h SpherePosition_Widget.h GUI_Extras.h ../Common/OS.h SpherePosition_Widget.h GUI_Extras.h ../Common/OS.h
GUI.o: GUI.cpp ../Common/GmshUI.h ../Common/GmshDefines.h \ GUI.o: GUI.cpp ../Common/GmshUI.h ../Common/GmshDefines.h \
../Common/Message.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \ ../Common/Message.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \
../Common/Context.h ../DataStr/List.h ../Common/Options.h \ ../Common/Context.h ../Common/Options.h ../Post/ColorTable.h \
../Post/ColorTable.h ../Graphics/Draw.h ../Geo/SBoundingBox3d.h \ ../Graphics/Draw.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h GUI.h \
../Geo/SPoint3.h GUI.h Opengl_Window.h Colorbar_Window.h Popup_Button.h \ Opengl_Window.h Colorbar_Window.h Popup_Button.h \
SpherePosition_Widget.h Callbacks.h Win32Icon.h ../Parser/OpenFile.h \ SpherePosition_Widget.h Callbacks.h Win32Icon.h ../Parser/OpenFile.h \
../Common/CommandLine.h ../Mesh/Generator.h Solvers.h \ ../Common/CommandLine.h ../Mesh/Generator.h Solvers.h \
../Plugin/PluginManager.h ../Plugin/Plugin.h ../Post/PView.h \ ../Plugin/PluginManager.h ../Plugin/Plugin.h ../Post/PView.h \
../Post/PViewData.h ../Post/PViewOptions.h ../Post/ColorTable.h \ ../Post/PViewData.h ../Post/PViewOptions.h ../Post/ColorTable.h \
../Post/PViewDataList.h ../Post/PViewData.h ../Post/AdaptiveViews.h \ ../Post/PViewDataList.h ../Post/PViewData.h ../Post/AdaptiveViews.h \
../Common/GmshMatrix.h Shortcut_Window.h ../DataStr/List.h ../Common/GmshMatrix.h Shortcut_Window.h
GUI_Extras.o: GUI_Extras.cpp ../Common/GmshUI.h ../Common/GmshDefines.h \ GUI_Extras.o: GUI_Extras.cpp ../Common/GmshUI.h ../Common/GmshDefines.h \
../Parser/CreateFile.h ../Common/Options.h ../Post/ColorTable.h \ ../Parser/CreateFile.h ../Common/Options.h ../Post/ColorTable.h \
../Common/Context.h ../DataStr/List.h ../Graphics/Draw.h \ ../Common/Context.h ../Graphics/Draw.h ../Geo/SBoundingBox3d.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h GUI.h Opengl_Window.h \ ../Geo/SPoint3.h GUI.h Opengl_Window.h Colorbar_Window.h Popup_Button.h \
Colorbar_Window.h Popup_Button.h SpherePosition_Widget.h \ SpherePosition_Widget.h Shortcut_Window.h File_Picker.h
Shortcut_Window.h File_Picker.h
GUI_Projection.o: GUI_Projection.cpp ../Geo/GModelIO_Fourier.h \ GUI_Projection.o: GUI_Projection.cpp ../Geo/GModelIO_Fourier.h \
../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \ ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \
../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \
...@@ -125,10 +124,10 @@ GUI_Projection.o: GUI_Projection.cpp ../Geo/GModelIO_Fourier.h \ ...@@ -125,10 +124,10 @@ GUI_Projection.o: GUI_Projection.cpp ../Geo/GModelIO_Fourier.h \
../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \
../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h ../Graphics/Draw.h \ ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h ../Graphics/Draw.h \
../Common/Options.h ../Post/ColorTable.h ../Common/Context.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/Context.h \
../DataStr/List.h ../Parser/OpenFile.h ../Graphics/SelectBuffer.h \ ../Parser/OpenFile.h ../Graphics/SelectBuffer.h GUI_Projection.h \
GUI_Projection.h ../Common/GmshUI.h ../Geo/fourierProjectionFace.h \ ../Common/GmshUI.h ../Geo/fourierProjectionFace.h ../Geo/GModel.h \
../Geo/GModel.h ../Geo/Range.h GUI.h Opengl_Window.h Colorbar_Window.h \ ../Geo/Range.h GUI.h Opengl_Window.h Colorbar_Window.h Popup_Button.h \
Popup_Button.h SpherePosition_Widget.h Shortcut_Window.h GUI_Extras.h \ SpherePosition_Widget.h Shortcut_Window.h GUI_Extras.h \
../Geo/fourierFace.h ../Geo/GFace.h ../Geo/GModel.h ../Geo/Range.h \ ../Geo/fourierFace.h ../Geo/GFace.h ../Geo/GModel.h ../Geo/Range.h \
../Geo/fourierEdge.h ../Geo/GEdge.h ../Geo/GModel.h \ ../Geo/fourierEdge.h ../Geo/GEdge.h ../Geo/GModel.h \
../Geo/fourierVertex.h ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/fourierVertex.h ../Geo/GModel.h ../Geo/GVertex.h \
...@@ -146,15 +145,15 @@ GUI_Classifier.o: GUI_Classifier.cpp GUI_Classifier.h ../Common/GmshUI.h \ ...@@ -146,15 +145,15 @@ GUI_Classifier.o: GUI_Classifier.cpp GUI_Classifier.h ../Common/GmshUI.h \
../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h GUI.h Opengl_Window.h \ ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h GUI.h Opengl_Window.h \
Colorbar_Window.h ../Post/ColorTable.h Popup_Button.h \ Colorbar_Window.h ../Post/ColorTable.h Popup_Button.h \
SpherePosition_Widget.h Shortcut_Window.h ../Graphics/Draw.h \ SpherePosition_Widget.h Shortcut_Window.h ../Graphics/Draw.h \
../Common/Options.h ../Common/Context.h ../DataStr/List.h \ ../Common/Options.h ../Common/Context.h ../Graphics/SelectBuffer.h \
../Graphics/SelectBuffer.h GUI_Projection.h \ GUI_Projection.h ../Geo/fourierProjectionFace.h ../Geo/GModel.h \
../Geo/fourierProjectionFace.h ../Geo/GModel.h ../Geo/Range.h \ ../Geo/Range.h GUI_Extras.h ../Common/Message.h \
GUI_Extras.h ../Common/Message.h ../Mesh/meshGFaceDelaunayInsertion.h \ ../Mesh/meshGFaceDelaunayInsertion.h ../Mesh/meshGFaceOptimize.h \
../Mesh/meshGFaceOptimize.h ../Mesh/meshGFaceDelaunayInsertion.h \ ../Mesh/meshGFaceDelaunayInsertion.h ../Geo/discreteEdge.h \
../Geo/discreteEdge.h ../Geo/GModel.h ../Geo/GEdge.h ../Geo/Geo.h \ ../Geo/GModel.h ../Geo/GEdge.h ../Geo/Geo.h ../Geo/gmshSurface.h \
../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h \ ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h ../Geo/SPoint3.h \
../Geo/SPoint3.h ../Geo/SVector3.h ../Geo/SBoundingBox3d.h \ ../Geo/SVector3.h ../Geo/SBoundingBox3d.h ../Numeric/Numeric.h \
../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../DataStr/Tree.h \ ../Numeric/NumericEmbedded.h ../DataStr/List.h ../DataStr/Tree.h \
../DataStr/avl.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h \ ../DataStr/avl.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h \
../Common/SmoothData.h ../Geo/discreteFace.h ../Geo/GModel.h \ ../Common/SmoothData.h ../Geo/discreteFace.h ../Geo/GModel.h \
../Geo/GFace.h ../Geo/Geo.h ../Geo/GFace.h ../Geo/Geo.h
...@@ -189,20 +188,6 @@ Callbacks.o: Callbacks.cpp ../Common/GmshUI.h ../Common/Message.h \ ...@@ -189,20 +188,6 @@ Callbacks.o: Callbacks.cpp ../Common/GmshUI.h ../Common/Message.h \
../Common/OctreeInternals.h ../Mesh/BackgroundMesh.h ../Common/OctreeInternals.h ../Mesh/BackgroundMesh.h
Opengl.o: Opengl.cpp ../Common/GmshUI.h ../Common/GmshDefines.h \ Opengl.o: Opengl.cpp ../Common/GmshUI.h ../Common/GmshDefines.h \
../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \ ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \
../DataStr/List.h ../Graphics/Draw.h ../Geo/SBoundingBox3d.h \
../Geo/SPoint3.h ../Graphics/SelectBuffer.h ../Geo/GVertex.h \
../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/SBoundingBox3d.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h \
../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \
../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h \
../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/SPoint2.h \
../Geo/SVector3.h ../Geo/Pair.h ../Geo/GRegion.h ../Geo/GEntity.h \
../Common/StringUtils.h GUI.h Opengl_Window.h Colorbar_Window.h \
../Post/ColorTable.h Popup_Button.h SpherePosition_Widget.h \
../Graphics/gl2ps.h
Opengl_Window.o: Opengl_Window.cpp ../Common/GmshUI.h \
../Common/GmshDefines.h ../Common/Message.h ../Numeric/Numeric.h \
../Numeric/NumericEmbedded.h ../Common/Context.h ../DataStr/List.h \
../Graphics/Draw.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ ../Graphics/Draw.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \
../Graphics/SelectBuffer.h ../Geo/GVertex.h ../Geo/GEntity.h \ ../Graphics/SelectBuffer.h ../Geo/GVertex.h ../Geo/GEntity.h \
../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/GPoint.h \ ../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/GPoint.h \
...@@ -210,18 +195,29 @@ Opengl_Window.o: Opengl_Window.cpp ../Common/GmshUI.h \ ...@@ -210,18 +195,29 @@ Opengl_Window.o: Opengl_Window.cpp ../Common/GmshUI.h \
../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \ ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \
../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \ ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \
../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \
../Geo/GRegion.h ../Geo/GEntity.h GUI.h Opengl_Window.h \ ../Geo/GRegion.h ../Geo/GEntity.h ../Common/StringUtils.h GUI.h \
Colorbar_Window.h ../Post/ColorTable.h Popup_Button.h \ Opengl_Window.h Colorbar_Window.h ../Post/ColorTable.h Popup_Button.h \
SpherePosition_Widget.h ../Graphics/gl2ps.h
Opengl_Window.o: Opengl_Window.cpp ../Common/GmshUI.h \
../Common/GmshDefines.h ../Common/Message.h ../Numeric/Numeric.h \
../Numeric/NumericEmbedded.h ../Common/Context.h ../Graphics/Draw.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Graphics/SelectBuffer.h \
../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/SBoundingBox3d.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h \
../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \
../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h \
../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/SPoint2.h \
../Geo/SVector3.h ../Geo/Pair.h ../Geo/GRegion.h ../Geo/GEntity.h GUI.h \
Opengl_Window.h Colorbar_Window.h ../Post/ColorTable.h Popup_Button.h \
SpherePosition_Widget.h ../Geo/MElement.h ../Geo/MVertex.h \ SpherePosition_Widget.h ../Geo/MElement.h ../Geo/MVertex.h \
../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \
../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h
Colorbar_Window.o: Colorbar_Window.cpp ../Common/GmshUI.h GUI.h \ Colorbar_Window.o: Colorbar_Window.cpp ../Common/GmshUI.h GUI.h \
Opengl_Window.h Colorbar_Window.h ../Post/ColorTable.h Popup_Button.h \ Opengl_Window.h Colorbar_Window.h ../Post/ColorTable.h Popup_Button.h \
SpherePosition_Widget.h ../Common/Context.h ../DataStr/List.h SpherePosition_Widget.h ../Common/Context.h
Solvers.o: Solvers.cpp ../Common/Message.h Solvers.h GmshServer.h \ Solvers.o: Solvers.cpp ../Common/Message.h Solvers.h GmshServer.h \
../Parser/OpenFile.h ../Common/GmshUI.h GUI.h Opengl_Window.h \ ../Parser/OpenFile.h ../Common/GmshUI.h GUI.h Opengl_Window.h \
Colorbar_Window.h ../Post/ColorTable.h Popup_Button.h \ Colorbar_Window.h ../Post/ColorTable.h Popup_Button.h \
SpherePosition_Widget.h ../Post/PView.h ../Post/PViewData.h \ SpherePosition_Widget.h ../Post/PView.h ../Post/PViewData.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \
../Post/ColorTable.h ../Graphics/Draw.h ../Common/Context.h \ ../Post/ColorTable.h ../Graphics/Draw.h ../Common/Context.h
../DataStr/List.h
# $Id: Makefile,v 1.191 2008-03-10 16:01:15 geuzaine Exp $ # $Id: Makefile,v 1.192 2008-03-11 22:30:31 geuzaine Exp $
# #
# Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle # Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
# #
...@@ -75,7 +75,7 @@ depend: ...@@ -75,7 +75,7 @@ depend:
# DO NOT DELETE THIS LINE # DO NOT DELETE THIS LINE
GEntity.o: GEntity.cpp GEntity.h Range.h SPoint3.h SBoundingBox3d.h \ GEntity.o: GEntity.cpp GEntity.h Range.h SPoint3.h SBoundingBox3d.h \
../Common/VertexArray.h ../Geo/SVector3.h ../Geo/SPoint3.h \ ../Common/VertexArray.h ../Geo/SVector3.h ../Geo/SPoint3.h \
../Common/Context.h ../DataStr/List.h ../Common/Context.h
GVertex.o: GVertex.cpp GVertex.h GEntity.h Range.h SPoint3.h \ GVertex.o: GVertex.cpp GVertex.h GEntity.h Range.h SPoint3.h \
SBoundingBox3d.h GPoint.h SPoint2.h GFace.h GEdgeLoop.h GEdge.h \ SBoundingBox3d.h GPoint.h SPoint2.h GFace.h GEdgeLoop.h GEdge.h \
SVector3.h Pair.h MVertex.h ../Common/Message.h SVector3.h Pair.h MVertex.h ../Common/Message.h
...@@ -92,8 +92,7 @@ GFace.o: GFace.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ ...@@ -92,8 +92,7 @@ GFace.o: GFace.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \
GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \ GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \
MVertex.h MEdge.h MFace.h ../Common/Message.h ../Numeric/Numeric.h \ MVertex.h MEdge.h MFace.h ../Common/Message.h ../Numeric/Numeric.h \
../Numeric/NumericEmbedded.h ../Numeric/GaussLegendre1D.h \ ../Numeric/NumericEmbedded.h ../Numeric/GaussLegendre1D.h \
../Common/VertexArray.h ../Geo/SVector3.h ../Common/Context.h \ ../Common/VertexArray.h ../Geo/SVector3.h ../Common/Context.h
../DataStr/List.h
GRegion.o: GRegion.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ GRegion.o: GRegion.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \
SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \
GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \ GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \
...@@ -134,13 +133,13 @@ OCCVertex.o: OCCVertex.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ ...@@ -134,13 +133,13 @@ OCCVertex.o: OCCVertex.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \
OCCEdge.o: OCCEdge.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ OCCEdge.o: OCCEdge.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \
SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \
GEdgeLoop.h Pair.h GRegion.h ../Common/Message.h OCCEdge.h OCCVertex.h \ GEdgeLoop.h Pair.h GRegion.h ../Common/Message.h OCCEdge.h OCCVertex.h \
OCCIncludes.h MVertex.h OCCFace.h ../Common/Context.h ../DataStr/List.h OCCIncludes.h MVertex.h OCCFace.h ../Common/Context.h
OCCFace.o: OCCFace.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ OCCFace.o: OCCFace.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \
SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \
GEdgeLoop.h Pair.h GRegion.h OCCVertex.h OCCIncludes.h MVertex.h \ GEdgeLoop.h Pair.h GRegion.h OCCVertex.h OCCIncludes.h MVertex.h \
OCCEdge.h OCCFace.h ../Common/Message.h ../Numeric/Numeric.h \ OCCEdge.h OCCFace.h ../Common/Message.h ../Numeric/Numeric.h \
../Numeric/NumericEmbedded.h ../Common/VertexArray.h ../Geo/SVector3.h \ ../Numeric/NumericEmbedded.h ../Common/VertexArray.h ../Geo/SVector3.h \
../Common/Context.h ../DataStr/List.h ../Common/Context.h
OCCRegion.o: OCCRegion.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ OCCRegion.o: OCCRegion.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \
SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \
GEdgeLoop.h Pair.h GRegion.h OCCVertex.h OCCIncludes.h MVertex.h \ GEdgeLoop.h Pair.h GRegion.h OCCVertex.h OCCIncludes.h MVertex.h \
...@@ -148,7 +147,7 @@ OCCRegion.o: OCCRegion.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ ...@@ -148,7 +147,7 @@ OCCRegion.o: OCCRegion.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \
fourierEdge.o: fourierEdge.cpp fourierEdge.h GEdge.h GEntity.h Range.h \ fourierEdge.o: fourierEdge.cpp fourierEdge.h GEdge.h GEntity.h Range.h \
SPoint3.h SBoundingBox3d.h GVertex.h GPoint.h SPoint2.h SVector3.h \ SPoint3.h SBoundingBox3d.h GVertex.h GPoint.h SPoint2.h SVector3.h \
GModel.h GFace.h GEdgeLoop.h Pair.h GRegion.h fourierVertex.h MVertex.h \ GModel.h GFace.h GEdgeLoop.h Pair.h GRegion.h fourierVertex.h MVertex.h \
../Common/Context.h ../DataStr/List.h ../Common/Context.h
fourierFace.o: fourierFace.cpp fourierVertex.h GModel.h GVertex.h \ fourierFace.o: fourierFace.cpp fourierVertex.h GModel.h GVertex.h \
GEntity.h Range.h SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h \ GEntity.h Range.h SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h \
SVector3.h GFace.h GEdgeLoop.h Pair.h GRegion.h MVertex.h fourierFace.h \ SVector3.h GFace.h GEdgeLoop.h Pair.h GRegion.h MVertex.h fourierFace.h \
...@@ -157,7 +156,7 @@ fourierProjectionFace.o: fourierProjectionFace.cpp \ ...@@ -157,7 +156,7 @@ fourierProjectionFace.o: fourierProjectionFace.cpp \
fourierProjectionFace.h GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ fourierProjectionFace.h GModel.h GVertex.h GEntity.h Range.h SPoint3.h \
SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \
GEdgeLoop.h Pair.h GRegion.h ../Common/VertexArray.h ../Geo/SVector3.h \ GEdgeLoop.h Pair.h GRegion.h ../Common/VertexArray.h ../Geo/SVector3.h \
../Common/Context.h ../DataStr/List.h ../Common/Context.h
GModel.o: GModel.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ GModel.o: GModel.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \
SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \ SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h GFace.h \
GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \ GEdgeLoop.h Pair.h GRegion.h MElement.h ../Common/GmshDefines.h \
...@@ -168,8 +167,8 @@ GModel.o: GModel.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ ...@@ -168,8 +167,8 @@ GModel.o: GModel.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \
../Geo/gmshSurface.h ../DataStr/List.h ../DataStr/Tree.h \ ../Geo/gmshSurface.h ../DataStr/List.h ../DataStr/Tree.h \
../DataStr/avl.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h \ ../DataStr/avl.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h \
../Common/SmoothData.h ../Geo/GEdge.h ../Post/OctreePost.h \ ../Common/SmoothData.h ../Geo/GEdge.h ../Post/OctreePost.h \
../Common/Octree.h ../Common/OctreeInternals.h ../Mesh/BackgroundMesh.h \ ../Common/Octree.h ../Common/OctreeInternals.h ../Mesh/Generator.h \
../Common/Context.h ../Mesh/BackgroundMesh.h ../Common/Context.h
GModelIO_Geo.o: GModelIO_Geo.cpp GModel.h GVertex.h GEntity.h Range.h \ GModelIO_Geo.o: GModelIO_Geo.cpp GModel.h GVertex.h GEntity.h Range.h \
SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h \ SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h SVector3.h \
GFace.h GEdgeLoop.h Pair.h GRegion.h Geo.h ../Common/GmshDefines.h \ GFace.h GEdgeLoop.h Pair.h GRegion.h Geo.h ../Common/GmshDefines.h \
...@@ -189,8 +188,8 @@ GModelIO_Mesh.o: GModelIO_Mesh.cpp GModel.h GVertex.h GEntity.h Range.h \ ...@@ -189,8 +188,8 @@ GModelIO_Mesh.o: GModelIO_Mesh.cpp GModel.h GVertex.h GEntity.h Range.h \
GModelIO_OCC.o: GModelIO_OCC.cpp GModelIO_OCC.h GModel.h GVertex.h \ GModelIO_OCC.o: GModelIO_OCC.cpp GModelIO_OCC.h GModel.h GVertex.h \
GEntity.h Range.h SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h \ GEntity.h Range.h SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h \
SVector3.h GFace.h GEdgeLoop.h Pair.h GRegion.h OCCIncludes.h \ SVector3.h GFace.h GEdgeLoop.h Pair.h GRegion.h OCCIncludes.h \
../Common/Message.h ../Common/Context.h ../DataStr/List.h OCCVertex.h \ ../Common/Message.h ../Common/Context.h OCCVertex.h MVertex.h OCCEdge.h \
MVertex.h OCCEdge.h OCCFace.h OCCRegion.h OCCFace.h OCCRegion.h
GModelIO_Fourier.o: GModelIO_Fourier.cpp GModel.h GVertex.h GEntity.h \ GModelIO_Fourier.o: GModelIO_Fourier.cpp GModel.h GVertex.h GEntity.h \
Range.h SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h \ Range.h SPoint3.h SBoundingBox3d.h GPoint.h SPoint2.h GEdge.h \
SVector3.h GFace.h GEdgeLoop.h Pair.h GRegion.h ../Common/Message.h \ SVector3.h GFace.h GEdgeLoop.h Pair.h GRegion.h ../Common/Message.h \
...@@ -241,11 +240,10 @@ MVertex.o: MVertex.cpp MVertex.h SPoint3.h GEdge.h GEntity.h Range.h \ ...@@ -241,11 +240,10 @@ MVertex.o: MVertex.cpp MVertex.h SPoint3.h GEdge.h GEntity.h Range.h \
SBoundingBox3d.h GVertex.h GPoint.h SPoint2.h SVector3.h GFace.h \ SBoundingBox3d.h GVertex.h GPoint.h SPoint2.h SVector3.h GFace.h \
GEdgeLoop.h Pair.h ../Common/Message.h GEdgeLoop.h Pair.h ../Common/Message.h
MFace.o: MFace.cpp MFace.h MVertex.h SPoint3.h SVector3.h \ MFace.o: MFace.cpp MFace.h MVertex.h SPoint3.h SVector3.h \
../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \ ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h
../DataStr/List.h
MElement.o: MElement.cpp MElement.h ../Common/GmshDefines.h MVertex.h \ MElement.o: MElement.cpp MElement.h ../Common/GmshDefines.h MVertex.h \
SPoint3.h MEdge.h SVector3.h MFace.h GEntity.h Range.h SBoundingBox3d.h \ SPoint3.h MEdge.h SVector3.h MFace.h GEntity.h Range.h SBoundingBox3d.h \
GFace.h GPoint.h GEdgeLoop.h GEdge.h GVertex.h SPoint2.h Pair.h \ GFace.h GPoint.h GEdgeLoop.h GEdge.h GVertex.h SPoint2.h Pair.h \
../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \ ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \
../Numeric/FunctionSpace.h ../Common/GmshMatrix.h ../Common/Message.h \ ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h ../Common/Message.h \
../Common/Context.h ../DataStr/List.h ../Mesh/qualityMeasures.h ../Common/Context.h ../Mesh/qualityMeasures.h
# $Id: Makefile,v 1.142 2008-02-24 19:59:03 geuzaine Exp $ # $Id: Makefile,v 1.143 2008-03-11 22:30:31 geuzaine Exp $
# #
# Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle # Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
# #
...@@ -72,16 +72,16 @@ depend: ...@@ -72,16 +72,16 @@ depend:
# DO NOT DELETE THIS LINE # DO NOT DELETE THIS LINE
Draw.o: Draw.cpp ../Common/GmshUI.h ../Common/GmshDefines.h \ Draw.o: Draw.cpp ../Common/GmshUI.h ../Common/GmshDefines.h \
../Common/Message.h Draw.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ ../Common/Message.h Draw.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \
../Common/Context.h ../DataStr/List.h ../Numeric/Numeric.h \ ../Common/Context.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \
../Numeric/NumericEmbedded.h ../Geo/GModel.h ../Geo/GVertex.h \ ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \
../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/GPoint.h \
../Geo/SBoundingBox3d.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h \ ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \
../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \ ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \
../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h \ ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \
../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/SPoint2.h \ ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \
../Geo/SVector3.h ../Geo/Pair.h ../Geo/GRegion.h ../Geo/GEntity.h \ ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SBoundingBox3d.h \
../Geo/SBoundingBox3d.h ../Post/PView.h ../Post/PViewData.h \ ../Post/PView.h ../Post/PViewData.h ../Post/PViewOptions.h \
../Post/PViewOptions.h ../Post/ColorTable.h ../Post/ColorTable.h
Mesh.o: Mesh.cpp ../Common/Message.h ../Common/GmshUI.h ../Geo/GModel.h \ Mesh.o: Mesh.cpp ../Common/Message.h ../Common/GmshUI.h ../Geo/GModel.h \
../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \
...@@ -93,24 +93,23 @@ Mesh.o: Mesh.cpp ../Common/Message.h ../Common/GmshUI.h ../Geo/GModel.h \ ...@@ -93,24 +93,23 @@ Mesh.o: Mesh.cpp ../Common/Message.h ../Common/GmshUI.h ../Geo/GModel.h \
../Geo/MElement.h ../Common/GmshDefines.h ../Geo/MVertex.h \ ../Geo/MElement.h ../Common/GmshDefines.h ../Geo/MVertex.h \
../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \
../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h Draw.h \ ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h Draw.h \
../Common/Context.h ../DataStr/List.h ../Common/OS.h gl2ps.h \ ../Common/Context.h ../Common/OS.h gl2ps.h ../Common/VertexArray.h \
../Common/VertexArray.h ../Common/Context.h ../Common/SmoothData.h ../Common/Context.h ../Common/SmoothData.h
Geom.o: Geom.cpp ../Common/GmshUI.h Draw.h ../Geo/SBoundingBox3d.h \ Geom.o: Geom.cpp ../Common/GmshUI.h Draw.h ../Geo/SBoundingBox3d.h \
../Geo/SPoint3.h ../Common/Context.h ../DataStr/List.h gl2ps.h \ ../Geo/SPoint3.h ../Common/Context.h gl2ps.h ../Common/VertexArray.h \
../Common/VertexArray.h ../Geo/SVector3.h ../Geo/SPoint3.h \ ../Geo/SVector3.h ../Geo/SPoint3.h ../Common/Context.h ../Geo/GModel.h \
../Common/Context.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/GPoint.h \ ../Geo/SBoundingBox3d.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h \
../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \ ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \
../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h \ ../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h \
../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h \
../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h ../Geo/GRegion.h \ ../Geo/Pair.h ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SBoundingBox3d.h
../Geo/GEntity.h ../Geo/SBoundingBox3d.h
Post.o: Post.cpp ../Common/Message.h ../Common/GmshUI.h \ Post.o: Post.cpp ../Common/Message.h ../Common/GmshUI.h \
../Numeric/Numeric.h ../Numeric/NumericEmbedded.h Draw.h \ ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h Draw.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h Iso.h ../Post/PView.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h Iso.h ../Post/PView.h \
../Post/PViewData.h ../Post/PViewOptions.h ../Post/ColorTable.h \ ../Post/PViewData.h ../Post/PViewOptions.h ../Post/ColorTable.h \
../Common/VertexArray.h ../Geo/SVector3.h ../Geo/SPoint3.h \ ../Common/VertexArray.h ../Geo/SVector3.h ../Geo/SPoint3.h \
../Common/Context.h ../DataStr/List.h ../Common/SmoothData.h gl2ps.h ../Common/Context.h ../Common/SmoothData.h gl2ps.h
SelectBuffer.o: SelectBuffer.cpp ../Common/Message.h ../Common/GmshUI.h \ SelectBuffer.o: SelectBuffer.cpp ../Common/Message.h ../Common/GmshUI.h \
../Common/GmshDefines.h ../Geo/GModel.h ../Geo/GVertex.h \ ../Common/GmshDefines.h ../Geo/GModel.h ../Geo/GVertex.h \
../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
...@@ -122,12 +121,12 @@ SelectBuffer.o: SelectBuffer.cpp ../Common/Message.h ../Common/GmshUI.h \ ...@@ -122,12 +121,12 @@ SelectBuffer.o: SelectBuffer.cpp ../Common/Message.h ../Common/GmshUI.h \
../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SBoundingBox3d.h \ ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SBoundingBox3d.h \
../Geo/MElement.h ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h \ ../Geo/MElement.h ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MEdge.h \
../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h \ ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h \
../Geo/SVector3.h Draw.h ../Common/Context.h ../DataStr/List.h \ ../Geo/SVector3.h Draw.h ../Common/Context.h SelectBuffer.h \
SelectBuffer.h ../Common/VertexArray.h ../Common/Context.h ../Common/VertexArray.h ../Common/Context.h
Iso.o: Iso.cpp ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h Iso.o: Iso.cpp ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h
Entity.o: Entity.cpp ../Common/GmshUI.h ../Numeric/Numeric.h \ Entity.o: Entity.cpp ../Common/GmshUI.h ../Numeric/Numeric.h \
../Numeric/NumericEmbedded.h Draw.h ../Geo/SBoundingBox3d.h \ ../Numeric/NumericEmbedded.h Draw.h ../Geo/SBoundingBox3d.h \
../Geo/SPoint3.h ../Common/Context.h ../DataStr/List.h gl2ps.h ../Geo/SPoint3.h ../Common/Context.h gl2ps.h
ReadImg.o: ReadImg.cpp ReadImg.h ../Common/Message.h ../Common/GmshUI.h \ ReadImg.o: ReadImg.cpp ReadImg.h ../Common/Message.h ../Common/GmshUI.h \
../Post/PView.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ ../Post/PView.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \
../Geo/SPoint3.h ../Post/PViewOptions.h ../Post/ColorTable.h \ ../Geo/SPoint3.h ../Post/PViewOptions.h ../Post/ColorTable.h \
...@@ -135,12 +134,11 @@ ReadImg.o: ReadImg.cpp ReadImg.h ../Common/Message.h ../Common/GmshUI.h \ ...@@ -135,12 +134,11 @@ ReadImg.o: ReadImg.cpp ReadImg.h ../Common/Message.h ../Common/GmshUI.h \
../DataStr/List.h ../Common/GmshMatrix.h ../DataStr/List.h ../Common/GmshMatrix.h
Scale.o: Scale.cpp ../Common/GmshUI.h Draw.h ../Geo/SBoundingBox3d.h \ Scale.o: Scale.cpp ../Common/GmshUI.h Draw.h ../Geo/SBoundingBox3d.h \
../Geo/SPoint3.h ../Post/PView.h ../Post/PViewData.h \ ../Geo/SPoint3.h ../Post/PView.h ../Post/PViewData.h \
../Post/PViewOptions.h ../Post/ColorTable.h ../Common/Context.h \ ../Post/PViewOptions.h ../Post/ColorTable.h ../Common/Context.h gl2ps.h
../DataStr/List.h gl2ps.h
Graph2D.o: Graph2D.cpp ../Common/GmshUI.h Draw.h ../Geo/SBoundingBox3d.h \ Graph2D.o: Graph2D.cpp ../Common/GmshUI.h Draw.h ../Geo/SBoundingBox3d.h \
../Geo/SPoint3.h ../Post/PView.h ../Post/PViewData.h \ ../Geo/SPoint3.h ../Post/PView.h ../Post/PViewData.h \
../Post/PViewOptions.h ../Post/ColorTable.h gl2ps.h ../Common/Context.h \ ../Post/PViewOptions.h ../Post/ColorTable.h gl2ps.h ../Common/Context.h \
../DataStr/List.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h
gl2ps.o: gl2ps.cpp gl2ps.h gl2ps.o: gl2ps.cpp gl2ps.h
gl2gif.o: gl2gif.cpp gl2gif.h PixelBuffer.h ../Common/GmshUI.h \ gl2gif.o: gl2gif.cpp gl2gif.h PixelBuffer.h ../Common/GmshUI.h \
../Common/Message.h ../DataStr/Malloc.h Draw.h ../Geo/SBoundingBox3d.h \ ../Common/Message.h ../DataStr/Malloc.h Draw.h ../Geo/SBoundingBox3d.h \
......
# $Id: Makefile,v 1.206 2008-02-24 19:59:03 geuzaine Exp $ # $Id: Makefile,v 1.207 2008-03-11 22:30:31 geuzaine Exp $
# #
# Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle # Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
# #
...@@ -85,11 +85,11 @@ depend: ...@@ -85,11 +85,11 @@ depend:
# DO NOT DELETE THIS LINE # DO NOT DELETE THIS LINE
Generator.o: Generator.cpp ../Common/Message.h ../Numeric/Numeric.h \ Generator.o: Generator.cpp ../Common/Message.h ../Numeric/Numeric.h \
../Numeric/NumericEmbedded.h ../Common/Context.h ../DataStr/List.h \ ../Numeric/NumericEmbedded.h ../Common/Context.h ../Post/PView.h \
../Post/PView.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \
../Geo/SPoint3.h ../Post/PViewOptions.h ../Post/ColorTable.h \ ../Post/PViewOptions.h ../Post/ColorTable.h ../Common/OS.h \
../Common/OS.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h \ ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \
../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/GPoint.h \ ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/GPoint.h \
../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \ ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \
../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \ ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \
../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \ ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \
...@@ -150,12 +150,12 @@ meshGFace.o: meshGFace.cpp meshGFace.h meshGFaceBDS.h \ ...@@ -150,12 +150,12 @@ meshGFace.o: meshGFace.cpp meshGFace.h meshGFaceBDS.h \
../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \ ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \
../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \ ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \
../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \
../Common/Context.h ../DataStr/List.h ../Common/Message.h \ ../Common/Context.h ../Common/Message.h ../Numeric/Numeric.h \
../Numeric/Numeric.h ../Numeric/NumericEmbedded.h BDS.h ../Post/PView.h \ ../Numeric/NumericEmbedded.h BDS.h ../Post/PView.h ../Post/PViewData.h \
../Post/PViewData.h ../Post/PViewOptions.h ../Post/ColorTable.h \ ../Post/PViewOptions.h ../Post/ColorTable.h qualityMeasures.h Field.h \
qualityMeasures.h Field.h ../Geo/Geo.h ../Geo/gmshSurface.h \ ../Geo/Geo.h ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h \
../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h ../Geo/SPoint3.h \ ../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \
../Geo/SVector3.h ../Geo/SBoundingBox3d.h ../DataStr/Tree.h \ ../Geo/SBoundingBox3d.h ../DataStr/List.h ../DataStr/Tree.h \
../DataStr/avl.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h \ ../DataStr/avl.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h \
../Common/SmoothData.h ../Post/OctreePost.h ../Common/Octree.h \ ../Common/SmoothData.h ../Post/OctreePost.h ../Common/Octree.h \
../Common/OctreeInternals.h ../Common/OS.h ../Common/OctreeInternals.h ../Common/OS.h
...@@ -169,8 +169,8 @@ meshGFaceTransfinite.o: meshGFaceTransfinite.cpp meshGFace.h \ ...@@ -169,8 +169,8 @@ meshGFaceTransfinite.o: meshGFaceTransfinite.cpp meshGFace.h \
../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MElement.h \ ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MElement.h \
../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/MEdge.h \ ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/MEdge.h \
../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h \ ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h \
../Geo/SVector3.h ../Common/Context.h ../DataStr/List.h \ ../Geo/SVector3.h ../Common/Context.h ../Common/Message.h \
../Common/Message.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h
meshGFaceExtruded.o: meshGFaceExtruded.cpp ../Geo/GModel.h \ meshGFaceExtruded.o: meshGFaceExtruded.cpp ../Geo/GModel.h \
../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \
...@@ -183,7 +183,7 @@ meshGFaceExtruded.o: meshGFaceExtruded.cpp ../Geo/GModel.h \ ...@@ -183,7 +183,7 @@ meshGFaceExtruded.o: meshGFaceExtruded.cpp ../Geo/GModel.h \
../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \
../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \
../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Common/Context.h \ ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Common/Context.h \
../DataStr/List.h ../Common/Message.h ../Common/Message.h
meshGFaceBDS.o: meshGFaceBDS.cpp meshGFace.h meshGFaceOptimize.h \ meshGFaceBDS.o: meshGFaceBDS.cpp meshGFace.h meshGFaceOptimize.h \
../Geo/MElement.h ../Common/GmshDefines.h ../Geo/MVertex.h \ ../Geo/MElement.h ../Common/GmshDefines.h ../Geo/MVertex.h \
../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \
...@@ -195,17 +195,16 @@ meshGFaceBDS.o: meshGFaceBDS.cpp meshGFace.h meshGFaceOptimize.h \ ...@@ -195,17 +195,16 @@ meshGFaceBDS.o: meshGFaceBDS.cpp meshGFace.h meshGFaceOptimize.h \
../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h \ ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/GFace.h \
../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \
../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h ../Common/Context.h \ ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h ../Common/Context.h \
../DataStr/List.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEdge.h \ ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEdge.h ../Geo/GFace.h \
../Geo/GFace.h ../Geo/GRegion.h ../Geo/GEntity.h \ ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SBoundingBox3d.h \
../Geo/SBoundingBox3d.h ../Common/Message.h ../Numeric/Numeric.h \ ../Common/Message.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h \
../Numeric/NumericEmbedded.h BDS.h ../Post/PView.h ../Post/PViewData.h \ BDS.h ../Post/PView.h ../Post/PViewData.h ../Post/PViewOptions.h \
../Post/PViewOptions.h ../Post/ColorTable.h qualityMeasures.h Field.h \ ../Post/ColorTable.h qualityMeasures.h Field.h ../Geo/Geo.h \
../Geo/Geo.h ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h \ ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h \
../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/SVector3.h ../Geo/SBoundingBox3d.h \
../Geo/SBoundingBox3d.h ../DataStr/Tree.h ../DataStr/avl.h \ ../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h ../Geo/SPoint2.h \
../Geo/SPoint2.h ../Geo/ExtrudeParams.h ../Common/SmoothData.h \ ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Post/OctreePost.h \
../Post/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h \ ../Common/Octree.h ../Common/OctreeInternals.h ../Common/OS.h
../Common/OS.h
meshGFaceDelaunayInsertion.o: meshGFaceDelaunayInsertion.cpp BDS.h \ meshGFaceDelaunayInsertion.o: meshGFaceDelaunayInsertion.cpp BDS.h \
../Geo/GFace.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/GFace.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \
...@@ -274,8 +273,7 @@ meshGRegionTransfinite.o: meshGRegionTransfinite.cpp meshGFace.h \ ...@@ -274,8 +273,7 @@ meshGRegionTransfinite.o: meshGRegionTransfinite.cpp meshGFace.h \
../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MElement.h \ ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/MElement.h \
../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/MEdge.h \ ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/MEdge.h \
../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h \ ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h \
../Geo/SVector3.h ../Common/Context.h ../DataStr/List.h \ ../Geo/SVector3.h ../Common/Context.h ../Common/Message.h
../Common/Message.h
meshGRegionExtruded.o: meshGRegionExtruded.cpp ../Geo/GModel.h \ meshGRegionExtruded.o: meshGRegionExtruded.cpp ../Geo/GModel.h \
../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \
...@@ -288,7 +286,7 @@ meshGRegionExtruded.o: meshGRegionExtruded.cpp ../Geo/GModel.h \ ...@@ -288,7 +286,7 @@ meshGRegionExtruded.o: meshGRegionExtruded.cpp ../Geo/GModel.h \
../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \
../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \
../Geo/ExtrudeParams.h ../Common/SmoothData.h meshGFace.h meshGRegion.h \ ../Geo/ExtrudeParams.h ../Common/SmoothData.h meshGFace.h meshGRegion.h \
../Common/Context.h ../DataStr/List.h ../Common/Message.h ../Common/Context.h ../Common/Message.h
meshGRegionCarveHole.o: meshGRegionCarveHole.cpp ../Geo/GModel.h \ meshGRegionCarveHole.o: meshGRegionCarveHole.cpp ../Geo/GModel.h \
../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \
...@@ -314,21 +312,21 @@ DivideAndConquer.o: DivideAndConquer.cpp ../Common/Message.h \ ...@@ -314,21 +312,21 @@ DivideAndConquer.o: DivideAndConquer.cpp ../Common/Message.h \
../DataStr/Malloc.h ../DataStr/Malloc.h
BackgroundMesh.o: BackgroundMesh.cpp ../Common/Message.h BackgroundMesh.h \ BackgroundMesh.o: BackgroundMesh.cpp ../Common/Message.h BackgroundMesh.h \
../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \ ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \
../DataStr/List.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \ ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \
../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h \ ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \
../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h \ ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \
../Geo/SPoint2.h ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h \ ../Geo/GFace.h ../Geo/GEntity.h ../Geo/GPoint.h ../Geo/GEdgeLoop.h \
../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h \ ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \
../Geo/Pair.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEdge.h \ ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEdge.h ../Geo/GFace.h \
../Geo/GFace.h ../Geo/GRegion.h ../Geo/GEntity.h \ ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SBoundingBox3d.h Field.h \
../Geo/SBoundingBox3d.h Field.h ../Post/PView.h ../Post/PViewData.h \ ../Post/PView.h ../Post/PViewData.h ../Post/PViewOptions.h \
../Post/PViewOptions.h ../Post/ColorTable.h ../Geo/Geo.h \ ../Post/ColorTable.h ../Geo/Geo.h ../Common/GmshDefines.h \
../Common/GmshDefines.h ../Geo/gmshSurface.h ../Geo/Pair.h \ ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h \
../Geo/Range.h ../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \ ../Geo/SPoint3.h ../Geo/SVector3.h ../Geo/SBoundingBox3d.h \
../Geo/SBoundingBox3d.h ../DataStr/Tree.h ../DataStr/avl.h \ ../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h ../Geo/SPoint2.h \
../Geo/SPoint2.h ../Geo/ExtrudeParams.h ../Common/SmoothData.h \ ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Post/OctreePost.h \
../Post/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h ../Common/Octree.h ../Common/OctreeInternals.h
qualityMeasures.o: qualityMeasures.cpp qualityMeasures.h BDS.h \ qualityMeasures.o: qualityMeasures.cpp qualityMeasures.h BDS.h \
../Geo/GFace.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ ../Geo/GFace.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \
../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \ ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/GPoint.h \
...@@ -379,4 +377,4 @@ HighOrder.o: HighOrder.cpp HighOrder.h ../Geo/GModel.h ../Geo/GVertex.h \ ...@@ -379,4 +377,4 @@ HighOrder.o: HighOrder.cpp HighOrder.h ../Geo/GModel.h ../Geo/GVertex.h \
../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ ../Geo/SVector3.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \
meshGFaceDelaunayInsertion.h ../Common/Message.h ../Common/OS.h \ meshGFaceDelaunayInsertion.h ../Common/Message.h ../Common/OS.h \
../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \ ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Context.h \
../DataStr/List.h ../Common/GmshMatrix.h ../Numeric/FunctionSpace.h ../Common/GmshMatrix.h ../Numeric/FunctionSpace.h
# $Id: Makefile,v 1.142 2008-02-24 19:59:03 geuzaine Exp $ # $Id: Makefile,v 1.143 2008-03-11 22:30:32 geuzaine Exp $
# #
# Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle # Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
# #
...@@ -128,10 +128,10 @@ CreateFile.o: CreateFile.cpp ../Common/Message.h ../Geo/GModel.h \ ...@@ -128,10 +128,10 @@ CreateFile.o: CreateFile.cpp ../Common/Message.h ../Geo/GModel.h \
../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ ../Geo/GEdge.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \
../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SBoundingBox3d.h \ ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/SBoundingBox3d.h \
../Common/GmshDefines.h OpenFile.h ../Common/Context.h \ ../Common/GmshDefines.h OpenFile.h ../Common/Context.h \
../DataStr/List.h ../Common/Options.h ../Post/ColorTable.h \ ../Common/Options.h ../Post/ColorTable.h ../Common/GmshUI.h \
../Common/GmshUI.h ../Graphics/gl2ps.h ../Graphics/gl2gif.h \ ../Graphics/gl2ps.h ../Graphics/gl2gif.h ../Graphics/PixelBuffer.h \
../Graphics/PixelBuffer.h ../DataStr/Malloc.h ../Graphics/Draw.h \ ../DataStr/Malloc.h ../Graphics/Draw.h ../Graphics/gl2jpeg.h \
../Graphics/gl2jpeg.h ../Graphics/PixelBuffer.h ../Graphics/gl2png.h \ ../Graphics/PixelBuffer.h ../Graphics/gl2png.h \
../Graphics/PixelBuffer.h ../Graphics/gl2ppm.h \ ../Graphics/PixelBuffer.h ../Graphics/gl2ppm.h \
../Graphics/PixelBuffer.h ../Graphics/gl2yuv.h \ ../Graphics/PixelBuffer.h ../Graphics/gl2yuv.h \
../Graphics/PixelBuffer.h ../Graphics/PixelBuffer.h
......
# $Id: Makefile,v 1.32 2008-03-10 16:01:16 geuzaine Exp $ # $Id: Makefile,v 1.33 2008-03-11 22:30:32 geuzaine Exp $
# #
# Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle # Copyright (C) 1997-2008 C. Geuzaine, J.-F. Remacle
# #
...@@ -129,5 +129,4 @@ OctreePost.o: OctreePost.cpp ../Common/Octree.h \ ...@@ -129,5 +129,4 @@ OctreePost.o: OctreePost.cpp ../Common/Octree.h \
../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Message.h \ ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h ../Common/Message.h \
../Common/ShapeFunctions.h ../Common/ShapeFunctions.h
ColorTable.o: ColorTable.cpp ../Common/Message.h ColorTable.h \ ColorTable.o: ColorTable.cpp ../Common/Message.h ColorTable.h \
../Common/Context.h ../DataStr/List.h ../Numeric/Numeric.h \ ../Common/Context.h ../Numeric/Numeric.h ../Numeric/NumericEmbedded.h
../Numeric/NumericEmbedded.h
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment