From 2727fe77e04cec965c12bf5c40b54188cfdc0e64 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Fri, 18 Jan 2008 20:02:30 +0000 Subject: [PATCH] First pass at getting the core to compile with Microsoft Visual C++ --- Box/Makefile | 54 +- Common/Makefile | 92 +- DataStr/Makefile | 26 +- Geo/GModel.h | 10 +- Geo/Makefile | 237 +- Geo/gmshSurface.h | 1 + Makefile | 4 +- Mesh/BDS.cpp | 6 +- Mesh/Makefile | 356 +-- Mesh/meshGFace.cpp | 37 +- Mesh/meshGRegionDelaunayInsertion.cpp | 8 +- Mesh/meshGRegionDelaunayInsertion.h | 2 +- Numeric/Makefile | 34 +- Numeric/Numeric.h | 4 + Numeric/predicates.cpp | 6 +- Parallel/Makefile | 24 +- Parser/Gmsh.l | 6 +- Parser/Gmsh.y | 4 +- Parser/Gmsh.yy.cpp | 4 +- Parser/Makefile | 120 +- Plugin/Makefile | 274 +- Post/Makefile | 75 +- configure | 179 +- configure.in | 144 +- contrib/ANN/Makefile | 37 +- contrib/MathEval/Makefile | 12 +- contrib/NR/Makefile | 43 +- contrib/Netgen/Makefile | 4165 +------------------------ contrib/Tetgen/Makefile | 4 +- contrib/Triangle/Makefile | 3 +- variables.in | 17 +- 31 files changed, 399 insertions(+), 5589 deletions(-) diff --git a/Box/Makefile b/Box/Makefile index fcaba91ba5..731cb2491a 100644 --- a/Box/Makefile +++ b/Box/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.38 2007-09-14 19:30:21 geuzaine Exp $ +# $Id: Makefile,v 1.39 2008-01-18 20:02:27 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -21,27 +21,28 @@ include ../variables -LIB = ../lib/libGmshBox.a -INCLUDE = -I../Common -I../DataStr -I../Geo -I../Mesh -I../Post -I../Graphics\ - -I../Numeric -I../Parser -I../Fltk -I../Plugin -I../Parallel\ - -I../contrib/ANN/include -CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} +LIB = ../lib/libGmshBox${LIBEXT} +INCLUDE = ${ISYM}../Common ${ISYM}../DataStr ${ISYM}../Geo ${ISYM}../Mesh\ + ${ISYM}../Post ${ISYM}../Graphics ${ISYM}../Numeric ${ISYM}../Parser\ + ${ISYM}../Fltk ${ISYM}../Plugin ${ISYM}../Parallel\ + ${ISYM}../contrib/ANN/include +CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} SRC = Box.cpp -OBJ = ${SRC:.cpp=.o} +OBJ = ${SRC:.cpp=${OBJEXT}} -.SUFFIXES: .o .cpp +.SUFFIXES: ${OBJEXT} .cpp -${LIB}: ${OBJ} Main.o - ${AR} ${LIB} ${OBJ} +${LIB}: ${OBJ} Main${OBJEXT} + ${AR} ${ARFLAGS}${LIB} ${OBJ} ${RANLIB} ${LIB} -.cpp.o: - ${CXX} ${CFLAGS} -c $< +.cpp${OBJEXT}: + ${CXX} ${CFLAGS} ${CSYM} $< clean: - rm -f *.o + rm -f *${OBJEXT} depend: (sed '/^# DO NOT DELETE THIS LINE/q' Makefile && \ @@ -52,30 +53,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -Box.o: Box.cpp ../Common/Gmsh.h ../Common/Message.h ../DataStr/Malloc.h \ - ../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h \ - ../DataStr/List.h ../DataStr/Tree.h ../Common/OS.h ../Numeric/Numeric.h \ - ../Geo/Geo.h ../Common/GmshDefines.h ../Geo/gmshSurface.h ../Geo/Pair.h \ - ../Geo/Range.h ../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Geo/SPoint2.h ../Geo/ExtrudeParams.h ../Common/SmoothData.h \ - ../Mesh/Generator.h ../Parser/Parser.h ../Common/Context.h \ - ../Common/Options.h ../Post/ColorTable.h ../Parser/OpenFile.h \ - ../Common/CommandLine.h ../Parser/CreateFile.h ../Parallel/ParUtil.h \ - ../Plugin/PluginManager.h ../Plugin/Plugin.h ../Post/PView.h \ - ../Common/VertexArray.h ../Post/PViewData.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/PViewData.h \ - ../Post/AdaptiveViews.h ../Common/GmshMatrix.h ../Geo/GModel.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/MVertex.h ../Geo/SPoint3.h \ - ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h ../Geo/GEntity.h \ - ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \ - ../Geo/MElement.h ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h \ - ../Geo/SVector3.h ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h \ - ../Geo/SVector3.h ../Geo/ExtrudeParams.h ../Geo/GFace.h ../Geo/GPoint.h \ - ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/MElement.h \ - ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h ../Geo/ExtrudeParams.h \ - ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/MElement.h \ - ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h ../Mesh/Field.h \ - ../contrib/ANN/include/ANN/ANN.h ../Post/OctreePost.h \ - ../Common/Octree.h ../Common/OctreeInternals.h ../Mesh/BackgroundMesh.h diff --git a/Common/Makefile b/Common/Makefile index da9e4a798d..701def9f17 100644 --- a/Common/Makefile +++ b/Common/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.144 2007-09-26 20:51:58 geuzaine Exp $ +# $Id: Makefile,v 1.145 2008-01-18 20:02:27 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -21,11 +21,12 @@ include ../variables -LIB = ../lib/libGmshCommon.a -INCLUDE = -I../Common -I../DataStr -I../Geo -I../Mesh -I../Post -I../Graphics\ - -I../Numeric -I../Parser -I../Plugin -I../Fltk\ - -I../contrib/MathEval -I../contrib/ANN/include/ -CFLAGS =${OPTIM} ${FLAGS} ${INCLUDE} +LIB = ../lib/libGmshCommon${LIBEXT} +INCLUDE = ${ISYM}../Common ${ISYM}../DataStr ${ISYM}../Geo ${ISYM}../Mesh\ + ${ISYM}../Post ${ISYM}../Graphics ${ISYM}../Numeric ${ISYM}../Parser\ + ${ISYM}../Plugin ${ISYM}../Fltk ${ISYM}../contrib/MathEval\ + ${ISYM}../contrib/ANN/include +CFLAGS =${OPTIM} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} SRC = Context.cpp\ Octree.cpp OctreeInternals.cpp\ @@ -38,19 +39,19 @@ SRC = Context.cpp\ SmoothData.cpp\ License.cpp -OBJ = ${SRC:.cpp=.o} +OBJ = ${SRC:.cpp=${OBJEXT}} -.SUFFIXES: .o .cpp +.SUFFIXES: ${OBJEXT} .cpp ${LIB}: ${OBJ} - ${AR} ${LIB} ${OBJ} + ${AR} ${ARFLAGS}${LIB} ${OBJ} ${RANLIB} ${LIB} -.cpp.o: - ${CXX} ${CFLAGS} -c $< +.cpp${OBJEXT}: + ${CXX} ${CFLAGS} ${CSYM} $< clean: - rm -f *.o + rm -f *${OBJEXT} depend: (sed '/^# DO NOT DELETE THIS LINE/q' Makefile && \ @@ -61,70 +62,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -Context.o: Context.cpp Gmsh.h Message.h ../DataStr/Malloc.h \ - ../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h \ - ../DataStr/List.h ../DataStr/Tree.h ../Numeric/Numeric.h Context.h \ - DefaultOptions.h GmshDefines.h Options.h ../Post/ColorTable.h \ - Trackball.h -Octree.o: Octree.cpp Octree.h OctreeInternals.h -OctreeInternals.o: OctreeInternals.cpp Message.h OctreeInternals.h -Options.o: Options.cpp Gmsh.h Message.h ../DataStr/Malloc.h \ - ../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h \ - ../DataStr/List.h ../DataStr/Tree.h GmshUI.h GmshDefines.h \ - ../Graphics/Draw.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Post/PViewOptions.h ../Post/ColorTable.h \ - ../Mesh/Generator.h Context.h Options.h ../Mesh/BackgroundMesh.h \ - ../Plugin/PluginManager.h ../Plugin/Plugin.h ../Common/Options.h \ - ../Common/Message.h ../Post/PViewDataList.h ../Post/PViewData.h \ - ../Post/AdaptiveViews.h ../Common/GmshMatrix.h ../Fltk/Solvers.h \ - ../Fltk/GUI.h ../Fltk/Opengl_Window.h ../Fltk/Colorbar_Window.h \ - ../Common/GmshUI.h ../Fltk/Popup_Button.h \ - ../Fltk/SpherePosition_Widget.h -CommandLine.o: CommandLine.cpp Gmsh.h Message.h ../DataStr/Malloc.h \ - ../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h \ - ../DataStr/List.h ../DataStr/Tree.h GmshUI.h GmshDefines.h \ - GmshVersion.h CommandLine.h ../Numeric/Numeric.h Context.h Options.h \ - ../Post/ColorTable.h ../Post/PView.h ../Common/SmoothData.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Parser/OpenFile.h \ - ../Parser/CreateFile.h ../Parser/Parser.h ../Geo/GModel.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Common/GmshDefines.h ../Geo/MVertex.h \ - ../Geo/SPoint3.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/MElement.h ../Geo/MVertex.h \ - ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Hash.h \ - ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Context.h \ - ../Geo/ExtrudeParams.h ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h \ - ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/MElement.h ../Geo/SPoint2.h \ - ../Geo/SVector3.h ../Geo/Pair.h ../Geo/ExtrudeParams.h ../Geo/GRegion.h \ - ../Geo/GEntity.h ../Geo/MElement.h ../Geo/ExtrudeParams.h \ - ../Geo/SBoundingBox3d.h OS.h -OS.o: OS.cpp Message.h -Visibility.o: Visibility.cpp Visibility.h GmshDefines.h ../Geo/GVertex.h \ - ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/GmshDefines.h \ - ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ - ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/GModel.h \ - ../Geo/GVertex.h ../Geo/GEdge.h ../Geo/GFace.h ../Geo/GRegion.h \ - ../Geo/SBoundingBox3d.h ../Parser/Parser.h ../DataStr/Tree.h \ - ../DataStr/avl.h -Trackball.o: Trackball.cpp Trackball.h -VertexArray.o: VertexArray.cpp VertexArray.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h Context.h ../DataStr/List.h ../Numeric/Numeric.h -SmoothData.o: SmoothData.cpp Gmsh.h Message.h ../DataStr/Malloc.h \ - ../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h \ - ../DataStr/List.h ../DataStr/Tree.h ../Numeric/Numeric.h SmoothData.h -License.o: License.cpp Gmsh.h Message.h ../DataStr/Malloc.h \ - ../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h \ - ../DataStr/List.h ../DataStr/Tree.h diff --git a/DataStr/Makefile b/DataStr/Makefile index d94a976e6e..8a8c7c0729 100644 --- a/DataStr/Makefile +++ b/DataStr/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.39 2007-07-09 13:54:36 geuzaine Exp $ +# $Id: Makefile,v 1.40 2008-01-18 20:02:27 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -21,9 +21,9 @@ include ../variables -LIB = ../lib/libGmshDataStr.a -INCLUDE = -I../Common -CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} +LIB = ../lib/libGmshDataStr${LIBEXT} +INCLUDE = ${ISYM}../Common +CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} SRC = List.cpp \ Malloc.cpp \ @@ -32,19 +32,19 @@ SRC = List.cpp \ avl.cpp \ Tools.cpp -OBJ = ${SRC:.cpp=.o} +OBJ = ${SRC:.cpp=${OBJEXT}} -.SUFFIXES: .o .cpp +.SUFFIXES: ${OBJEXT} .cpp ${LIB}: ${OBJ} - ${AR} ${LIB} ${OBJ} + ${AR} ${ARFLAGS}${LIB} ${OBJ} ${RANLIB} ${LIB} -.cpp.o: - ${CXX} ${CFLAGS} -c $< +.cpp${OBJEXT}: + ${CXX} ${CFLAGS} ${CSYM} $< clean: - rm -f *.o + rm -f *${OBJEXT} depend: (sed '/^# DO NOT DELETE THIS LINE/q' Makefile && \ @@ -55,9 +55,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -List.o: List.cpp Malloc.h List.h ../Common/Message.h SafeIO.h -Malloc.o: Malloc.cpp Malloc.h ../Common/Message.h -SafeIO.o: SafeIO.cpp SafeIO.h ../Common/Message.h -Tree.o: Tree.cpp Malloc.h Tree.h avl.h ../Common/Message.h -avl.o: avl.cpp avl.h Malloc.h -Tools.o: Tools.cpp Tools.h List.h Tree.h avl.h diff --git a/Geo/GModel.h b/Geo/GModel.h index d0bcc47d5a..976221af85 100644 --- a/Geo/GModel.h +++ b/Geo/GModel.h @@ -69,11 +69,11 @@ class GModel // returns the current model static GModel *current(); - typedef std::set<GRegion*, GEntityLessThan>::iterator riter; - typedef std::set<GFace*, GEntityLessThan>::iterator fiter; - typedef std::set<GEdge*, GEntityLessThan>::iterator eiter; - typedef std::set<GVertex*, GEntityLessThan>::iterator viter; - typedef std::map<int, std::string>::iterator piter; + typedef std::set<GRegion*, GEntityLessThan>::const_iterator riter; + typedef std::set<GFace*, GEntityLessThan>::const_iterator fiter; + typedef std::set<GEdge*, GEntityLessThan>::const_iterator eiter; + typedef std::set<GVertex*, GEntityLessThan>::const_iterator viter; + typedef std::map<int, std::string>::const_iterator piter; // Deletes everything in a GModel void destroy(); diff --git a/Geo/Makefile b/Geo/Makefile index efc63abba1..8481dd3a3a 100644 --- a/Geo/Makefile +++ b/Geo/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.168 2007-11-12 10:49:16 geuzaine Exp $ +# $Id: Makefile,v 1.169 2008-01-18 20:02:27 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -21,11 +21,12 @@ include ../variables -LIB = ../lib/libGmshGeo.a -INCLUDE = -I../Common -I../DataStr -I../Geo -I../Mesh -I../Post -I../Numeric\ - -I../Parser -I../Fltk -I../contrib/NR -I../contrib/ANN/include\ - -I../contrib/MathEval -CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} +LIB = ../lib/libGmshGeo${LIBEXT} +INCLUDE = ${ISYM}../Common ${ISYM}../DataStr ${ISYM}../Geo ${ISYM}../Mesh\ + ${ISYM}../Post ${ISYM}../Numeric ${ISYM}../Parser ${ISYM}../Fltk\ + ${ISYM}../contrib/NR ${ISYM}../contrib/ANN/include\ + ${ISYM}../contrib/MathEval +CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} SRC = GEntity.cpp\ GVertex.cpp GEdge.cpp GEdgeLoop.cpp GFace.cpp GRegion.cpp\ @@ -47,19 +48,19 @@ SRC = GEntity.cpp\ MVertex.cpp \ MElement.cpp -OBJ = ${SRC:.cpp=.o} +OBJ = ${SRC:.cpp=${OBJEXT}} -.SUFFIXES: .o .cpp +.SUFFIXES: ${OBJEXT} .cpp ${LIB}: ${OBJ} - ${AR} ${LIB} ${OBJ} + ${AR} ${ARFLAGS}${LIB} ${OBJ} ${RANLIB} ${LIB} -.cpp.o: - ${CXX} ${CFLAGS} -c $< +.cpp${OBJEXT}: + ${CXX} ${CFLAGS} ${CSYM} $< clean: - rm -f *.o + rm -f *${OBJEXT} depend: (sed '/^# DO NOT DELETE THIS LINE/q' Makefile && \ @@ -70,215 +71,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -GEntity.o: GEntity.cpp GEntity.h Range.h SPoint3.h SBoundingBox3d.h \ - ../Common/GmshDefines.h ../Common/VertexArray.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Common/Context.h ../DataStr/List.h -GVertex.o: GVertex.cpp GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GFace.h GEdgeLoop.h GEdge.h SVector3.h MElement.h MEdge.h \ - ../Common/Hash.h MFace.h ../Numeric/Numeric.h ../Common/Context.h \ - ../DataStr/List.h ExtrudeParams.h ../Common/SmoothData.h Pair.h \ - ../Common/Message.h -GEdge.o: GEdge.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h -GEdgeLoop.o: GEdgeLoop.cpp GEdgeLoop.h GEdge.h GEntity.h Range.h \ - SPoint3.h SBoundingBox3d.h ../Common/GmshDefines.h GVertex.h MVertex.h \ - GPoint.h SPoint2.h SVector3.h MElement.h MEdge.h ../Common/Hash.h \ - MFace.h ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h ../Common/Message.h -GFace.o: GFace.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h ../Common/Message.h -GRegion.o: GRegion.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h -gmshVertex.o: gmshVertex.cpp GFace.h GPoint.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h GEdgeLoop.h GEdge.h GVertex.h \ - MVertex.h SPoint2.h SVector3.h MElement.h MEdge.h ../Common/Hash.h \ - MFace.h ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h Pair.h gmshVertex.h Geo.h \ - gmshSurface.h ../DataStr/Tree.h ../DataStr/avl.h GeoInterpolation.h \ - ../Common/Message.h -gmshEdge.o: gmshEdge.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h gmshEdge.h Geo.h gmshSurface.h ../DataStr/Tree.h \ - ../DataStr/avl.h gmshVertex.h GeoInterpolation.h ../Common/Message.h -gmshFace.o: gmshFace.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h gmshVertex.h Geo.h gmshSurface.h ../DataStr/Tree.h \ - ../DataStr/avl.h gmshEdge.h gmshFace.h GeoInterpolation.h \ - ../Common/Message.h -gmshRegion.o: gmshRegion.cpp GModel.h GVertex.h GEntity.h Range.h \ - SPoint3.h SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h \ - SPoint2.h GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h \ - MFace.h ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h gmshFace.h Geo.h gmshSurface.h ../DataStr/Tree.h \ - ../DataStr/avl.h gmshVertex.h gmshRegion.h ../Common/Message.h -gmshSurface.o: gmshSurface.cpp gmshSurface.h Pair.h Range.h SPoint2.h \ - SPoint3.h SVector3.h SBoundingBox3d.h ../Common/Message.h -OCCVertex.o: OCCVertex.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h OCCVertex.h OCCIncludes.h OCCEdge.h OCCFace.h -OCCEdge.o: OCCEdge.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h ../Common/Message.h OCCEdge.h OCCVertex.h OCCIncludes.h \ - OCCFace.h -OCCFace.o: OCCFace.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h OCCVertex.h OCCIncludes.h OCCEdge.h OCCFace.h \ - ../Common/Message.h -OCCRegion.o: OCCRegion.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h OCCVertex.h OCCIncludes.h OCCEdge.h OCCFace.h OCCRegion.h \ - ../Common/Message.h -FEdge.o: FEdge.cpp ../Common/Message.h FEdge.h GEdge.h GEntity.h Range.h \ - SPoint3.h SBoundingBox3d.h ../Common/GmshDefines.h GVertex.h MVertex.h \ - GPoint.h SPoint2.h SVector3.h MElement.h MEdge.h ../Common/Hash.h \ - MFace.h ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GModel.h GFace.h GEdgeLoop.h \ - Pair.h GRegion.h FVertex.h -FFace.o: FFace.cpp FVertex.h GModel.h GVertex.h GEntity.h Range.h \ - SPoint3.h SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h \ - SPoint2.h GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h \ - MFace.h ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h FFace.h FEdge.h ../Common/Message.h -FProjectionFace.o: FProjectionFace.cpp FProjectionFace.h GModel.h \ - GVertex.h GEntity.h Range.h SPoint3.h SBoundingBox3d.h \ - ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h GEdge.h SVector3.h \ - MElement.h MEdge.h ../Common/Hash.h MFace.h ../Numeric/Numeric.h \ - ../Common/Context.h ../DataStr/List.h ExtrudeParams.h \ - ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h GRegion.h -GModel.o: GModel.cpp GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h \ - GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h gmshSurface.h ../Mesh/Field.h ../Post/PView.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Geo/Geo.h ../Geo/gmshSurface.h \ - ../DataStr/Tree.h ../DataStr/avl.h ../Geo/SPoint2.h \ - ../Geo/ExtrudeParams.h ../Geo/GEdge.h ../Post/OctreePost.h \ - ../Common/Octree.h ../Common/OctreeInternals.h ../Mesh/BackgroundMesh.h \ - ../Common/Message.h -GModelIO_Geo.o: GModelIO_Geo.cpp GModel.h GVertex.h GEntity.h Range.h \ - SPoint3.h SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h \ - SPoint2.h GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h \ - MFace.h ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h Geo.h gmshSurface.h ../DataStr/Tree.h ../DataStr/avl.h \ - ../Parser/OpenFile.h ../DataStr/Tools.h ../DataStr/List.h \ - ../DataStr/Tree.h ../Common/Message.h gmshVertex.h gmshFace.h \ - gmshEdge.h gmshRegion.h ../Parser/Parser.h -GModelIO_Mesh.o: GModelIO_Mesh.cpp ../Common/Message.h \ - ../Common/GmshDefines.h GModel.h GVertex.h GEntity.h Range.h SPoint3.h \ - SBoundingBox3d.h MVertex.h GPoint.h SPoint2.h GEdge.h SVector3.h \ - MElement.h MEdge.h ../Common/Hash.h MFace.h ../Numeric/Numeric.h \ - ../Common/Context.h ../DataStr/List.h ExtrudeParams.h \ - ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h GRegion.h \ - gmshRegion.h Geo.h gmshSurface.h ../DataStr/Tree.h ../DataStr/avl.h \ - gmshFace.h gmshVertex.h gmshEdge.h -GModelIO_OCC.o: GModelIO_OCC.cpp GModelIO_OCC.h GModel.h GVertex.h \ - GEntity.h Range.h SPoint3.h SBoundingBox3d.h ../Common/GmshDefines.h \ - MVertex.h GPoint.h SPoint2.h GEdge.h SVector3.h MElement.h MEdge.h \ - ../Common/Hash.h MFace.h ../Numeric/Numeric.h ../Common/Context.h \ - ../DataStr/List.h ExtrudeParams.h ../Common/SmoothData.h GFace.h \ - GEdgeLoop.h Pair.h GRegion.h OCCIncludes.h ../Common/Message.h \ - OCCVertex.h OCCEdge.h OCCFace.h OCCRegion.h -GModelIO_F.o: GModelIO_F.cpp GModel.h GVertex.h GEntity.h Range.h \ - SPoint3.h SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h \ - SPoint2.h GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h \ - MFace.h ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h ../Common/Message.h FVertex.h FEdge.h FFace.h GModelIO_F.h -GModelIO_CGNS.o: GModelIO_CGNS.cpp GModel.h GVertex.h GEntity.h Range.h \ - SPoint3.h SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h \ - SPoint2.h GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h \ - MFace.h ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h ../Common/Message.h MNeighbour.h -GModelIO_MED.o: GModelIO_MED.cpp GModel.h GVertex.h GEntity.h Range.h \ - SPoint3.h SBoundingBox3d.h ../Common/GmshDefines.h MVertex.h GPoint.h \ - SPoint2.h GEdge.h SVector3.h MElement.h MEdge.h ../Common/Hash.h \ - MFace.h ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h \ - GRegion.h ../Common/Message.h -ExtrudeParams.o: ExtrudeParams.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - Geo.h ../Common/GmshDefines.h gmshSurface.h Pair.h Range.h SPoint2.h \ - SPoint3.h SVector3.h SBoundingBox3d.h ExtrudeParams.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h -Geo.o: Geo.cpp ../Common/Gmsh.h ../Common/Message.h ../DataStr/Malloc.h \ - ../DataStr/List.h ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h \ - ../DataStr/List.h ../DataStr/Tree.h ../Numeric/Numeric.h Geo.h \ - ../Common/GmshDefines.h gmshSurface.h Pair.h Range.h SPoint2.h \ - SPoint3.h SVector3.h SBoundingBox3d.h ExtrudeParams.h \ - ../Common/SmoothData.h GModel.h GVertex.h GEntity.h MVertex.h GPoint.h \ - GEdge.h MElement.h MEdge.h ../Common/Hash.h MFace.h ../Common/Context.h \ - GFace.h GEdgeLoop.h GRegion.h GeoInterpolation.h ../Parser/Parser.h -GeoStringInterface.o: GeoStringInterface.cpp ../Common/Gmsh.h \ - ../Common/Message.h ../DataStr/Malloc.h ../DataStr/List.h \ - ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h \ - ../DataStr/Tree.h ../Numeric/Numeric.h Geo.h ../Common/GmshDefines.h \ - gmshSurface.h Pair.h Range.h SPoint2.h SPoint3.h SVector3.h \ - SBoundingBox3d.h ExtrudeParams.h ../Common/SmoothData.h \ - GeoStringInterface.h ../Parser/Parser.h ../Parser/OpenFile.h \ - ../Common/Context.h GModel.h GVertex.h GEntity.h MVertex.h GPoint.h \ - GEdge.h MElement.h MEdge.h ../Common/Hash.h MFace.h GFace.h GEdgeLoop.h \ - GRegion.h -GeoInterpolation.o: GeoInterpolation.cpp ../Common/Gmsh.h \ - ../Common/Message.h ../DataStr/Malloc.h ../DataStr/List.h \ - ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h \ - ../DataStr/Tree.h Geo.h ../Common/GmshDefines.h gmshSurface.h Pair.h \ - Range.h SPoint2.h SPoint3.h SVector3.h SBoundingBox3d.h ExtrudeParams.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h GeoInterpolation.h \ - GeoStringInterface.h -findLinks.o: findLinks.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - GModel.h GVertex.h GEntity.h Range.h SPoint3.h SBoundingBox3d.h \ - ../Common/GmshDefines.h MVertex.h GPoint.h SPoint2.h GEdge.h SVector3.h \ - MElement.h MEdge.h ../Common/Hash.h MFace.h ../Numeric/Numeric.h \ - ../Common/Context.h ExtrudeParams.h ../Common/SmoothData.h GFace.h \ - GEdgeLoop.h Pair.h GRegion.h -MVertex.o: MVertex.cpp MVertex.h SPoint3.h GEdge.h GEntity.h Range.h \ - SBoundingBox3d.h ../Common/GmshDefines.h GVertex.h GPoint.h SPoint2.h \ - SVector3.h MElement.h MEdge.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ExtrudeParams.h ../Common/SmoothData.h GFace.h GEdgeLoop.h Pair.h -MElement.o: MElement.cpp MElement.h ../Common/GmshDefines.h MVertex.h \ - SPoint3.h MEdge.h SVector3.h ../Common/Hash.h MFace.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h GEntity.h \ - Range.h SBoundingBox3d.h GFace.h GPoint.h GEdgeLoop.h GEdge.h GVertex.h \ - SPoint2.h ExtrudeParams.h ../Common/SmoothData.h Pair.h \ - ../Common/Message.h ../Mesh/qualityMeasures.h diff --git a/Geo/gmshSurface.h b/Geo/gmshSurface.h index f09883a6da..4fc98fa8c8 100644 --- a/Geo/gmshSurface.h +++ b/Geo/gmshSurface.h @@ -28,6 +28,7 @@ #include "SPoint3.h" #include "SVector3.h" #include "SBoundingBox3d.h" +#include "Numeric.h" class gmshSurface { diff --git a/Makefile b/Makefile index 644658b980..d1c5b40997 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.447 2008-01-07 21:32:57 geuzaine Exp $ +# $Id: Makefile,v 1.448 2008-01-18 20:02:27 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -37,7 +37,6 @@ all: link link: compile ${LINKER} ${OPTIM} -o bin/gmsh ${GMSH_LIBS} - ${POSTBUILD} link-mac-universal: compile ${LINKER} -arch i386 ${OPTIM} -o bin/gmsh_i386 ${GMSH_LIBS} @@ -293,7 +292,6 @@ distrib-mac: make link-mac-universal make package-mac make distrib-post - ${POSTBUILD} otool -L bin/gmsh distrib-mac-nightly: diff --git a/Mesh/BDS.cpp b/Mesh/BDS.cpp index 00131e7940..9730b05640 100644 --- a/Mesh/BDS.cpp +++ b/Mesh/BDS.cpp @@ -1,4 +1,4 @@ -// $Id: BDS.cpp,v 1.89 2008-01-17 17:48:38 remacle Exp $ +// $Id: BDS.cpp,v 1.90 2008-01-18 20:02:28 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -1144,7 +1144,7 @@ bool test_move_point_parametric_triangle (BDS_Point * p, double u, double v, BDS double a[2] = {pb[0]-pa[0],pb[1]-pa[1]}; double b[2] = {pc[0]-pa[0],pc[1]-pa[1]}; - double area_init = fabs(a[1] * b[2] - a[2] * b[1]); + double area_init = fabs(a[0] * b[1] - a[1] * b[0]); if (area_init == 0.0) return true; @@ -1159,7 +1159,7 @@ bool test_move_point_parametric_triangle (BDS_Point * p, double u, double v, BDS else return false; - double area_final = fabs(a[1] * b[2] - a[2] * b[1]); + double area_final = fabs(a[0] * b[1] - a[1] * b[0]); if (area_final < 0.1 * area_init)return false; double ori_final = gmsh::orient2d(pa, pb, pc); // allow to move a point when a triangle was flat diff --git a/Mesh/Makefile b/Mesh/Makefile index 9264ebbaf2..0646a0838a 100644 --- a/Mesh/Makefile +++ b/Mesh/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.189 2008-01-07 21:32:58 geuzaine Exp $ +# $Id: Makefile,v 1.190 2008-01-18 20:02:28 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -21,14 +21,16 @@ include ../variables -LIB = ../lib/libGmshMesh.a -INCLUDE = -I../Numeric -I../Common -I../DataStr -I../Geo -I../Mesh\ - -I../Post -I../Graphics -I../Parser -I../Fltk\ - -I../contrib/NR -I../contrib/Triangle -I../contrib/Tetgen\ - -I../contrib/Netgen -I../contrib/Netgen/libsrc/include\ - -I../contrib/Netgen/libsrc/interface -I../contrib/ANN/include\ - -I../contrib/Metis -I../contrib/MathEval -CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} +LIB = ../lib/libGmshMesh${OBJEXT} +INCLUDE = ${ISYM}../Numeric ${ISYM}../Common ${ISYM}../DataStr ${ISYM}../Geo\ + ${ISYM}../Mesh ${ISYM}../Post ${ISYM}../Graphics ${ISYM}../Parser\ + ${ISYM}../Fltk ${ISYM}../contrib/NR ${ISYM}../contrib/Triangle\ + ${ISYM}../contrib/Tetgen ${ISYM}../contrib/Netgen\ + ${ISYM}../contrib/Netgen/libsrc/include\ + ${ISYM}../contrib/Netgen/libsrc/interface\ + ${ISYM}../contrib/ANN/include ${ISYM}../contrib/Metis\ + ${ISYM}../contrib/MathEval +CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} SRC = Generator.cpp \ Field.cpp\ @@ -52,23 +54,23 @@ SRC = Generator.cpp \ BDS.cpp \ HighOrder.cpp -OBJ = ${SRC:.cpp=.o} +OBJ = ${SRC:.cpp=${OBJEXT}} -.SUFFIXES: .o .cpp +.SUFFIXES: ${OBJEXT} .cpp ${LIB}: ${OBJ} - ${AR} ${LIB} ${OBJ} + ${AR} ${ARFLAGS}${LIB} ${OBJ} ${RANLIB} ${LIB} -.cpp.o: - ${CXX} ${CFLAGS} -c $< +.cpp${OBJEXT}: + ${CXX} ${CFLAGS} ${CSYM} $< # Don't optimize BDS: it crashes with some flavors of gcc 4.1 (e.g. on debian etch) BDS.o: - ${CXX} ${FLAGS} ${INCLUDE} -c BDS.cpp + ${CXX} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} ${CSYM} BDS.cpp clean: - rm -f *.o + rm -f *${OBJEXT} depend: (sed '/^# DO NOT DELETE THIS LINE/q' Makefile && \ @@ -79,325 +81,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -Generator.o: Generator.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - ../Numeric/Numeric.h ../Common/Context.h ../Post/PView.h \ - ../Common/SmoothData.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h ../Post/PViewOptions.h ../Post/ColorTable.h \ - ../Common/OS.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h \ - ../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ - ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h ../Geo/MVertex.h ../Geo/MEdge.h \ - ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Hash.h ../Geo/MFace.h \ - ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/ExtrudeParams.h \ - ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h \ - ../Geo/GEdge.h ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/Pair.h ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - meshGEdge.h meshGFace.h meshGRegion.h BackgroundMesh.h BoundaryLayer.h \ - HighOrder.h -Field.o: Field.cpp ../Mesh/BDS.h ../Geo/GFace.h ../Geo/GPoint.h \ - ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/GmshDefines.h \ - ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h \ - ../Geo/GEntity.h ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/GPoint.h \ - ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h \ - ../Geo/SPoint2.h ../Geo/MElement.h ../Geo/MVertex.h ../Geo/MEdge.h \ - ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Hash.h ../Geo/MFace.h \ - ../Geo/MVertex.h ../Geo/SVector3.h ../Numeric/Numeric.h \ - ../Common/Context.h ../DataStr/List.h ../Geo/ExtrudeParams.h \ - ../Common/SmoothData.h ../Geo/MElement.h ../Geo/SPoint2.h \ - ../Geo/SVector3.h ../Geo/Pair.h ../Geo/ExtrudeParams.h ../Post/PView.h \ - ../Post/PViewData.h ../Post/PViewOptions.h ../Post/ColorTable.h \ - ../Common/Gmsh.h ../Common/Message.h ../DataStr/Malloc.h \ - ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h \ - ../DataStr/Tree.h Field.h ../Geo/Geo.h ../Geo/gmshSurface.h \ - ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h ../Geo/SPoint3.h \ - ../Geo/SVector3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint2.h \ - ../Geo/ExtrudeParams.h ../Post/OctreePost.h ../Common/Octree.h \ - ../Common/OctreeInternals.h ../Geo/GeoInterpolation.h ../Geo/Geo.h \ - ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEdge.h ../Geo/GFace.h \ - ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/MElement.h \ - ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h -meshGEdge.o: meshGEdge.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - meshGEdge.h ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/Range.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/GmshDefines.h ../Geo/GVertex.h ../Geo/GEntity.h \ - ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/GPoint.h ../Geo/SPoint2.h \ - ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \ - ../Geo/MElement.h ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h \ - ../Geo/SVector3.h ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h \ - ../Geo/SVector3.h ../Numeric/Numeric.h ../Common/Context.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ - ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h BackgroundMesh.h -meshGEdgeExtruded.o: meshGEdgeExtruded.cpp ../Geo/ExtrudeParams.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Geo/GModel.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/GmshDefines.h \ - ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Context.h ../DataStr/List.h ../Geo/ExtrudeParams.h \ - ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h \ - ../Geo/GEdge.h ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/Pair.h ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - ../Common/Message.h -meshGFace.o: meshGFace.cpp meshGFace.h meshGFaceDelaunayInsertion.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 ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h \ - ../Geo/SVector3.h ../Numeric/Numeric.h ../Common/Context.h \ - ../DataStr/List.h meshGFaceOptimize.h DivideAndConquer.h \ - BackgroundMesh.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Geo/MVertex.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/GEdge.h \ - ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h ../Geo/SPoint3.h \ - ../Geo/SPoint2.h ../Geo/MElement.h ../Geo/ExtrudeParams.h \ - ../Common/SmoothData.h ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h \ - ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/MElement.h ../Geo/SPoint2.h \ - ../Geo/SVector3.h ../Geo/Pair.h ../Geo/ExtrudeParams.h \ - ../Common/Message.h BDS.h ../Post/PView.h ../Post/PViewData.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h qualityMeasures.h -meshGFaceTransfinite.o: meshGFaceTransfinite.cpp meshGFace.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/GmshDefines.h \ - ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ - ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h ../Common/Message.h -meshGFaceExtruded.o: meshGFaceExtruded.cpp ../Geo/ExtrudeParams.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Geo/GModel.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/GmshDefines.h \ - ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Context.h ../DataStr/List.h ../Geo/ExtrudeParams.h \ - ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h \ - ../Geo/GEdge.h ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/Pair.h ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - ../Common/Message.h -meshGFaceDelaunayInsertion.o: meshGFaceDelaunayInsertion.cpp BDS.h \ - ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/Range.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/GmshDefines.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/MVertex.h \ - ../Geo/SPoint3.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/MElement.h \ - ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h ../Geo/ExtrudeParams.h \ - ../Post/PView.h ../Post/PViewData.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h BackgroundMesh.h meshGFaceDelaunayInsertion.h \ - meshGFace.h ../Common/Message.h -meshGFaceOptimize.o: meshGFaceOptimize.cpp meshGFaceOptimize.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 ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h \ - ../Geo/SVector3.h ../Numeric/Numeric.h ../Common/Context.h \ - ../DataStr/List.h ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h \ - ../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/GEntity.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/MVertex.h ../Geo/GPoint.h \ - ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/SPoint3.h ../Geo/SPoint2.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Common/SmoothData.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h -meshGRegion.o: meshGRegion.cpp meshGRegion.h \ - meshGRegionDelaunayInsertion.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 \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - qualityMeasures.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h \ - ../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h ../Geo/MVertex.h ../Geo/GPoint.h ../Geo/SPoint2.h \ - ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/MElement.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ - ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - ../Geo/gmshRegion.h ../Geo/Geo.h ../Geo/gmshSurface.h ../Geo/Pair.h \ - ../Geo/Range.h ../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \ - ../Geo/SBoundingBox3d.h ../DataStr/Tree.h ../DataStr/avl.h \ - ../Geo/SPoint2.h ../Geo/ExtrudeParams.h ../Geo/GRegion.h BDS.h \ - ../Post/PView.h ../Post/PViewData.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Common/Message.h -meshGRegionDelaunayInsertion.o: meshGRegionDelaunayInsertion.cpp \ - ../Common/OS.h BackgroundMesh.h meshGRegionLocalMeshMod.h \ - meshGRegionDelaunayInsertion.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 \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - qualityMeasures.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h \ - ../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h ../Geo/MVertex.h ../Geo/GPoint.h ../Geo/SPoint2.h \ - ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/MElement.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ - ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - meshGRegion.h ../Common/Message.h -meshGRegionTransfinite.o: meshGRegionTransfinite.cpp meshGFace.h \ - ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/Range.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/GmshDefines.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/MVertex.h \ - ../Geo/SPoint3.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/MElement.h \ - ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h ../Geo/ExtrudeParams.h \ - ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/MElement.h \ - ../Geo/ExtrudeParams.h ../Common/Message.h -meshGRegionExtruded.o: meshGRegionExtruded.cpp ../Geo/ExtrudeParams.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Geo/GModel.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/GmshDefines.h \ - ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Context.h ../DataStr/List.h ../Geo/ExtrudeParams.h \ - ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h \ - ../Geo/GEdge.h ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/Pair.h ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - meshGFace.h meshGRegion.h ../Common/Message.h -meshGRegionCarveHole.o: meshGRegionCarveHole.cpp ../Geo/GModel.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/GmshDefines.h \ - ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ - ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - ../Common/Message.h -meshGRegionLocalMeshMod.o: meshGRegionLocalMeshMod.cpp \ - meshGRegionLocalMeshMod.h meshGRegionDelaunayInsertion.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 ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h \ - ../Geo/SVector3.h ../Numeric/Numeric.h ../Common/Context.h \ - ../DataStr/List.h qualityMeasures.h ../Geo/GEntity.h ../Geo/Range.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/Message.h -DivideAndConquer.o: DivideAndConquer.cpp ../Common/Gmsh.h \ - ../Common/Message.h ../DataStr/Malloc.h ../DataStr/List.h \ - ../DataStr/Tree.h ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h \ - ../DataStr/Tree.h ../Numeric/Numeric.h DivideAndConquer.h -BackgroundMesh.o: BackgroundMesh.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - BackgroundMesh.h ../Numeric/Numeric.h ../Common/Context.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/GmshDefines.h \ - ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ - ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEdge.h \ - ../Geo/GFace.h ../Geo/GRegion.h ../Geo/GEntity.h ../Geo/MElement.h \ - ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h Field.h ../Post/PView.h \ - ../Post/PViewData.h ../Post/PViewOptions.h ../Post/ColorTable.h \ - ../Geo/Geo.h ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h \ - ../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h \ - ../Post/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h -qualityMeasures.o: qualityMeasures.cpp qualityMeasures.h BDS.h \ - ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/Range.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/GmshDefines.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/MVertex.h \ - ../Geo/SPoint3.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/MElement.h \ - ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h ../Geo/ExtrudeParams.h \ - ../Post/PView.h ../Post/PViewData.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h -BoundaryLayer.o: BoundaryLayer.cpp BoundaryLayer.h ../Geo/GModel.h \ - ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/GmshDefines.h \ - ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ - ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - meshGEdge.h meshGFace.h ../Common/Message.h -BDS.o: BDS.cpp ../Numeric/Numeric.h ../Common/GmshMatrix.h BDS.h \ - ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/Range.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/GmshDefines.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/MVertex.h \ - ../Geo/SPoint3.h ../Geo/GPoint.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Context.h ../DataStr/List.h ../Geo/ExtrudeParams.h \ - ../Common/SmoothData.h ../Geo/MElement.h ../Geo/SPoint2.h \ - ../Geo/SVector3.h ../Geo/Pair.h ../Geo/ExtrudeParams.h ../Post/PView.h \ - ../Post/PViewData.h ../Post/PViewOptions.h ../Post/ColorTable.h \ - ../Common/Message.h qualityMeasures.h -HighOrder.o: HighOrder.cpp HighOrder.h ../Geo/GModel.h ../Geo/GVertex.h \ - ../Geo/GEntity.h ../Geo/Range.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/GmshDefines.h \ - ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../DataStr/List.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ - ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - ../Common/Message.h ../Common/OS.h diff --git a/Mesh/meshGFace.cpp b/Mesh/meshGFace.cpp index 9a4670f893..af3ef98356 100644 --- a/Mesh/meshGFace.cpp +++ b/Mesh/meshGFace.cpp @@ -1,4 +1,4 @@ -// $Id: meshGFace.cpp,v 1.106 2008-01-17 17:48:38 remacle Exp $ +// $Id: meshGFace.cpp,v 1.107 2008-01-18 20:02:28 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -36,6 +36,7 @@ #include "BDS.h" #include "qualityMeasures.h" #include "Field.h" +#include "OS.h" extern Context_T CTX; @@ -834,8 +835,8 @@ void computeMeshSizeFieldAccuracy (GFace *gf, BDS_Mesh &m, double &avg, double & max_e = 0; nE = 0; GS = 0; - double oneoversqr2 = 1./sqrt(2); - double sqr2 = sqrt(2); + double oneoversqr2 = 1./sqrt(2.); + double sqr2 = sqrt(2.); while (it!= m.edges.end()) { if (!(*it)->deleted) @@ -852,7 +853,7 @@ void computeMeshSizeFieldAccuracy (GFace *gf, BDS_Mesh &m, double &avg, double & } } -bool computeElementShapes (GFace *gf, BDS_Mesh &m, double &worst, double &avg, double &best, int &nT, int &nbGQ) +void computeElementShapes (GFace *gf, BDS_Mesh &m, double &worst, double &avg, double &best, int &nT, int &nbGQ) { std::list<BDS_Face*>::iterator it = m.triangles.begin(); worst = 1.e22; @@ -877,7 +878,7 @@ bool computeElementShapes (GFace *gf, BDS_Mesh &m, double &worst, double &avg, d } -bool computeElementShapes (GFace *gf, double &worst, double &avg, double &best, int &nT, int &greaterThan ) +void computeElementShapes (GFace *gf, double &worst, double &avg, double &best, int &nT, int &greaterThan ) { worst = 1.e22; avg = 0.0; @@ -993,32 +994,32 @@ void RefineMesh ( GFace *gf, BDS_Mesh &m , const int NIT) if ((minL > MINE_ && maxL < MAXE_) || IT > (abs(NIT)))break; double maxE = MAXE_; double minE = MINE_; - clock_t t1 = clock(); + double t1 = Cpu(); // splitEdgePass_templateRefine ( gf, m, maxE, nb_split); splitEdgePass ( gf, m, maxE, nb_split,attr); //splitEdgePass_templateRefine ( gf, m, maxE, nb_split); //saturateEdgePass ( gf, m, maxE, nb_split); - clock_t t2 = clock(); + double t2 = Cpu(); swapEdgePass ( gf, m, nb_swap); swapEdgePass ( gf, m, nb_swap); swapEdgePass ( gf, m, nb_swap); - clock_t t3 = clock(); + double t3 = Cpu(); collapseEdgePass ( gf, m, minE , MAXNP, nb_collaps); - clock_t t4 = clock(); + double t4 = Cpu(); // swapEdgePass ( gf, m, nb_swap); - clock_t t5 = clock(); + double t5 = Cpu(); smoothVertexPass ( gf, m, nb_smooth); - clock_t t6 = clock(); + double t6 = Cpu(); // swapEdgePass ( gf, m, nb_swap); - clock_t t7 = clock(); + double t7 = Cpu(); // clean up the mesh - t_spl += (double)(t2-t1)/CLOCKS_PER_SEC; - t_sw += (double)(t3-t2)/CLOCKS_PER_SEC; - t_sw += (double)(t5-t4)/CLOCKS_PER_SEC; - t_sw += (double)(t7-t6)/CLOCKS_PER_SEC; - t_col += (double)(t4-t3)/CLOCKS_PER_SEC; - t_sm += (double)(t6-t5)/CLOCKS_PER_SEC; + t_spl += t2 - t1; + t_sw += t3 - t2; + t_sw += t5 - t4; + t_sw += t7 - t6; + t_col += t4 - t3; + t_sm += t6 - t5; double smallest, longest, old_mesh_quality = mesh_quality;int nE,NG; computeMeshSizeFieldAccuracy (gf, m, mesh_quality, smallest, longest,nE,NG); diff --git a/Mesh/meshGRegionDelaunayInsertion.cpp b/Mesh/meshGRegionDelaunayInsertion.cpp index 8daab584c4..38236bb153 100644 --- a/Mesh/meshGRegionDelaunayInsertion.cpp +++ b/Mesh/meshGRegionDelaunayInsertion.cpp @@ -1,4 +1,4 @@ -// $Id: meshGRegionDelaunayInsertion.cpp,v 1.28 2008-01-16 21:51:49 geuzaine Exp $ +// $Id: meshGRegionDelaunayInsertion.cpp,v 1.29 2008-01-18 20:02:28 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -787,11 +787,11 @@ void insertVerticesInRegion (GRegion *gr) std::list<MTet4*> theRegion; std::set<GFace *> faces_bound; GRegion *bidon = (GRegion*)123; - clock_t _t1 = clock(); + double _t1 = Cpu(); Msg (DEBUG2,"start with a non classified tet"); recur_classify ( *it , theRegion, faces_bound, bidon , gr->model(),search); - clock_t _t2 = clock(); - Msg (DEBUG2,"found %d tets with %d faces (%g sec for the classification)",theRegion.size(),faces_bound.size(),(double)(_t2-_t1)/CLOCKS_PER_SEC); + double _t2 = Cpu(); + Msg (DEBUG2,"found %d tets with %d faces (%g sec for the classification)",theRegion.size(),faces_bound.size(), _t2 - _t1); GRegion *myGRegion = getRegionFromBoundingFaces (gr->model() , faces_bound ); // Msg (INFO,"a region is found %p",myGRegion); if (myGRegion) // a geometrical region associated to the list of faces has been found diff --git a/Mesh/meshGRegionDelaunayInsertion.h b/Mesh/meshGRegionDelaunayInsertion.h index 68b9ca8bd5..40d9e05b48 100644 --- a/Mesh/meshGRegionDelaunayInsertion.h +++ b/Mesh/meshGRegionDelaunayInsertion.h @@ -103,7 +103,7 @@ class MTet4 void forceRadius (double r){circum_radius=r;} inline double getRadius ()const {return circum_radius;} inline double getQuality ()const {return circum_radius;} - inline double setQuality (const double &q){circum_radius=q;} + inline void setQuality (const double &q){circum_radius=q;} inline MTetrahedron * tet() const {return base;} inline MTetrahedron * &tet() {return base;} inline void setNeigh (int iN , MTet4 *n) {neigh[iN]=n;} diff --git a/Numeric/Makefile b/Numeric/Makefile index d688c90139..cf077280bd 100644 --- a/Numeric/Makefile +++ b/Numeric/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.38 2008-01-14 21:29:14 remacle Exp $ +# $Id: Makefile,v 1.39 2008-01-18 20:02:28 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -21,9 +21,9 @@ include ../variables -LIB = ../lib/libGmshNumeric.a -INCLUDE = -I../Common -I../DataStr -I../Numeric -I../contrib/NR -CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} +LIB = ../lib/libGmshNumeric${LIBEXT} +INCLUDE = ${ISYM}../Common ${ISYM}../DataStr ${ISYM}../Numeric ${ISYM}../contrib/NR +CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} SRC = Numeric.cpp\ EigSolve.cpp\ @@ -32,19 +32,19 @@ SRC = Numeric.cpp\ gsl_min.cpp\ gsl_brent.cpp -OBJ = ${SRC:.cpp=.o} +OBJ = ${SRC:.cpp=${OBJEXT}} -.SUFFIXES: .o .cpp +.SUFFIXES: ${OBJEXT} .cpp ${LIB}: ${OBJ} - ${AR} ${LIB} ${OBJ} + ${AR} ${ARFLAGS}${LIB} ${OBJ} ${RANLIB} ${LIB} -.cpp.o: - ${CXX} ${CFLAGS} -c $< +.cpp${OBJEXT}: + ${CXX} ${CFLAGS} ${CSYM} $< clean: - rm -f *.o + rm -f *${OBJEXT} depend: (sed '/^# DO NOT DELETE THIS LINE/q' Makefile && \ @@ -55,17 +55,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -Numeric.o: Numeric.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - Numeric.h -EigSolve.o: EigSolve.cpp -predicates.o: predicates.cpp -gsl_newt.o: gsl_newt.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - Numeric.h -gsl_brent.o: gsl_brent.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - Numeric.h diff --git a/Numeric/Numeric.h b/Numeric/Numeric.h index 326a1a6b9e..4051998d45 100644 --- a/Numeric/Numeric.h +++ b/Numeric/Numeric.h @@ -28,6 +28,10 @@ #define Pi 3.1415926535897932 #define Deux_Pi 6.2831853071795865 +#if !defined(M_PI) +#define M_PI Pi +#endif + #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)<(b))?(b):(a)) #define SQR(a) ((a)*(a)) diff --git a/Numeric/predicates.cpp b/Numeric/predicates.cpp index a50b80ab7c..c4c305d823 100644 --- a/Numeric/predicates.cpp +++ b/Numeric/predicates.cpp @@ -1,6 +1,3 @@ -namespace gmsh -{ - /*****************************************************************************/ /* */ /* Routines for Arbitrary Precision Floating-point Arithmetic */ @@ -126,6 +123,9 @@ namespace gmsh #include <fpu_control.h> #endif /* LINUX */ +namespace gmsh +{ + /* On some machines, the exact arithmetic routines might be defeated by the */ /* use of internal extended precision floating-point registers. Sometimes */ /* this problem can be fixed by defining certain values to be volatile, */ diff --git a/Parallel/Makefile b/Parallel/Makefile index cb1f8b1e2c..5bd8439f31 100644 --- a/Parallel/Makefile +++ b/Parallel/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.36 2007-07-09 13:54:37 geuzaine Exp $ +# $Id: Makefile,v 1.37 2008-01-18 20:02:29 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -21,25 +21,25 @@ include ../variables -LIB = ../lib/libGmshParallel.a -INCLUDE = -I../Common -I../DataStr -CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} +LIB = ../lib/libGmshParallel${LIBEXT} +INCLUDE = ${ISYM}../Common ${ISYM}../DataStr +CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} SRC = ParUtil.cpp -OBJ = ${SRC:.cpp=.o} +OBJ = ${SRC:.cpp=${OBJEXT}} -.SUFFIXES: .o .cpp +.SUFFIXES: ${OBJEXT} .cpp ${LIB}: ${OBJ} - ${AR} ${LIB} ${OBJ} + ${AR} ${ARFLAGS}${LIB} ${OBJ} ${RANLIB} ${LIB} -.cpp.o: - ${CXX} ${CFLAGS} -c $< +.cpp${OBJEXT}: + ${CXX} ${CFLAGS} ${CSYM} $< clean: - rm -f *.o + rm -f *${OBJEXT} depend: (sed '/^# DO NOT DELETE THIS LINE/q' Makefile && \ @@ -50,7 +50,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -ParUtil.o: ParUtil.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - ../Common/OS.h ParUtil.h diff --git a/Parser/Gmsh.l b/Parser/Gmsh.l index 27ca76c5ce..43dd180a9e 100644 --- a/Parser/Gmsh.l +++ b/Parser/Gmsh.l @@ -1,5 +1,5 @@ %{ -// $Id: Gmsh.l,v 1.93 2008-01-09 08:17:12 geuzaine Exp $ +// $Id: Gmsh.l,v 1.94 2008-01-18 20:02:29 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -54,6 +54,10 @@ void skipline(void); result = n; \ } \ +#if defined(WIN32) +#define isatty(arg) -1 +#endif + %} alpha [a-zA-Z\_] diff --git a/Parser/Gmsh.y b/Parser/Gmsh.y index bfb600a18a..f830479eb4 100644 --- a/Parser/Gmsh.y +++ b/Parser/Gmsh.y @@ -1,5 +1,5 @@ %{ -// $Id: Gmsh.y,v 1.291 2008-01-16 21:51:49 geuzaine Exp $ +// $Id: Gmsh.y,v 1.292 2008-01-18 20:02:29 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -36,7 +36,7 @@ #include "PViewDataList.h" #include "Options.h" #include "Colors.h" -#include "Parser.h" +#include "GmshParser.h" #include "OpenFile.h" #include "CommandLine.h" #include "FunctionManager.h" diff --git a/Parser/Gmsh.yy.cpp b/Parser/Gmsh.yy.cpp index f51a4b94b6..174a6fa093 100644 --- a/Parser/Gmsh.yy.cpp +++ b/Parser/Gmsh.yy.cpp @@ -847,7 +847,7 @@ int yy_flex_debug = 0; char *yytext; #line 1 "Gmsh.l" #line 2 "Gmsh.l" -// $Id: Gmsh.yy.cpp,v 1.337 2008-01-16 21:51:49 geuzaine Exp $ +// $Id: Gmsh.yy.cpp,v 1.338 2008-01-18 20:02:29 geuzaine Exp $ // // Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle // @@ -2424,6 +2424,8 @@ static void yy_load_buffer_state (void) extern int isatty (int ); #endif /* __cplusplus */ +#define isatty(arg) -1 + /* Initializes or reinitializes a buffer. * This function is sometimes called more than once on the same buffer, * such as during a yyrestart() or at EOF. diff --git a/Parser/Makefile b/Parser/Makefile index 367edd5b73..36550a8544 100644 --- a/Parser/Makefile +++ b/Parser/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.130 2007-09-26 20:52:01 geuzaine Exp $ +# $Id: Makefile,v 1.131 2008-01-18 20:02:29 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -21,11 +21,11 @@ include ../variables -LIB = ../lib/libGmshParser.a -INCLUDE = -I../Common -I../DataStr -I../Geo -I../Mesh -I../Post\ - -I../Graphics -I../Numeric -I../Fltk -I../Plugin -I../Parallel\ - -I../contrib/ANN/include -CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} +LIB = ../lib/libGmshParser${LIBEXT} +INCLUDE = ${ISYM}../Common ${ISYM}../DataStr ${ISYM}../Geo ${ISYM}../Mesh\ + ${ISYM}../Post ${ISYM}../Graphics ${ISYM}../Numeric ${ISYM}../Fltk\ + ${ISYM}../Plugin ${ISYM}../Parallel ${ISYM}../contrib/ANN/include +CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} SRC = Gmsh.tab.cpp\ Gmsh.yy.cpp\ @@ -33,31 +33,21 @@ SRC = Gmsh.tab.cpp\ CreateFile.cpp\ FunctionManager.cpp -OBJ = ${SRC:.cpp=.o} +OBJ = ${SRC:.cpp=${OBJEXT}} -.SUFFIXES: .o .cpp +.SUFFIXES: ${OBJEXT} .cpp ${LIB}: ${OBJ} - ${AR} ${LIB} ${OBJ} + ${AR} ${ARFLAGS}${LIB} ${OBJ} ${RANLIB} ${LIB} -.cpp.o: - ${CXX} ${CFLAGS} -c $< +.cpp${OBJEXT}: + ${CXX} ${CFLAGS} ${CSYM} $< # Don't optimize Gmsh.tab.o: on many architectures, g++ -O2 generates # assembly code too large to be addressed correctly Gmsh.tab.o: - ${CXX} ${FLAGS} ${INCLUDE} -c Gmsh.tab.cpp - -# Don't do this: it would be triggered when we check out a new version via CVS -# Gmsh.tab.cpp: Gmsh.y -# bison --output Gmsh.tab.cpp -d Gmsh.y -# if [ -r Gmsh.tab.cpp.h ]; then mv Gmsh.tab.cpp.h Gmsh.tab.hpp ; fi -# -# Gmsh.yy.cpp: Gmsh.l -# flex -oGmsh.yy.cpp Gmsh.l -# -# parser: Gmsh.yy.cpp Gmsh.tab.cpp + ${CXX} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} ${CSYM} Gmsh.tab.cpp parser: bison --output Gmsh.tab.cpp -d Gmsh.y @@ -76,89 +66,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -Gmsh.tab.o: Gmsh.tab.cpp ../Plugin/PluginManager.h ../Plugin/Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/PViewData.h ../Post/AdaptiveViews.h ../DataStr/List.h \ - ../Common/GmshMatrix.h ../Parallel/ParUtil.h ../Common/Gmsh.h \ - ../Common/Message.h ../DataStr/Malloc.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - ../Common/Context.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h \ - ../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ - ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h ../Geo/MVertex.h ../Geo/MEdge.h \ - ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Hash.h ../Geo/MFace.h \ - ../Geo/MVertex.h ../Geo/SVector3.h ../Geo/ExtrudeParams.h \ - ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h \ - ../Geo/GEdge.h ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h \ - ../Geo/Pair.h ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - ../Geo/Geo.h ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h \ - ../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint2.h ../Geo/ExtrudeParams.h \ - ../Geo/GeoInterpolation.h ../Geo/Geo.h ../Mesh/Generator.h \ - ../Graphics/Draw.h ../Common/Colors.h ../Common/Options.h Parser.h \ - OpenFile.h ../Common/CommandLine.h FunctionManager.h ../Common/OS.h \ - CreateFile.h ../Mesh/Field.h ../Post/OctreePost.h ../Common/Octree.h \ - ../Common/OctreeInternals.h ../Mesh/BackgroundMesh.h -Gmsh.yy.o: Gmsh.yy.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - ../Numeric/Numeric.h ../Geo/Geo.h ../Common/GmshDefines.h \ - ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h \ - ../Geo/SPoint3.h ../Geo/SVector3.h ../Geo/SPoint3.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Geo/SPoint2.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h Gmsh.tab.hpp -OpenFile.o: OpenFile.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - ../Geo/Geo.h ../Common/GmshDefines.h ../Geo/gmshSurface.h ../Geo/Pair.h \ - ../Geo/Range.h ../Geo/SPoint2.h ../Geo/SPoint3.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Geo/SPoint2.h ../Geo/ExtrudeParams.h ../Common/SmoothData.h \ - ../Numeric/Numeric.h ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h \ - ../Geo/Range.h ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h \ - ../Geo/MVertex.h ../Geo/SPoint3.h ../Geo/GPoint.h ../Geo/SPoint2.h \ - ../Geo/GEdge.h ../Geo/GEntity.h ../Geo/GVertex.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Geo/SPoint2.h ../Geo/MElement.h ../Geo/MVertex.h \ - ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Hash.h \ - ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Context.h \ - ../Geo/ExtrudeParams.h ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h \ - ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/MElement.h ../Geo/SPoint2.h \ - ../Geo/SVector3.h ../Geo/Pair.h ../Geo/ExtrudeParams.h ../Geo/GRegion.h \ - ../Geo/GEntity.h ../Geo/MElement.h ../Geo/ExtrudeParams.h \ - ../Geo/SBoundingBox3d.h Parser.h OpenFile.h ../Common/CommandLine.h \ - ../Post/PView.h ../Post/PViewData.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Graphics/ReadImg.h ../Common/OS.h \ - ../Mesh/HighOrder.h ../Common/GmshUI.h ../Graphics/Draw.h \ - ../Graphics/SelectBuffer.h ../Fltk/GUI.h ../Fltk/Opengl_Window.h \ - ../Fltk/Colorbar_Window.h ../Fltk/Popup_Button.h \ - ../Fltk/SpherePosition_Widget.h -CreateFile.o: CreateFile.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - OpenFile.h ../Common/Context.h ../Common/Options.h ../Post/ColorTable.h \ - ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Common/GmshDefines.h ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h ../Geo/MVertex.h ../Geo/MEdge.h \ - ../Geo/MVertex.h ../Geo/SVector3.h ../Common/Hash.h ../Geo/MFace.h \ - ../Geo/MVertex.h ../Geo/SVector3.h ../Numeric/Numeric.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Geo/GFace.h \ - ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h ../Geo/GEdge.h \ - ../Geo/MElement.h ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/Pair.h \ - ../Geo/ExtrudeParams.h ../Geo/GRegion.h ../Geo/GEntity.h \ - ../Geo/MElement.h ../Geo/ExtrudeParams.h ../Geo/SBoundingBox3d.h \ - ../Common/GmshUI.h ../Graphics/gl2ps.h ../Graphics/gl2gif.h \ - ../Graphics/PixelBuffer.h ../Graphics/Draw.h ../Graphics/gl2jpeg.h \ - ../Graphics/PixelBuffer.h ../Graphics/gl2png.h \ - ../Graphics/PixelBuffer.h ../Graphics/gl2ppm.h \ - ../Graphics/PixelBuffer.h ../Graphics/gl2yuv.h \ - ../Graphics/PixelBuffer.h -FunctionManager.o: FunctionManager.cpp FunctionManager.h diff --git a/Plugin/Makefile b/Plugin/Makefile index e9793c6262..1a3fe17a80 100644 --- a/Plugin/Makefile +++ b/Plugin/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.135 2008-01-10 14:56:54 remacle Exp $ +# $Id: Makefile,v 1.136 2008-01-18 20:02:29 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -21,11 +21,12 @@ include ../variables -LIB = ../lib/libGmshPlugin.a -INCLUDE = -I../Common -I../Graphics -I../DataStr -I../Geo -I../Mesh\ - -I../Post -I../Fltk -I../Numeric -I../contrib/ANN/include\ - -I../contrib/Triangle -I../contrib/MathEval -CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} +LIB = ../lib/libGmshPlugin${LIBEXT} +INCLUDE = ${ISYM}../Common ${ISYM}../Graphics ${ISYM}../DataStr ${ISYM}../Geo\ + ${ISYM}../Mesh ${ISYM}../Post ${ISYM}../Fltk ${ISYM}../Numeric\ + ${ISYM}../contrib/ANN/include ${ISYM}../contrib/Triangle\ + ${ISYM}../contrib/MathEval +CFLAGS = ${OPTIM} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} SRC = Plugin.cpp PluginManager.cpp\ Levelset.cpp\ @@ -35,7 +36,7 @@ SRC = Plugin.cpp PluginManager.cpp\ Eigenvectors.cpp Eigenvalues.cpp\ StreamLines.cpp CutGrid.cpp\ Transform.cpp\ - TransformLatLon.cpp\ + TransformLatLon.cpp\ Triangulate.cpp\ Warp.cpp SphericalRaise.cpp\ Skin.cpp\ @@ -47,19 +48,19 @@ SRC = Plugin.cpp PluginManager.cpp\ Probe.cpp\ HarmonicToTime.cpp ModulusPhase.cpp -OBJ = ${SRC:.cpp=.o} +OBJ = ${SRC:.cpp=${OBJEXT}} -.SUFFIXES: .o .cpp +.SUFFIXES: ${OBJEXT} .cpp ${LIB}: ${OBJ} - ${AR} ${LIB} ${OBJ} + ${AR} ${ARFLAGS}${LIB} ${OBJ} ${RANLIB} ${LIB} -.cpp.o: - ${CXX} ${CFLAGS} -c $< +.cpp${OBJEXT}: + ${CXX} ${CFLAGS} ${CSYM} $< clean: - rm -f *.o + rm -f *${OBJEXT} depend: (sed '/^# DO NOT DELETE THIS LINE/q' Makefile && \ @@ -70,250 +71,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -Plugin.o: Plugin.cpp Plugin.h ../Common/Options.h ../Post/ColorTable.h \ - ../Common/Message.h ../Post/PView.h ../Common/SmoothData.h \ - ../Numeric/Numeric.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h ../Post/PViewOptions.h ../Post/ColorTable.h \ - ../Post/PViewDataList.h ../Post/AdaptiveViews.h ../DataStr/List.h \ - ../Common/GmshMatrix.h -PluginManager.o: PluginManager.cpp Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h PluginManager.h CutMap.h \ - Levelset.h CutGrid.h StreamLines.h CutPlane.h CutParametric.h \ - CutSphere.h Skin.h ../DataStr/Tree.h ../DataStr/avl.h Extract.h \ - ExtractElements.h ExtractEdges.h HarmonicToTime.h ModulusPhase.h \ - Integrate.h Gradient.h Curl.h Divergence.h Annotate.h Remove.h \ - MakeSimplex.h Smooth.h Transform.h TransformLatLon.h Triangulate.h \ - Warp.h SphericalRaise.h Eigenvectors.h Eigenvalues.h Lambda2.h \ - Evaluate.h ../Post/OctreePost.h ../Common/Octree.h \ - ../Common/OctreeInternals.h Probe.h FieldView.h ../Common/Context.h -Levelset.o: Levelset.cpp Levelset.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h MakeSimplex.h -CutPlane.o: CutPlane.cpp CutPlane.h Levelset.h Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/AdaptiveViews.h ../DataStr/List.h ../Common/GmshMatrix.h \ - ../Common/Context.h ../Common/GmshUI.h ../Graphics/Draw.h -CutSphere.o: CutSphere.cpp CutSphere.h Levelset.h Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/AdaptiveViews.h ../DataStr/List.h ../Common/GmshMatrix.h \ - ../Common/Context.h ../Common/GmshUI.h ../Graphics/Draw.h -CutMap.o: CutMap.cpp CutMap.h Levelset.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Common/Context.h -Smooth.o: Smooth.cpp Smooth.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h -CutParametric.o: CutParametric.cpp ../Post/OctreePost.h \ - ../Common/Octree.h ../Common/OctreeInternals.h CutParametric.h Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/AdaptiveViews.h ../DataStr/List.h ../Common/GmshMatrix.h \ - ../Common/Context.h ../Common/GmshUI.h ../Graphics/Draw.h \ - ../contrib/MathEval/matheval.h -Lambda2.o: Lambda2.cpp Lambda2.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Common/ShapeFunctions.h -Eigenvectors.o: Eigenvectors.cpp Eigenvectors.h Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/AdaptiveViews.h ../DataStr/List.h ../Common/GmshMatrix.h \ - ../Numeric/EigSolve.h -Eigenvalues.o: Eigenvalues.cpp Eigenvalues.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h -StreamLines.o: StreamLines.cpp StreamLines.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Post/OctreePost.h \ - ../Common/Octree.h ../Common/OctreeInternals.h ../Common/Context.h \ - ../Common/GmshUI.h ../Graphics/Draw.h -CutGrid.o: CutGrid.cpp ../Post/OctreePost.h ../Common/Octree.h \ - ../Common/OctreeInternals.h CutGrid.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Common/Context.h \ - ../Common/GmshUI.h ../Graphics/Draw.h -Transform.o: Transform.cpp Transform.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h -Triangulate.o: Triangulate.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - ../Geo/gmshFace.h ../Geo/Geo.h ../Common/GmshDefines.h \ - ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h \ - ../Geo/SPoint3.h ../Geo/SVector3.h ../Geo/SBoundingBox3d.h \ - ../Geo/ExtrudeParams.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h ../Geo/GEdgeLoop.h \ - ../Geo/GEdge.h ../Geo/GVertex.h ../Geo/MVertex.h ../Geo/MElement.h \ - ../Geo/MEdge.h ../Common/Hash.h ../Geo/MFace.h ../Common/Context.h \ - ../Geo/gmshVertex.h ../Geo/MVertex.h Triangulate.h Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/AdaptiveViews.h ../Common/GmshMatrix.h \ - ../contrib/Triangle/triangle.h -Warp.o: Warp.cpp Warp.h Plugin.h ../Common/Options.h ../Post/ColorTable.h \ - ../Common/Message.h ../Post/PView.h ../Common/SmoothData.h \ - ../Numeric/Numeric.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h ../Post/PViewOptions.h ../Post/ColorTable.h \ - ../Post/PViewDataList.h ../Post/AdaptiveViews.h ../DataStr/List.h \ - ../Common/GmshMatrix.h -SphericalRaise.o: SphericalRaise.cpp SphericalRaise.h Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/AdaptiveViews.h ../DataStr/List.h ../Common/GmshMatrix.h -Skin.o: Skin.cpp Skin.h Plugin.h ../Common/Options.h ../Post/ColorTable.h \ - ../Common/Message.h ../Post/PView.h ../Common/SmoothData.h \ - ../Numeric/Numeric.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h ../Post/PViewOptions.h ../Post/ColorTable.h \ - ../Post/PViewDataList.h ../Post/AdaptiveViews.h ../DataStr/List.h \ - ../Common/GmshMatrix.h ../DataStr/Tree.h ../DataStr/avl.h \ - ../DataStr/Malloc.h ../Common/Context.h -Extract.o: Extract.cpp Extract.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../contrib/MathEval/matheval.h -ExtractElements.o: ExtractElements.cpp ExtractElements.h Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/AdaptiveViews.h ../DataStr/List.h ../Common/GmshMatrix.h -ExtractEdges.o: ExtractEdges.cpp ExtractEdges.h Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/AdaptiveViews.h ../DataStr/List.h ../Common/GmshMatrix.h \ - ../Mesh/BDS.h ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h \ - ../Geo/Range.h ../Geo/SBoundingBox3d.h ../Common/GmshDefines.h \ - ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/GVertex.h ../Geo/MVertex.h \ - ../Geo/SPoint2.h ../Geo/SVector3.h ../Geo/MElement.h ../Geo/MEdge.h \ - ../Common/Hash.h ../Geo/MFace.h ../Common/Context.h \ - ../Geo/ExtrudeParams.h ../Geo/Pair.h -MakeSimplex.o: MakeSimplex.cpp MakeSimplex.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h -Evaluate.o: Evaluate.cpp Evaluate.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Post/OctreePost.h \ - ../Common/Octree.h ../Common/OctreeInternals.h \ - ../contrib/MathEval/matheval.h -FieldView.o: FieldView.cpp FieldView.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Mesh/Field.h \ - ../contrib/ANN/include/ANN/ANN.h ../Geo/Geo.h ../Common/GmshDefines.h \ - ../Geo/gmshSurface.h ../Geo/Pair.h ../Geo/Range.h ../Geo/SPoint2.h \ - ../Geo/SVector3.h ../Geo/SBoundingBox3d.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../Geo/ExtrudeParams.h ../Geo/GEdge.h ../Geo/GEntity.h \ - ../Geo/GVertex.h ../Geo/MVertex.h ../Geo/GPoint.h ../Geo/MElement.h \ - ../Geo/MEdge.h ../Common/Hash.h ../Geo/MFace.h ../Common/Context.h \ - ../Post/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h -Integrate.o: Integrate.cpp Integrate.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Common/ShapeFunctions.h -Gradient.o: Gradient.cpp Gradient.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Common/ShapeFunctions.h -Curl.o: Curl.cpp Curl.h Plugin.h ../Common/Options.h ../Post/ColorTable.h \ - ../Common/Message.h ../Post/PView.h ../Common/SmoothData.h \ - ../Numeric/Numeric.h ../Post/PViewData.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h ../Post/PViewOptions.h ../Post/ColorTable.h \ - ../Post/PViewDataList.h ../Post/AdaptiveViews.h ../DataStr/List.h \ - ../Common/GmshMatrix.h ../Common/ShapeFunctions.h -Divergence.o: Divergence.cpp Divergence.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Common/ShapeFunctions.h -Annotate.o: Annotate.cpp Annotate.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Common/Context.h \ - ../Common/GmshUI.h ../Fltk/GUI.h ../Fltk/Opengl_Window.h \ - ../Fltk/Colorbar_Window.h ../Fltk/Popup_Button.h \ - ../Fltk/SpherePosition_Widget.h ../Graphics/Draw.h -Remove.o: Remove.cpp Remove.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h -Probe.o: Probe.cpp Probe.h Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Common/Context.h \ - ../Post/OctreePost.h ../Common/Octree.h ../Common/OctreeInternals.h \ - ../Common/GmshUI.h ../Graphics/Draw.h -HarmonicToTime.o: HarmonicToTime.cpp HarmonicToTime.h Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/AdaptiveViews.h ../DataStr/List.h ../Common/GmshMatrix.h -ModulusPhase.o: ModulusPhase.cpp ModulusPhase.h Plugin.h \ - ../Common/Options.h ../Post/ColorTable.h ../Common/Message.h \ - ../Post/PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - ../Post/PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h \ - ../Post/PViewOptions.h ../Post/ColorTable.h ../Post/PViewDataList.h \ - ../Post/AdaptiveViews.h ../DataStr/List.h ../Common/GmshMatrix.h diff --git a/Post/Makefile b/Post/Makefile index 0b23301318..f2f84c0062 100644 --- a/Post/Makefile +++ b/Post/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.18 2007-09-22 20:35:19 geuzaine Exp $ +# $Id: Makefile,v 1.19 2008-01-18 20:02:29 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -21,11 +21,12 @@ include ../variables -LIB = ../lib/libGmshPost.a -INCLUDE = -I../Common -I../DataStr -I../Geo -I../Mesh -I../Post\ - -I../Graphics -I../Numeric -I../Parser -I../Plugin -I../Fltk\ - -I../contrib/MathEval -I../contrib/ANN/include/ -CFLAGS =${OPTIM} ${FLAGS} ${INCLUDE} +LIB = ../lib/libGmshPost${LIBEXT} +INCLUDE = ${ISYM}../Common ${ISYM}../DataStr ${ISYM}../Geo ${ISYM}../Mesh\ + ${ISYM}../Post ${ISYM}../Graphics ${ISYM}../Numeric ${ISYM}../Parser\ + ${ISYM}../Plugin ${ISYM}../Fltk ${ISYM}../contrib/MathEval\ + ${ISYM}../contrib/ANN/include +CFLAGS =${OPTIM} ${FLAGS} ${INCLUDE} ${SYSINCLUDE} SRC = PView.cpp\ PViewData.cpp\ @@ -36,19 +37,19 @@ SRC = PView.cpp\ OctreePost.cpp\ ColorTable.cpp -OBJ = ${SRC:.cpp=.o} +OBJ = ${SRC:.cpp=${OBJEXT}} -.SUFFIXES: .o .cpp +.SUFFIXES: ${OBJEXT} .cpp ${LIB}: ${OBJ} - ${AR} ${LIB} ${OBJ} + ${AR} ${ARFLAGS}${LIB} ${OBJ} ${RANLIB} ${LIB} -.cpp.o: - ${CXX} ${CFLAGS} -c $< +.cpp${OBJEXT}: + ${CXX} ${CFLAGS} ${CSYM} $< clean: - rm -f *.o + rm -f *${OBJEXT} depend: (sed '/^# DO NOT DELETE THIS LINE/q' Makefile && \ @@ -59,53 +60,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -PView.o: PView.cpp PView.h ../Common/SmoothData.h ../Numeric/Numeric.h \ - PViewData.h ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h PViewOptions.h \ - ColorTable.h PViewDataList.h AdaptiveViews.h ../DataStr/List.h \ - ../Common/GmshMatrix.h ../Common/VertexArray.h ../Geo/SVector3.h \ - ../Geo/SPoint3.h ../Common/Context.h ../Common/Message.h -PViewData.o: PViewData.cpp PViewData.h ../Geo/SBoundingBox3d.h \ - ../Geo/SPoint3.h -PViewDataList.o: PViewDataList.cpp PViewDataList.h PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Numeric/Numeric.h \ - ../Common/SmoothData.h ../Common/Message.h ../Common/Context.h -PViewDataListIO.o: PViewDataListIO.cpp PViewDataList.h PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h AdaptiveViews.h \ - ../DataStr/List.h ../Common/GmshMatrix.h ../Numeric/Numeric.h \ - ../Common/Message.h ../Common/Context.h -PViewDataGModel.o: PViewDataGModel.cpp PViewDataGModel.h PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h PViewDataList.h \ - AdaptiveViews.h ../DataStr/List.h ../Common/GmshMatrix.h \ - ../Geo/GModel.h ../Geo/GVertex.h ../Geo/GEntity.h ../Geo/Range.h \ - ../Geo/SPoint3.h ../Geo/SBoundingBox3d.h ../Common/GmshDefines.h \ - ../Geo/MVertex.h ../Geo/SPoint3.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/MElement.h \ - ../Geo/MVertex.h ../Geo/MEdge.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Common/Hash.h ../Geo/MFace.h ../Geo/MVertex.h ../Geo/SVector3.h \ - ../Numeric/Numeric.h ../Common/Context.h ../Geo/ExtrudeParams.h \ - ../Common/SmoothData.h ../Geo/GFace.h ../Geo/GPoint.h ../Geo/GEntity.h \ - ../Geo/GEdgeLoop.h ../Geo/GEdge.h ../Geo/MElement.h ../Geo/SPoint2.h \ - ../Geo/SVector3.h ../Geo/Pair.h ../Geo/ExtrudeParams.h ../Geo/GRegion.h \ - ../Geo/GEntity.h ../Geo/MElement.h ../Geo/ExtrudeParams.h \ - ../Geo/SBoundingBox3d.h -PViewOptions.o: PViewOptions.cpp PViewOptions.h ColorTable.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Common/Message.h -AdaptiveViews.o: AdaptiveViews.cpp AdaptiveViews.h ../DataStr/List.h \ - ../Common/GmshMatrix.h ../Plugin/Plugin.h ../Common/Options.h \ - ../Post/ColorTable.h ../Common/Message.h ../Post/PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h ../Post/PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h ../Post/PViewOptions.h \ - ../Post/ColorTable.h ../Post/PViewDataList.h ../Post/PViewData.h \ - ../Post/AdaptiveViews.h -OctreePost.o: OctreePost.cpp ../Common/Octree.h \ - ../Common/OctreeInternals.h OctreePost.h ../DataStr/List.h PView.h \ - ../Common/SmoothData.h ../Numeric/Numeric.h PViewData.h \ - ../Geo/SBoundingBox3d.h ../Geo/SPoint3.h PViewOptions.h ColorTable.h \ - PViewDataList.h AdaptiveViews.h ../Common/GmshMatrix.h \ - ../Common/Message.h ../Common/ShapeFunctions.h -ColorTable.o: ColorTable.cpp ../Common/Gmsh.h ../Common/Message.h \ - ../DataStr/Malloc.h ../DataStr/List.h ../DataStr/Tree.h \ - ../DataStr/avl.h ../DataStr/Tools.h ../DataStr/List.h ../DataStr/Tree.h \ - ColorTable.h ../Common/Context.h ../Numeric/Numeric.h diff --git a/configure b/configure index abded20262..de29e457c5 100755 --- a/configure +++ b/configure @@ -677,7 +677,11 @@ OPTIM LINKER GMSH_DIRS GMSH_LIBS -POSTBUILD +ARFLAGS +LIBEXT +ISYM +CSYM +SYSINCLUDE LIBOBJS LTLIBOBJS' ac_subst_files='' @@ -1267,6 +1271,7 @@ Optional Features: --enable-gsl use GSL as numerical toolkit (default=yes) --enable-gui build the graphical user interface (default=yes) --enable-cygwin use the Cygwin library on Windows (default=no) + --enable-vc use the Visual C++ toolchain on Windows (default=no) --enable-parallel enable parallel version (default=no) --enable-jpeg enable JPEG support (default=yes) --enable-zlib enable ZLIB support (default=yes) @@ -1842,6 +1847,11 @@ if test "${enable_cygwin+set}" = set; then enableval=$enable_cygwin; fi +# Check whether --enable-vc was given. +if test "${enable_vc+set}" = set; then + enableval=$enable_vc; +fi + # Check whether --enable-parallel was given. if test "${enable_parallel+set}" = set; then enableval=$enable_parallel; @@ -1936,7 +1946,22 @@ fi UNAME=`uname` HOSTNAME=`hostname` -ac_ext=c +if test "x$enable_vc" = "xyes"; then + UNAME=VC + CC=cl + CXX="cl /EHsc" + OBJEXT=.obj + LIBEXT=.lib + ISYM=/I + CSYM=/c + DSYM=/D + FLAGS=/WIN32 + OPTIM=/O2 + SYSINCLUDE="/I\"C:\Program Files\Microsoft Visual Studio 9.0\VC\INCLUDE\" /I\"C:\Program Files\Microsoft SDKs\Windows\v6.0A\include\"" + LINKER=cl + EXEEXT=".exe" +else + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' @@ -2855,7 +2880,7 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -ac_ext=cpp + ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' @@ -3219,36 +3244,14 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test "x${CC}" = "x" -o "x${CXX}" = "x" ; then - { { echo "$as_me:$LINENO: error: Could not find required compilers, aborting." >&5 + if test "x${CC}" = "x" -o "x${CXX}" = "x" ; then + { { echo "$as_me:$LINENO: error: Could not find required compilers, aborting." >&5 echo "$as_me: error: Could not find required compilers, aborting." >&2;} { (exit 1); exit 1; }; } -fi -LINKER="${CXX}" -POSTBUILD="" - -ac_ext=cpp -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_cxx_compiler_gnu - - -case "$UNAME" in - CYGWIN*) - if test "x$enable_cygwin" != "xyes"; then - UNAME="${UNAME}-no-cygwin" - CC="${CC} -mno-cygwin" - CXX="${CXX} -mno-cygwin" - LINKER="${LINKER} -mno-cygwin -Wl,--stack,16777216" - fi - ;; -esac - -FLAGS="" -OPTIM="${CXXFLAGS}" - -ac_ext=c + fi + OBJEXT=.o + LIBEXT=.a + ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' @@ -3472,6 +3475,22 @@ See \`config.log' for more details." >&2;} { (exit 1); exit 1; }; } fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + ISYM=-I + CSYM=-c + DSYM=-D + FLAGS="" + OPTIM="${CXXFLAGS}" + SYSINCLUDE="" + LINKER="${CXX}" + +fi + ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' @@ -3479,10 +3498,27 @@ ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ex ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +case "$UNAME" in + CYGWIN*) + if test "x$enable_cygwin" != "xyes"; then + UNAME="${UNAME}-no-cygwin" + CC="${CC} -mno-cygwin" + CXX="${CXX} -mno-cygwin" + LINKER="${LINKER} -mno-cygwin -Wl,--stack,16777216" + fi + ;; +esac + case "$UNAME" in Darwin*) RANLIB=true AR="libtool -o" + ARFLAGS="" + ;; + VC*) + RANLIB=true + AR="LIB" + ARFLAGS="/OUT:" ;; *) if test -n "$ac_tool_prefix"; then @@ -3627,14 +3663,13 @@ echo "$as_me: error: Could not find the library archiver, aborting." >&2;} { (exit 1); exit 1; }; } fi AR="${AR} ruvs" + ARFLAGS="" ;; esac - - GMSH_DIRS="Common DataStr Geo Mesh Post Numeric Parallel Parser Plugin" -if test "x$enable_gui" != "xno"; then +if test "x$enable_gui" != "xno" -a "x$enable_vc" != "xyes"; then GMSH_DIRS="${GMSH_DIRS} Graphics Fltk" GMSH_LIBS="-Llib -lGmshFltk -lGmshParser -lGmshGraphics -lGmshMesh -lGmshGeo" @@ -4097,7 +4132,7 @@ fi else GMSH_DIRS="${GMSH_DIRS} Box" - GMSH_LIBS="-Llib Box/Main.o -lGmshBox -lGmshParser -lGmshMesh -lGmshGeo" + GMSH_LIBS="-Llib Box/Main${OBJEXT} -lGmshBox -lGmshParser -lGmshMesh -lGmshGeo" GMSH_LIBS="${GMSH_LIBS} -lGmshPlugin -lGmshPost -lGmshCommon -lGmshDataStr" GMSH_LIBS="${GMSH_LIBS} -lGmshNumeric -lGmshParallel" @@ -4171,6 +4206,9 @@ fi fi +if test "x$enable_vc" = "xyes"; then + FLAGS="${FLAGS} /DHAVE_NO_VSNPRINTF /DHAVE_NO_SNPRINTF /DHAVE_NO_SOCKLEN_T" +else { echo "$as_me:$LINENO: checking for main in -lm" >&5 echo $ECHO_N "checking for main in -lm... $ECHO_C" >&6; } @@ -4237,7 +4275,7 @@ _ACEOF fi -{ echo "$as_me:$LINENO: checking for vsnprintf" >&5 + { echo "$as_me:$LINENO: checking for vsnprintf" >&5 echo $ECHO_N "checking for vsnprintf... $ECHO_C" >&6; } if test "${ac_cv_func_vsnprintf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4324,7 +4362,7 @@ else FLAGS="-DHAVE_NO_VSNPRINTF ${FLAGS}" fi -{ echo "$as_me:$LINENO: checking for snprintf" >&5 + { echo "$as_me:$LINENO: checking for snprintf" >&5 echo $ECHO_N "checking for snprintf... $ECHO_C" >&6; } if test "${ac_cv_func_snprintf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4412,14 +4450,14 @@ else fi -cat >conftest.$ac_ext <<_ACEOF + cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include <sys/types.h> - #include <sys/socket.h> + #include <sys/socket.h> int main () { @@ -4454,6 +4492,8 @@ sed 's/^/| /' conftest.$ac_ext >&5 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi + if test "x$enable_contrib" != "xno"; then @@ -4484,7 +4524,7 @@ fi if test "x$enable_triangle" != "xno"; then GMSH_DIRS="${GMSH_DIRS} contrib/Triangle" GMSH_LIBS="${GMSH_LIBS} -lGmshTriangle" - FLAGS="-DHAVE_TRIANGLE ${FLAGS}" + FLAGS="${DSYM}HAVE_TRIANGLE ${FLAGS}" echo "********************************************************************" echo "You are building a version of Gmsh that contains Jonathan" echo "Shewchuk's Triangle as an alternative isotropic 2D mesh generator." @@ -4538,7 +4578,7 @@ fi if test "x$enable_ann" != "xno"; then GMSH_DIRS="${GMSH_DIRS} contrib/ANN" GMSH_LIBS="${GMSH_LIBS} -lGmshANN" - FLAGS="-DHAVE_ANN_ ${FLAGS}" + FLAGS="${DSYM}HAVE_ANN_ ${FLAGS}" echo "********************************************************************" echo "You are building a version of Gmsh that contains ANN, the" echo "Approximate Nearest Neighbor library." @@ -4587,7 +4627,7 @@ fi if test "x$enable_metis" = "xyes"; then GMSH_DIRS="${GMSH_DIRS} contrib/Metis" GMSH_LIBS="${GMSH_LIBS} -lGmshMetis" - FLAGS="-DHAVE_METIS ${FLAGS}" + FLAGS="${DSYM}HAVE_METIS ${FLAGS}" echo "********************************************************************" echo "You are building a version of Gmsh that contains METIS, the" echo "Serial Graph Partitioner." @@ -4636,7 +4676,7 @@ fi if test "x$enable_netgen" != "xno"; then GMSH_DIRS="${GMSH_DIRS} contrib/Netgen" GMSH_LIBS="${GMSH_LIBS} -lGmshNetgen" - FLAGS="-DHAVE_NETGEN ${FLAGS}" + FLAGS="${DSYM}HAVE_NETGEN ${FLAGS}" echo "********************************************************************" echo "You are building a version of Gmsh that contains Joachim Schoberl's" echo "Netgen as an alternative 3D mesh generator. Netgen is distributed" @@ -4686,7 +4726,7 @@ fi if test "x$enable_tetgen" != "xno"; then GMSH_DIRS="${GMSH_DIRS} contrib/Tetgen" GMSH_LIBS="${GMSH_LIBS} -lGmshTetgen" - FLAGS="-DHAVE_TETGEN ${FLAGS}" + FLAGS="${DSYM}HAVE_TETGEN ${FLAGS}" echo "********************************************************************" echo "You are building a version of Gmsh that contains Hang Si's" echo "Tetgen as an alternative 3D mesh generator." @@ -4739,7 +4779,7 @@ fi if test "x${MATHEVAL}" = "xyes"; then GMSH_DIRS="${GMSH_DIRS} contrib/MathEval" GMSH_LIBS="${GMSH_LIBS} -lGmshMathEval" - FLAGS="-DHAVE_MATH_EVAL ${FLAGS}" + FLAGS="${DSYM}HAVE_MATH_EVAL ${FLAGS}" fi fi @@ -4876,12 +4916,12 @@ else fi if test "x${GSL}" = "xyes"; then - FLAGS="-DHAVE_GSL ${FLAGS}" + FLAGS="${DSYM}HAVE_GSL ${FLAGS}" if test "x${GSL_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lgsl -lgslcblas" else GMSH_LIBS="${GMSH_LIBS} -L${GSL_PREFIX} -L${GSL_PREFIX}/lib -lgsl -lgslcblas" - FLAGS="${FLAGS} -I${GSL_PREFIX} -I${GSL_PREFIX}/include" + FLAGS="${FLAGS} ${ISYM}${GSL_PREFIX} ${ISYM}${GSL_PREFIX}/include" fi fi fi @@ -5010,10 +5050,10 @@ fi if test "x${CGNS}" = "xyes"; then if test "x${CGNS_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lcgns" - FLAGS="${FLAGS} -DHAVE_LIBCGNS" + FLAGS="${FLAGS} ${DSYM}HAVE_LIBCGNS" else GMSH_LIBS="${GMSH_LIBS} -L${CGNS_PREFIX}/lib -lcgns" - FLAGS="${FLAGS} -DHAVE_LIBCGNS -I${CGNS_PREFIX}/include" + FLAGS="${FLAGS} ${DSYM}HAVE_LIBCGNS ${ISYM}${CGNS_PREFIX}/include" fi fi fi @@ -5100,10 +5140,10 @@ fi OCC_LIBS="${OCC_LIBS} -lTKAdvTools -lTKMath -lTKernel" if test "x${OCC_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} ${OCC_LIBS}" - FLAGS="${FLAGS} -DHAVE_OCC" + FLAGS="${FLAGS} ${DSYM}HAVE_OCC" else GMSH_LIBS="${GMSH_LIBS} -L${OCC_PREFIX}/lib ${OCC_LIBS}" - FLAGS="${FLAGS} -DHAVE_OCC -I${OCC_PREFIX}/inc" + FLAGS="${FLAGS} ${DSYM}HAVE_OCC ${ISYM}${OCC_PREFIX}/inc" fi fi fi @@ -5623,16 +5663,16 @@ echo "$as_me: WARNING: Could not find FFTW3: disabling FourierModel." >&2;} else if test "x${FM_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lFourierModel" - FLAGS="-DHAVE_FOURIER_MODEL ${FLAGS}" + FLAGS="${DSYM}HAVE_FOURIER_MODEL ${FLAGS}" else GMSH_LIBS="${GMSH_LIBS} -L${FM_PREFIX}/lib -lFourierModel" - FLAGS="-DHAVE_FOURIER_MODEL -I${FM_PREFIX} ${FLAGS}" + FLAGS="${DSYM}HAVE_FOURIER_MODEL ${ISYM}${FM_PREFIX} ${FLAGS}" fi if test "x${FFTW3_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lfftw3" else GMSH_LIBS="${GMSH_LIBS} -L${FFTW3_PREFIX}/lib -lfftw3" - FLAGS="${FLAGS} -I${FFTW3_PREFIX}/include" + FLAGS="${FLAGS} ${ISYM}${FFTW3_PREFIX}/include" fi if test "x${BLAS_LAPACK_PREFIX}" != "x"; then GMSH_LIBS="${GMSH_LIBS} -L${BLAS_LAPACK_PREFIX} -L${BLAS_LAPACK_PREFIX}/lib" @@ -5722,7 +5762,7 @@ fi GMSH_LIBS="${GMSH_LIBS} -lhdf5" else GMSH_LIBS="${GMSH_LIBS} -L${HDF5_PREFIX}/lib -lhdf5" - FLAGS="${FLAGS} -I${HDF5_PREFIX}/include" + FLAGS="${FLAGS} ${ISYM}${HDF5_PREFIX}/include" fi fi fi @@ -5797,10 +5837,10 @@ fi if test "x${MED}" = "xyes"; then if test "x${MED_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lmed" - FLAGS="${FLAGS} -DHAVE_MED" + FLAGS="${FLAGS} ${DSYM}HAVE_MED" else GMSH_LIBS="${GMSH_LIBS} -L${MED_PREFIX}/lib -lmed" - FLAGS="${FLAGS} -DHAVE_MED -I${MED_PREFIX}/include" + FLAGS="${FLAGS} ${DSYM}HAVE_MED ${ISYM}${MED_PREFIX}/include" fi fi fi @@ -5808,20 +5848,20 @@ fi if test "x${ZLIB}" = "xyes"; then if test "x${FL_ZLIB}" = "xyes"; then - FLAGS="-DHAVE_LIBZ ${FLAGS}" + FLAGS="${DSYM}HAVE_LIBZ ${FLAGS}" else - FLAGS="-DHAVE_LIBZ ${FLAGS}" + FLAGS="${DSYM}HAVE_LIBZ ${FLAGS}" if test "x${ZLIB_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lz" else GMSH_LIBS="${GMSH_LIBS} -L${ZLIB_PREFIX} -L${ZLIB_PREFIX}/lib -lz" - FLAGS="${FLAGS} -I${ZLIB_PREFIX} -I${ZLIB_PREFIX}/include" + FLAGS="${FLAGS} ${ISYM}${ZLIB_PREFIX} ${ISYM}${ZLIB_PREFIX}/include" fi fi fi if test "x$enable_parallel" = "xyes"; then - FLAGS="-DHAVE_PARALLEL ${FLAGS}" + FLAGS="${DSYM}HAVE_PARALLEL ${FLAGS}" fi GMSH_LIBS="${GMSH_LIBS} -lm" @@ -5849,7 +5889,7 @@ case "$UNAME" in if test "x$enable_gui" = "xno"; then GMSH_LIBS="${GMSH_LIBS} -framework ApplicationServices" fi - ;; + ;; AIX*) FLAGS="-D_BSD -DHAVE_NO_DLL ${FLAGS}" @@ -6927,7 +6967,7 @@ if test $ac_cv_sizeof_size_t != 4; then { echo "$as_me:$LINENO: WARNING: Unsupported size of size_t - this may affect FNV hashing." >&5 echo "$as_me: WARNING: Unsupported size of size_t - this may affect FNV hashing." >&2;} else - FLAGS="$FLAGS -DHAVE_64BIT_SIZE_T" + FLAGS="$FLAGS ${DSYM}HAVE_64BIT_SIZE_T" fi fi @@ -6940,6 +6980,11 @@ fi + + + + + ac_config_files="$ac_config_files variables" cat >confcache <<\_ACEOF @@ -7634,12 +7679,16 @@ OPTIM!$OPTIM$ac_delim LINKER!$LINKER$ac_delim GMSH_DIRS!$GMSH_DIRS$ac_delim GMSH_LIBS!$GMSH_LIBS$ac_delim -POSTBUILD!$POSTBUILD$ac_delim +ARFLAGS!$ARFLAGS$ac_delim +LIBEXT!$LIBEXT$ac_delim +ISYM!$ISYM$ac_delim +CSYM!$CSYM$ac_delim +SYSINCLUDE!$SYSINCLUDE$ac_delim LIBOBJS!$LIBOBJS$ac_delim LTLIBOBJS!$LTLIBOBJS$ac_delim _ACEOF - if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 67; then + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 71; then break elif $ac_last_try; then { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 diff --git a/configure.in b/configure.in index 0ff7d71ab5..e9d343b78b 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $Id: configure.in,v 1.140 2008-01-08 10:28:27 geuzaine Exp $ +dnl $Id: configure.in,v 1.141 2008-01-18 20:02:27 geuzaine Exp $ dnl dnl Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle dnl @@ -92,6 +92,9 @@ AC_ARG_ENABLE(gui, AC_ARG_ENABLE(cygwin, AC_HELP_STRING([--enable-cygwin], [use the Cygwin library on Windows (default=no)])) +AC_ARG_ENABLE(vc, + AC_HELP_STRING([--enable-vc], + [use the Visual C++ toolchain on Windows (default=no)])) AC_ARG_ENABLE(parallel, AC_HELP_STRING([--enable-parallel], [enable parallel version (default=no)])) @@ -152,13 +155,39 @@ UNAME=`uname` HOSTNAME=`hostname` dnl Check for default compilers -AC_PROG_CC -AC_PROG_CXX -if test "x${CC}" = "x" -o "x${CXX}" = "x" ; then - AC_MSG_ERROR([Could not find required compilers, aborting.]) +if test "x$enable_vc" = "xyes"; then + UNAME=VC + CC=cl + CXX="cl /EHsc" + OBJEXT=.obj + LIBEXT=.lib + ISYM=/I + CSYM=/c + DSYM=/D + FLAGS=/DWIN32 /DYY_NO_UNISTD_H /DHAVE_NO_DLL + OPTIM=/O2 + SYSINCLUDE="/I\"C:\Program Files\Microsoft Visual Studio 9.0\VC\INCLUDE\" /I\"C:\Program Files\Microsoft SDKs\Windows\v6.0A\include\"" + LINKER=cl + EXEEXT=".exe" +else + AC_PROG_CC + AC_PROG_CXX + if test "x${CC}" = "x" -o "x${CXX}" = "x" ; then + AC_MSG_ERROR([Could not find required compilers, aborting.]) + fi + OBJEXT=.o + LIBEXT=.a + AC_PROG_CPP + ISYM=-I + CSYM=-c + DSYM=-D + FLAGS="" + OPTIM="${CXXFLAGS}" + SYSINCLUDE="" + LINKER="${CXX}" + dnl See if we need a .exe extension on executables + AC_EXEEXT fi -LINKER="${CXX}" -POSTBUILD="" dnl Use c++ for all compilation tests AC_LANG(C++) @@ -177,18 +206,17 @@ case "$UNAME" in ;; esac -dnl Set default flags -FLAGS="" -OPTIM="${CXXFLAGS}" - -dnl Check for various programs -AC_PROG_CPP - dnl How to build static libraries? case "$UNAME" in Darwin*) RANLIB=true AR="libtool -o" + ARFLAGS="" + ;; + VC*) + RANLIB=true + AR="LIB" + ARFLAGS="/OUT:" ;; *) AC_PROG_RANLIB @@ -197,17 +225,15 @@ case "$UNAME" in AC_MSG_ERROR([Could not find the library archiver, aborting.]) fi AR="${AR} ruvs" + ARFLAGS="" ;; esac -dnl See if we need a .exe extension on executables -AC_EXEEXT - dnl Set default subdirectories and libraries GMSH_DIRS="Common DataStr Geo Mesh Post Numeric Parallel Parser Plugin" dnl Choose blackbox or GUI version -if test "x$enable_gui" != "xno"; then +if test "x$enable_gui" != "xno" -a "x$enable_vc" != "xyes"; then GMSH_DIRS="${GMSH_DIRS} Graphics Fltk" GMSH_LIBS="-Llib -lGmshFltk -lGmshParser -lGmshGraphics -lGmshMesh -lGmshGeo" @@ -338,7 +364,7 @@ if test "x$enable_gui" != "xno"; then else GMSH_DIRS="${GMSH_DIRS} Box" - GMSH_LIBS="-Llib Box/Main.o -lGmshBox -lGmshParser -lGmshMesh -lGmshGeo" + GMSH_LIBS="-Llib Box/Main${OBJEXT} -lGmshBox -lGmshParser -lGmshMesh -lGmshGeo" GMSH_LIBS="${GMSH_LIBS} -lGmshPlugin -lGmshPost -lGmshCommon -lGmshDataStr" GMSH_LIBS="${GMSH_LIBS} -lGmshNumeric -lGmshParallel" @@ -353,18 +379,23 @@ else fi -dnl Check for standard math library -AC_CHECK_LIB(m,main) +if test "x$enable_vc" = "xyes"; then + FLAGS="${FLAGS} /DHAVE_NO_VSNPRINTF /DHAVE_NO_SNPRINTF /DHAVE_NO_SOCKLEN_T" +else + dnl Check for standard math library + AC_CHECK_LIB(m,main) + + dnl Check for various functions + AC_CHECK_FUNC(vsnprintf,,FLAGS="-DHAVE_NO_VSNPRINTF ${FLAGS}") + AC_CHECK_FUNC(snprintf,,FLAGS="-DHAVE_NO_SNPRINTF ${FLAGS}") -dnl Check for various functions -AC_CHECK_FUNC(vsnprintf,,FLAGS="-DHAVE_NO_VSNPRINTF ${FLAGS}") -AC_CHECK_FUNC(snprintf,,FLAGS="-DHAVE_NO_SNPRINTF ${FLAGS}") + dnl Check if Unix98 socklen_t type is available + AC_TRY_COMPILE( + [#include <sys/types.h> + #include <sys/socket.h>], + [socklen_t len = 42; return 0;],,FLAGS="-DHAVE_NO_SOCKLEN_T ${FLAGS}") +fi -dnl Check if Unix98 socklen_t type is available -AC_TRY_COMPILE( - [#include <sys/types.h> - #include <sys/socket.h>], - [socklen_t len = 42; return 0;],,FLAGS="-DHAVE_NO_SOCKLEN_T ${FLAGS}") dnl Check if we should consider the packages in contrib if test "x$enable_contrib" != "xno"; then @@ -375,7 +406,7 @@ if test "x$enable_contrib" != "xno"; then if test "x$enable_triangle" != "xno"; then GMSH_DIRS="${GMSH_DIRS} contrib/Triangle" GMSH_LIBS="${GMSH_LIBS} -lGmshTriangle" - FLAGS="-DHAVE_TRIANGLE ${FLAGS}" + FLAGS="${DSYM}HAVE_TRIANGLE ${FLAGS}" echo "********************************************************************" echo "You are building a version of Gmsh that contains Jonathan" echo "Shewchuk's Triangle as an alternative isotropic 2D mesh generator." @@ -408,7 +439,7 @@ if test "x$enable_contrib" != "xno"; then if test "x$enable_ann" != "xno"; then GMSH_DIRS="${GMSH_DIRS} contrib/ANN" GMSH_LIBS="${GMSH_LIBS} -lGmshANN" - FLAGS="-DHAVE_ANN_ ${FLAGS}" + FLAGS="${DSYM}HAVE_ANN_ ${FLAGS}" echo "********************************************************************" echo "You are building a version of Gmsh that contains ANN, the" echo "Approximate Nearest Neighbor library." @@ -436,7 +467,7 @@ if test "x$enable_contrib" != "xno"; then if test "x$enable_metis" = "xyes"; then GMSH_DIRS="${GMSH_DIRS} contrib/Metis" GMSH_LIBS="${GMSH_LIBS} -lGmshMetis" - FLAGS="-DHAVE_METIS ${FLAGS}" + FLAGS="${DSYM}HAVE_METIS ${FLAGS}" echo "********************************************************************" echo "You are building a version of Gmsh that contains METIS, the" echo "Serial Graph Partitioner." @@ -464,7 +495,7 @@ if test "x$enable_contrib" != "xno"; then if test "x$enable_netgen" != "xno"; then GMSH_DIRS="${GMSH_DIRS} contrib/Netgen" GMSH_LIBS="${GMSH_LIBS} -lGmshNetgen" - FLAGS="-DHAVE_NETGEN ${FLAGS}" + FLAGS="${DSYM}HAVE_NETGEN ${FLAGS}" echo "********************************************************************" echo "You are building a version of Gmsh that contains Joachim Schoberl's" echo "Netgen as an alternative 3D mesh generator. Netgen is distributed" @@ -493,7 +524,7 @@ if test "x$enable_contrib" != "xno"; then if test "x$enable_tetgen" != "xno"; then GMSH_DIRS="${GMSH_DIRS} contrib/Tetgen" GMSH_LIBS="${GMSH_LIBS} -lGmshTetgen" - FLAGS="-DHAVE_TETGEN ${FLAGS}" + FLAGS="${DSYM}HAVE_TETGEN ${FLAGS}" echo "********************************************************************" echo "You are building a version of Gmsh that contains Hang Si's" echo "Tetgen as an alternative 3D mesh generator." @@ -525,7 +556,7 @@ if test "x$enable_contrib" != "xno"; then if test "x${MATHEVAL}" = "xyes"; then GMSH_DIRS="${GMSH_DIRS} contrib/MathEval" GMSH_LIBS="${GMSH_LIBS} -lGmshMathEval" - FLAGS="-DHAVE_MATH_EVAL ${FLAGS}" + FLAGS="${DSYM}HAVE_MATH_EVAL ${FLAGS}" fi fi @@ -539,12 +570,12 @@ if test "x$enable_gsl" != "xno"; then AC_CHECK_LIB(gslcblas,main) AC_CHECK_LIB(gsl,main,GSL="yes",GSL="no") if test "x${GSL}" = "xyes"; then - FLAGS="-DHAVE_GSL ${FLAGS}" + FLAGS="${DSYM}HAVE_GSL ${FLAGS}" if test "x${GSL_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lgsl -lgslcblas" else GMSH_LIBS="${GMSH_LIBS} -L${GSL_PREFIX} -L${GSL_PREFIX}/lib -lgsl -lgslcblas" - FLAGS="${FLAGS} -I${GSL_PREFIX} -I${GSL_PREFIX}/include" + FLAGS="${FLAGS} ${ISYM}${GSL_PREFIX} ${ISYM}${GSL_PREFIX}/include" fi fi fi @@ -591,10 +622,10 @@ if test "x$enable_cgns" = "xyes"; then if test "x${CGNS}" = "xyes"; then if test "x${CGNS_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lcgns" - FLAGS="${FLAGS} -DHAVE_LIBCGNS" + FLAGS="${FLAGS} ${DSYM}HAVE_LIBCGNS" else GMSH_LIBS="${GMSH_LIBS} -L${CGNS_PREFIX}/lib -lcgns" - FLAGS="${FLAGS} -DHAVE_LIBCGNS -I${CGNS_PREFIX}/include" + FLAGS="${FLAGS} ${DSYM}HAVE_LIBCGNS ${ISYM}${CGNS_PREFIX}/include" fi fi fi @@ -622,10 +653,10 @@ if test "x$enable_occ" = "xyes"; then OCC_LIBS="${OCC_LIBS} -lTKAdvTools -lTKMath -lTKernel" if test "x${OCC_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} ${OCC_LIBS}" - FLAGS="${FLAGS} -DHAVE_OCC" + FLAGS="${FLAGS} ${DSYM}HAVE_OCC" else GMSH_LIBS="${GMSH_LIBS} -L${OCC_PREFIX}/lib ${OCC_LIBS}" - FLAGS="${FLAGS} -DHAVE_OCC -I${OCC_PREFIX}/inc" + FLAGS="${FLAGS} ${DSYM}HAVE_OCC ${ISYM}${OCC_PREFIX}/inc" fi fi fi @@ -659,16 +690,16 @@ if test "x$enable_fm" != "xno"; then else if test "x${FM_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lFourierModel" - FLAGS="-DHAVE_FOURIER_MODEL ${FLAGS}" + FLAGS="${DSYM}HAVE_FOURIER_MODEL ${FLAGS}" else GMSH_LIBS="${GMSH_LIBS} -L${FM_PREFIX}/lib -lFourierModel" - FLAGS="-DHAVE_FOURIER_MODEL -I${FM_PREFIX} ${FLAGS}" + FLAGS="${DSYM}HAVE_FOURIER_MODEL ${ISYM}${FM_PREFIX} ${FLAGS}" fi if test "x${FFTW3_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lfftw3" else GMSH_LIBS="${GMSH_LIBS} -L${FFTW3_PREFIX}/lib -lfftw3" - FLAGS="${FLAGS} -I${FFTW3_PREFIX}/include" + FLAGS="${FLAGS} ${ISYM}${FFTW3_PREFIX}/include" fi if test "x${BLAS_LAPACK_PREFIX}" != "x"; then GMSH_LIBS="${GMSH_LIBS} -L${BLAS_LAPACK_PREFIX} -L${BLAS_LAPACK_PREFIX}/lib" @@ -699,7 +730,7 @@ if test "x${ZLIB}" = "xyes"; then GMSH_LIBS="${GMSH_LIBS} -lhdf5" else GMSH_LIBS="${GMSH_LIBS} -L${HDF5_PREFIX}/lib -lhdf5" - FLAGS="${FLAGS} -I${HDF5_PREFIX}/include" + FLAGS="${FLAGS} ${ISYM}${HDF5_PREFIX}/include" fi fi fi @@ -715,10 +746,10 @@ if test "x${HDF5}" = "xyes"; then if test "x${MED}" = "xyes"; then if test "x${MED_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lmed" - FLAGS="${FLAGS} -DHAVE_MED" + FLAGS="${FLAGS} ${DSYM}HAVE_MED" else GMSH_LIBS="${GMSH_LIBS} -L${MED_PREFIX}/lib -lmed" - FLAGS="${FLAGS} -DHAVE_MED -I${MED_PREFIX}/include" + FLAGS="${FLAGS} ${DSYM}HAVE_MED ${ISYM}${MED_PREFIX}/include" fi fi fi @@ -728,22 +759,22 @@ dnl Complete zlib link line (zlib must be linked in after libpng and libhdf5) if test "x${ZLIB}" = "xyes"; then dnl If provided by FLTK, use that one; otherwise, look for it if test "x${FL_ZLIB}" = "xyes"; then - FLAGS="-DHAVE_LIBZ ${FLAGS}" + FLAGS="${DSYM}HAVE_LIBZ ${FLAGS}" else - FLAGS="-DHAVE_LIBZ ${FLAGS}" + FLAGS="${DSYM}HAVE_LIBZ ${FLAGS}" if test "x${ZLIB_PREFIX}" = "x"; then GMSH_LIBS="${GMSH_LIBS} -lz" else dnl Find the libs/includes even if libz is _not_ properly installed (ugly hack!) GMSH_LIBS="${GMSH_LIBS} -L${ZLIB_PREFIX} -L${ZLIB_PREFIX}/lib -lz" - FLAGS="${FLAGS} -I${ZLIB_PREFIX} -I${ZLIB_PREFIX}/include" + FLAGS="${FLAGS} ${ISYM}${ZLIB_PREFIX} ${ISYM}${ZLIB_PREFIX}/include" fi fi fi dnl Check if we should build the parallel version if test "x$enable_parallel" = "xyes"; then - FLAGS="-DHAVE_PARALLEL ${FLAGS}" + FLAGS="${DSYM}HAVE_PARALLEL ${FLAGS}" fi dnl Finish link line @@ -773,8 +804,6 @@ case "$UNAME" in if test "x$enable_gui" = "xno"; then GMSH_LIBS="${GMSH_LIBS} -framework ApplicationServices" fi - dnl not necessary anymore - dnl POSTBUILD="/Developer/Tools/Rez -t APPL -o bin/gmsh Fltk/MacRes.r" ;; AIX*) @@ -822,7 +851,7 @@ if test $ac_cv_sizeof_size_t != 4; then if test $ac_cv_sizeof_size_t != 8; then AC_MSG_WARN([Unsupported size of size_t - this may affect FNV hashing.]) else - FLAGS="$FLAGS -DHAVE_64BIT_SIZE_T" + FLAGS="$FLAGS ${DSYM}HAVE_64BIT_SIZE_T" fi fi @@ -834,8 +863,13 @@ AC_SUBST(OPTIM) AC_SUBST(LINKER) AC_SUBST(GMSH_DIRS) AC_SUBST(GMSH_LIBS) -AC_SUBST(POSTBUILD) AC_SUBST(AR) +AC_SUBST(ARFLAGS) +AC_SUBST(OBJEXT) +AC_SUBST(LIBEXT) +AC_SUBST(ISYM) +AC_SUBST(CSYM) +AC_SUBST(SYSINCLUDE) AC_OUTPUT(variables) dnl Print some information diff --git a/contrib/ANN/Makefile b/contrib/ANN/Makefile index a33d0edfb6..5a263100a0 100644 --- a/contrib/ANN/Makefile +++ b/contrib/ANN/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.15 2007-07-09 13:54:37 geuzaine Exp $ +# $Id: Makefile,v 1.16 2008-01-18 20:02:30 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -63,38 +63,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -ANN.o: src/ANN.cpp include/ANN/ANNx.h include/ANN/ANN.h \ - include/ANN/ANNperf.h -bd_fix_rad_search.o: src/bd_fix_rad_search.cpp src/bd_tree.h \ - include/ANN/ANNx.h include/ANN/ANN.h src/kd_tree.h \ - src/kd_fix_rad_search.h src/kd_util.h src/pr_queue_k.h \ - include/ANN/ANNperf.h -bd_pr_search.o: src/bd_pr_search.cpp src/bd_tree.h include/ANN/ANNx.h \ - include/ANN/ANN.h src/kd_tree.h src/kd_pr_search.h src/kd_util.h \ - src/pr_queue.h include/ANN/ANNperf.h src/pr_queue_k.h -bd_search.o: src/bd_search.cpp src/bd_tree.h include/ANN/ANNx.h \ - include/ANN/ANN.h src/kd_tree.h src/kd_search.h src/kd_util.h \ - src/pr_queue_k.h include/ANN/ANNperf.h -bd_tree.o: src/bd_tree.cpp src/bd_tree.h include/ANN/ANNx.h \ - include/ANN/ANN.h src/kd_tree.h src/kd_util.h src/kd_split.h \ - include/ANN/ANNperf.h -brute.o: src/brute.cpp include/ANN/ANNx.h include/ANN/ANN.h \ - src/pr_queue_k.h include/ANN/ANNperf.h -kd_dump.o: src/kd_dump.cpp src/kd_tree.h include/ANN/ANNx.h \ - include/ANN/ANN.h src/bd_tree.h -kd_fix_rad_search.o: src/kd_fix_rad_search.cpp src/kd_fix_rad_search.h \ - src/kd_tree.h include/ANN/ANNx.h include/ANN/ANN.h src/kd_util.h \ - src/pr_queue_k.h include/ANN/ANNperf.h -kd_pr_search.o: src/kd_pr_search.cpp src/kd_pr_search.h src/kd_tree.h \ - include/ANN/ANNx.h include/ANN/ANN.h src/kd_util.h src/pr_queue.h \ - include/ANN/ANNperf.h src/pr_queue_k.h -kd_search.o: src/kd_search.cpp src/kd_search.h src/kd_tree.h \ - include/ANN/ANNx.h include/ANN/ANN.h src/kd_util.h src/pr_queue_k.h \ - include/ANN/ANNperf.h -kd_split.o: src/kd_split.cpp src/kd_tree.h include/ANN/ANNx.h \ - include/ANN/ANN.h src/kd_util.h src/kd_split.h -kd_tree.o: src/kd_tree.cpp src/kd_tree.h include/ANN/ANNx.h \ - include/ANN/ANN.h src/kd_split.h src/kd_util.h include/ANN/ANNperf.h -kd_util.o: src/kd_util.cpp src/kd_util.h src/kd_tree.h include/ANN/ANNx.h \ - include/ANN/ANN.h include/ANN/ANNperf.h -perf.o: src/perf.cpp include/ANN/ANN.h include/ANN/ANNperf.h diff --git a/contrib/MathEval/Makefile b/contrib/MathEval/Makefile index 412212dc52..4da8ff50b1 100644 --- a/contrib/MathEval/Makefile +++ b/contrib/MathEval/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.14 2007-07-09 13:54:37 geuzaine Exp $ +# $Id: Makefile,v 1.15 2008-01-18 20:02:30 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -61,13 +61,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -matheval.o: matheval.cpp common.h ../../DataStr/Malloc.h matheval.h \ - node.h symbol_table.h -node.o: node.cpp common.h ../../DataStr/Malloc.h node.h symbol_table.h -scanner.yy.o: scanner.yy.cpp common.h ../../DataStr/Malloc.h node.h \ - symbol_table.h parser.tab.hpp -parser.tab.o: parser.tab.cpp common.h ../../DataStr/Malloc.h node.h \ - symbol_table.h -symbol_table.o: symbol_table.cpp common.h ../../DataStr/Malloc.h \ - symbol_table.h xmath.h -xmath.o: xmath.cpp xmath.h diff --git a/contrib/NR/Makefile b/contrib/NR/Makefile index 3ce6dae6c7..22edd2e89c 100644 --- a/contrib/NR/Makefile +++ b/contrib/NR/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 2006-11-27 22:22:33 geuzaine Exp $ +# $Id: Makefile,v 1.5 2008-01-18 20:02:30 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -62,44 +62,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -brent.o: brent.cpp nrutil.h ../../Common/Gmsh.h ../../Common/Message.h \ - ../../DataStr/Malloc.h ../../DataStr/List.h ../../DataStr/Tree.h \ - ../../DataStr/avl.h ../../DataStr/Tools.h ../../DataStr/List.h \ - ../../DataStr/Tree.h ../../Numeric/Numeric.h -dpythag.o: dpythag.cpp nrutil.h ../../Common/Gmsh.h \ - ../../Common/Message.h ../../DataStr/Malloc.h ../../DataStr/List.h \ - ../../DataStr/Tree.h ../../DataStr/avl.h ../../DataStr/Tools.h \ - ../../DataStr/List.h ../../DataStr/Tree.h ../../Numeric/Numeric.h -dsvdcmp.o: dsvdcmp.cpp nrutil.h ../../Common/Gmsh.h \ - ../../Common/Message.h ../../DataStr/Malloc.h ../../DataStr/List.h \ - ../../DataStr/Tree.h ../../DataStr/avl.h ../../DataStr/Tools.h \ - ../../DataStr/List.h ../../DataStr/Tree.h ../../Numeric/Numeric.h -fdjac.o: fdjac.cpp nrutil.h ../../Common/Gmsh.h ../../Common/Message.h \ - ../../DataStr/Malloc.h ../../DataStr/List.h ../../DataStr/Tree.h \ - ../../DataStr/avl.h ../../DataStr/Tools.h ../../DataStr/List.h \ - ../../DataStr/Tree.h ../../Numeric/Numeric.h -fmin.o: fmin.cpp nrutil.h ../../Common/Gmsh.h ../../Common/Message.h \ - ../../DataStr/Malloc.h ../../DataStr/List.h ../../DataStr/Tree.h \ - ../../DataStr/avl.h ../../DataStr/Tools.h ../../DataStr/List.h \ - ../../DataStr/Tree.h ../../Numeric/Numeric.h -lnsrch.o: lnsrch.cpp nrutil.h ../../Common/Gmsh.h ../../Common/Message.h \ - ../../DataStr/Malloc.h ../../DataStr/List.h ../../DataStr/Tree.h \ - ../../DataStr/avl.h ../../DataStr/Tools.h ../../DataStr/List.h \ - ../../DataStr/Tree.h ../../Numeric/Numeric.h -lubksb.o: lubksb.cpp -ludcmp.o: ludcmp.cpp nrutil.h ../../Common/Gmsh.h ../../Common/Message.h \ - ../../DataStr/Malloc.h ../../DataStr/List.h ../../DataStr/Tree.h \ - ../../DataStr/avl.h ../../DataStr/Tools.h ../../DataStr/List.h \ - ../../DataStr/Tree.h ../../Numeric/Numeric.h -mnbrak.o: mnbrak.cpp nrutil.h ../../Common/Gmsh.h ../../Common/Message.h \ - ../../DataStr/Malloc.h ../../DataStr/List.h ../../DataStr/Tree.h \ - ../../DataStr/avl.h ../../DataStr/Tools.h ../../DataStr/List.h \ - ../../DataStr/Tree.h ../../Numeric/Numeric.h -newt.o: newt.cpp nrutil.h ../../Common/Gmsh.h ../../Common/Message.h \ - ../../DataStr/Malloc.h ../../DataStr/List.h ../../DataStr/Tree.h \ - ../../DataStr/avl.h ../../DataStr/Tools.h ../../DataStr/List.h \ - ../../DataStr/Tree.h ../../Numeric/Numeric.h -nrutil.o: nrutil.cpp ../../Common/Gmsh.h ../../Common/Message.h \ - ../../DataStr/Malloc.h ../../DataStr/List.h ../../DataStr/Tree.h \ - ../../DataStr/avl.h ../../DataStr/Tools.h ../../DataStr/List.h \ - ../../DataStr/Tree.h diff --git a/contrib/Netgen/Makefile b/contrib/Netgen/Makefile index 2d2af93e89..15fdcf0344 100644 --- a/contrib/Netgen/Makefile +++ b/contrib/Netgen/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.19 2007-07-26 16:35:58 geuzaine Exp $ +# $Id: Makefile,v 1.20 2008-01-18 20:02:30 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -148,4166 +148,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -linopt.o: libsrc/opti/linopt.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/opti/opti.hpp -bfgs.o: libsrc/opti/bfgs.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/opti/opti.hpp -linsearch.o: libsrc/opti/linsearch.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/opti/opti.hpp -global.o: libsrc/meshing/global.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -bisect.o: libsrc/meshing/bisect.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -meshtool.o: libsrc/meshing/meshtool.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/meshing.hpp libsrc/include/../meshing/meshing.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp \ - libsrc/include/geometry2d.hpp libsrc/include/../geom2d/geometry2d.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/include/../geom2d/spline2d.hpp \ - libsrc/include/../geom2d/splinegeometry2.hpp \ - libsrc/include/../geom2d/geom2dmesh.hpp -refine.o: libsrc/meshing/refine.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -ruler3.o: libsrc/meshing/ruler3.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -improve3.o: libsrc/meshing/improve3.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp libsrc/include/../opti/opti.hpp -smoothing3.o: libsrc/meshing/smoothing3.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp libsrc/include/../opti/opti.hpp -adfront3.o: libsrc/meshing/adfront3.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -tetrarls.o: libsrc/meshing/tetrarls.cpp -prism2rls.o: libsrc/meshing/prism2rls.cpp -pyramidrls.o: libsrc/meshing/pyramidrls.cpp -pyramid2rls.o: libsrc/meshing/pyramid2rls.cpp -netrule3.o: libsrc/meshing/netrule3.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -ruler2.o: libsrc/meshing/ruler2.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -meshclass.o: libsrc/meshing/meshclass.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -improve2.o: libsrc/meshing/improve2.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp libsrc/include/../opti/opti.hpp -smoothing2.o: libsrc/meshing/smoothing2.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp libsrc/include/../opti/opti.hpp -adfront2.o: libsrc/meshing/adfront2.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -netrule2.o: libsrc/meshing/netrule2.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -triarls.o: libsrc/meshing/triarls.cpp -geomsearch.o: libsrc/meshing/geomsearch.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -secondorder.o: libsrc/meshing/secondorder.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -meshtype.o: libsrc/meshing/meshtype.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -parser3.o: libsrc/meshing/parser3.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -meshing2.o: libsrc/meshing/meshing2.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -quadrls.o: libsrc/meshing/quadrls.cpp -specials.o: libsrc/meshing/specials.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -parser2.o: libsrc/meshing/parser2.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -meshing3.o: libsrc/meshing/meshing3.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -meshfunc.o: libsrc/meshing/meshfunc.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -localh.o: libsrc/meshing/localh.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -improve2gen.o: libsrc/meshing/improve2gen.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp libsrc/include/../opti/opti.hpp -delaunay.o: libsrc/meshing/delaunay.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -boundarylayer.o: libsrc/meshing/boundarylayer.cpp \ - libsrc/include/mystdlib.h libsrc/meshing/meshing.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -msghandler.o: libsrc/meshing/msghandler.cpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mystdlib.h \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp -meshfunc2d.o: libsrc/meshing/meshfunc2d.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -topology.o: libsrc/meshing/topology.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -clusters.o: libsrc/meshing/clusters.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -curvedelems.o: libsrc/meshing/curvedelems.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -curvedelems2.o: libsrc/meshing/curvedelems2.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp -hprefinement.o: libsrc/meshing/hprefinement.cpp libsrc/include/mystdlib.h \ - libsrc/meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp libsrc/meshing/msghandler.hpp \ - libsrc/meshing/meshtype.hpp libsrc/meshing/localh.hpp \ - libsrc/meshing/meshclass.hpp libsrc/meshing/global.hpp \ - libsrc/meshing/meshtool.hpp libsrc/meshing/ruler2.hpp \ - libsrc/meshing/adfront2.hpp libsrc/meshing/meshing2.hpp \ - libsrc/meshing/improve2.hpp libsrc/meshing/geomsearch.hpp \ - libsrc/meshing/adfront3.hpp libsrc/meshing/ruler3.hpp \ - libsrc/meshing/meshing3.hpp libsrc/meshing/improve3.hpp \ - libsrc/meshing/findip.hpp libsrc/meshing/topology.hpp \ - libsrc/meshing/curvedelems.hpp libsrc/meshing/bisect.hpp \ - libsrc/meshing/clusters.hpp libsrc/meshing/meshfunc.hpp \ - libsrc/meshing/hprefinement.hpp libsrc/meshing/boundarylayer.hpp \ - libsrc/meshing/specials.hpp libsrc/meshing/hpref_trig.hpp \ - libsrc/meshing/hpref_quad.hpp libsrc/meshing/hpref_tet.hpp \ - libsrc/meshing/hpref_prism.hpp -nglib.o: libsrc/interface/nglib.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp \ - libsrc/include/stlgeom.hpp libsrc/include/../stlgeom/stlgeom.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../stlgeom/stltopology.hpp \ - libsrc/include/../stlgeom/stltool.hpp \ - libsrc/include/../stlgeom/stlline.hpp \ - libsrc/include/../stlgeom/meshstlsurface.hpp \ - libsrc/include/geometry2d.hpp libsrc/include/../geom2d/geometry2d.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/include/../geom2d/spline2d.hpp \ - libsrc/include/../geom2d/splinegeometry2.hpp \ - libsrc/include/../geom2d/geom2dmesh.hpp libsrc/interface/nglib.h -geomtest3d.o: libsrc/gprim/geomtest3d.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp -geom2d.o: libsrc/gprim/geom2d.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp -geom3d.o: libsrc/gprim/geom3d.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp -adtree.o: libsrc/gprim/adtree.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp -transform3d.o: libsrc/gprim/transform3d.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp -geomfuncs.o: libsrc/gprim/geomfuncs.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp -polynomial.o: libsrc/linalg/polynomial.cpp libsrc/include/mystdlib.h \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp -densemat.o: libsrc/linalg/densemat.cpp libsrc/include/mystdlib.h \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp -vector.o: libsrc/linalg/vector.cpp -algprim.o: libsrc/csg/algprim.cpp libsrc/include/mystdlib.h \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -brick.o: libsrc/csg/brick.cpp libsrc/include/mystdlib.h \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -manifold.o: libsrc/csg/manifold.cpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mystdlib.h \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -bspline2d.o: libsrc/csg/bspline2d.cpp libsrc/include/mystdlib.h \ - libsrc/include/csg.hpp libsrc/include/../csg/csg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -meshsurf.o: libsrc/csg/meshsurf.cpp libsrc/include/mystdlib.h \ - libsrc/include/csg.hpp libsrc/include/../csg/csg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -csgeom.o: libsrc/csg/csgeom.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -polyhedra.o: libsrc/csg/polyhedra.cpp libsrc/include/mystdlib.h \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -curve2d.o: libsrc/csg/curve2d.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -singularref.o: libsrc/csg/singularref.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -edgeflw.o: libsrc/csg/edgeflw.cpp libsrc/include/mystdlib.h \ - libsrc/include/meshing.hpp libsrc/include/../meshing/meshing.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -solid.o: libsrc/csg/solid.cpp libsrc/include/mystdlib.h \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -explicitcurve2d.o: libsrc/csg/explicitcurve2d.cpp \ - libsrc/include/mystdlib.h libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -specpoin.o: libsrc/csg/specpoin.cpp libsrc/include/mystdlib.h \ - libsrc/include/meshing.hpp libsrc/include/../meshing/meshing.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -gencyl.o: libsrc/csg/gencyl.cpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mystdlib.h \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -revolution.o: libsrc/csg/revolution.cpp libsrc/include/mystdlib.h \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -genmesh.o: libsrc/csg/genmesh.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -spline3d.o: libsrc/csg/spline3d.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -surface.o: libsrc/csg/surface.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp \ - libsrc/include/../linalg/linalg.hpp -identify.o: libsrc/csg/identify.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -triapprox.o: libsrc/csg/triapprox.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp -geom2dmesh.o: libsrc/geom2d/geom2dmesh.cpp libsrc/include/mystdlib.h \ - libsrc/include/csg.hpp libsrc/include/../csg/csg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp \ - libsrc/include/geometry2d.hpp libsrc/include/../geom2d/geometry2d.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/include/../geom2d/spline2d.hpp \ - libsrc/include/../geom2d/splinegeometry2.hpp \ - libsrc/include/../geom2d/geom2dmesh.hpp -spline2d.o: libsrc/geom2d/spline2d.cpp libsrc/include/mystdlib.h \ - libsrc/include/csg.hpp libsrc/include/../csg/csg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/geom2d/spline2d.hpp -splinegeometry2.o: libsrc/geom2d/splinegeometry2.cpp \ - libsrc/include/mystdlib.h libsrc/include/csg.hpp \ - libsrc/include/../csg/csg.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/geom2d/spline2d.hpp \ - libsrc/geom2d/splinegeometry2.hpp -genmesh2d.o: libsrc/geom2d/genmesh2d.cpp libsrc/include/mystdlib.h \ - libsrc/include/csg.hpp libsrc/include/../csg/csg.hpp \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/linalg.hpp libsrc/include/../linalg/linalg.hpp \ - libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp \ - libsrc/include/../csg/surface.hpp libsrc/include/../csg/solid.hpp \ - libsrc/include/../csg/identify.hpp \ - libsrc/include/../csg/singularref.hpp libsrc/include/../csg/csgeom.hpp \ - libsrc/include/../csg/triapprox.hpp libsrc/include/../csg/algprim.hpp \ - libsrc/include/../csg/brick.hpp libsrc/include/../csg/spline3d.hpp \ - libsrc/include/../csg/manifold.hpp libsrc/include/../csg/curve2d.hpp \ - libsrc/include/../csg/explicitcurve2d.hpp \ - libsrc/include/../csg/gencyl.hpp libsrc/include/../csg/polyhedra.hpp \ - libsrc/include/../csg/extrusion.hpp \ - libsrc/include/../csg/revolution.hpp libsrc/include/../csg/specpoin.hpp \ - libsrc/include/../csg/edgeflw.hpp libsrc/include/../csg/meshsurf.hpp \ - libsrc/include/geometry2d.hpp libsrc/include/../geom2d/geometry2d.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/include/../geom2d/spline2d.hpp \ - libsrc/include/../geom2d/splinegeometry2.hpp \ - libsrc/include/../geom2d/geom2dmesh.hpp -meshstlsurface.o: libsrc/stlgeom/meshstlsurface.cpp \ - libsrc/include/mystdlib.h libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mydefs.hpp \ - libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp libsrc/stlgeom/stlgeom.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/stlgeom/stltopology.hpp \ - libsrc/stlgeom/stltool.hpp libsrc/stlgeom/stlline.hpp \ - libsrc/stlgeom/meshstlsurface.hpp -stlline.o: libsrc/stlgeom/stlline.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp libsrc/stlgeom/stlgeom.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/stlgeom/stltopology.hpp \ - libsrc/stlgeom/stltool.hpp libsrc/stlgeom/stlline.hpp \ - libsrc/stlgeom/meshstlsurface.hpp -stltopology.o: libsrc/stlgeom/stltopology.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp libsrc/stlgeom/stlgeom.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/stlgeom/stltopology.hpp \ - libsrc/stlgeom/stltool.hpp libsrc/stlgeom/stlline.hpp \ - libsrc/stlgeom/meshstlsurface.hpp -stltool.o: libsrc/stlgeom/stltool.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp libsrc/stlgeom/stlgeom.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/stlgeom/stltopology.hpp \ - libsrc/stlgeom/stltool.hpp libsrc/stlgeom/stlline.hpp \ - libsrc/stlgeom/meshstlsurface.hpp -stlgeom.o: libsrc/stlgeom/stlgeom.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp libsrc/stlgeom/stlgeom.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/stlgeom/stltopology.hpp \ - libsrc/stlgeom/stltool.hpp libsrc/stlgeom/stlline.hpp \ - libsrc/stlgeom/meshstlsurface.hpp -stlgeomchart.o: libsrc/stlgeom/stlgeomchart.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp libsrc/stlgeom/stlgeom.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/stlgeom/stltopology.hpp \ - libsrc/stlgeom/stltool.hpp libsrc/stlgeom/stlline.hpp \ - libsrc/stlgeom/meshstlsurface.hpp -stlgeommesh.o: libsrc/stlgeom/stlgeommesh.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp libsrc/stlgeom/stlgeom.hpp \ - libsrc/include/../gprim/gprim.hpp libsrc/stlgeom/stltopology.hpp \ - libsrc/stlgeom/stltool.hpp libsrc/stlgeom/stlline.hpp \ - libsrc/stlgeom/meshstlsurface.hpp -moveablemem.o: libsrc/general/moveablemem.cpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mystdlib.h \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -ngexception.o: libsrc/general/ngexception.cpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mystdlib.h \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -table.o: libsrc/general/table.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -optmem.o: libsrc/general/optmem.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -spbita2d.o: libsrc/general/spbita2d.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -hashtabl.o: libsrc/general/hashtabl.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -sort.o: libsrc/general/sort.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -flags.o: libsrc/general/flags.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -seti.o: libsrc/general/seti.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -bitarray.o: libsrc/general/bitarray.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -array.o: libsrc/general/array.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -symbolta.o: libsrc/general/symbolta.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp -mystring.o: libsrc/general/mystring.cpp libsrc/include/mystdlib.h \ - libsrc/include/myadt.hpp libsrc/include/../general/myadt.hpp \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp -nglib_addon.o: nglib_addon.cpp libsrc/include/meshing.hpp \ - libsrc/include/../meshing/meshing.hpp libsrc/include/myadt.hpp \ - libsrc/include/../general/myadt.hpp libsrc/include/mystdlib.h \ - libsrc/include/mydefs.hpp libsrc/include/../general/ngexception.hpp \ - libsrc/include/../general/parthreads.hpp \ - libsrc/include/../general/moveablemem.hpp \ - libsrc/include/../general/dynamicmem.hpp \ - libsrc/include/../general/template.hpp \ - libsrc/include/../general/array.hpp libsrc/include/../general/table.hpp \ - libsrc/include/../general/hashtabl.hpp \ - libsrc/include/../general/symbolta.hpp \ - libsrc/include/../general/bitarray.hpp \ - libsrc/include/../general/flags.hpp \ - libsrc/include/../general/spbita2d.hpp \ - libsrc/include/../general/seti.hpp libsrc/include/../general/optmem.hpp \ - libsrc/include/../general/autoptr.hpp \ - libsrc/include/../general/sort.hpp libsrc/include/../general/stack.hpp \ - libsrc/include/../general/mystring.hpp libsrc/include/gprim.hpp \ - libsrc/include/../gprim/gprim.hpp \ - libsrc/include/../gprim/geomobjects.hpp \ - libsrc/include/../gprim/geomops.hpp \ - libsrc/include/../gprim/geomfuncs.hpp \ - libsrc/include/../gprim/geom2d.hpp libsrc/include/../gprim/geom3d.hpp \ - libsrc/include/../gprim/geomtest3d.hpp \ - libsrc/include/../gprim/transform3d.hpp \ - libsrc/include/../gprim/adtree.hpp libsrc/include/linalg.hpp \ - libsrc/include/../linalg/linalg.hpp libsrc/include/../linalg/vector.hpp \ - libsrc/include/../linalg/densemat.hpp \ - libsrc/include/../linalg/polynomial.hpp libsrc/include/opti.hpp \ - libsrc/include/../opti/opti.hpp \ - libsrc/include/../meshing/msghandler.hpp \ - libsrc/include/../meshing/meshtype.hpp \ - libsrc/include/../meshing/localh.hpp \ - libsrc/include/../meshing/meshclass.hpp \ - libsrc/include/../meshing/global.hpp \ - libsrc/include/../meshing/meshtool.hpp \ - libsrc/include/../meshing/ruler2.hpp \ - libsrc/include/../meshing/adfront2.hpp \ - libsrc/include/../meshing/meshing2.hpp \ - libsrc/include/../meshing/improve2.hpp \ - libsrc/include/../meshing/geomsearch.hpp \ - libsrc/include/../meshing/adfront3.hpp \ - libsrc/include/../meshing/ruler3.hpp \ - libsrc/include/../meshing/meshing3.hpp \ - libsrc/include/../meshing/improve3.hpp \ - libsrc/include/../meshing/findip.hpp \ - libsrc/include/../meshing/topology.hpp \ - libsrc/include/../meshing/curvedelems.hpp \ - libsrc/include/../meshing/bisect.hpp \ - libsrc/include/../meshing/clusters.hpp \ - libsrc/include/../meshing/meshfunc.hpp \ - libsrc/include/../meshing/hprefinement.hpp \ - libsrc/include/../meshing/boundarylayer.hpp \ - libsrc/include/../meshing/specials.hpp libsrc/interface/nglib.h \ - ../../Common/Message.h diff --git a/contrib/Tetgen/Makefile b/contrib/Tetgen/Makefile index 2c88b227f0..0e0c885c92 100644 --- a/contrib/Tetgen/Makefile +++ b/contrib/Tetgen/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.4 2007-07-09 13:54:38 geuzaine Exp $ +# $Id: Makefile,v 1.5 2008-01-18 20:02:30 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -49,5 +49,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -predicates.o: predicates.cxx tetgen.h -tetgen.o: tetgen.cxx tetgen.h diff --git a/contrib/Triangle/Makefile b/contrib/Triangle/Makefile index 157c61bf7f..6ec6fec3e8 100644 --- a/contrib/Triangle/Makefile +++ b/contrib/Triangle/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 2007-07-09 13:54:38 geuzaine Exp $ +# $Id: Makefile,v 1.6 2008-01-18 20:02:30 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -52,4 +52,3 @@ depend: rm -f Makefile.new # DO NOT DELETE THIS LINE -triangle.o: triangle.c triangle.h diff --git a/variables.in b/variables.in index fdd32fe91d..e91797185b 100644 --- a/variables.in +++ b/variables.in @@ -1,4 +1,4 @@ -# $Id: variables.in,v 1.19 2007-11-28 09:26:01 geuzaine Exp $ +# $Id: variables.in,v 1.20 2008-01-18 20:02:27 geuzaine Exp $ # # Copyright (C) 1997-2007 C. Geuzaine, J.-F. Remacle # @@ -37,6 +37,9 @@ LINKER=@LINKER@ # All compiler flags except optimization flags FLAGS=@FLAGS@ +# Additional system includes +SYSINCLUDE=@SYSINCLUDE@ + # Compiler optimization flags OPTIM=@OPTIM@ @@ -46,13 +49,17 @@ GMSH_LIBS=@GMSH_LIBS@ # How you create a static library on this machine AR=@AR@ +ARFLAGS=@ARFLAGS@ RANLIB=@RANLIB@ -# The extension to use for executables... -EXEEXT=@EXEEXT@ +# The symbols used for includes and compiling +ISYM=@ISYM@ +CSYM=@CSYM@ -# Any operation to perform on the executable after the link -POSTBUILD=@POSTBUILD@ +# The extension to use for object files, libraries and executables +OBJEXT=@OBJEXT@ +LIBEXT=@LIBEXT@ +EXEEXT=@EXEEXT@ # Installation directories prefix=@prefix@ -- GitLab