diff options
author | pav <pav@FreeBSD.org> | 2006-01-15 09:43:25 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-01-15 09:43:25 +0800 |
commit | ff723b8d79db2d6c077df8d8b20de1c730f05da6 (patch) | |
tree | 06db808402daabcc6a9ae093aecf5b70114166a7 /math/tetgen/files | |
parent | 0fe57c5f9b7eb45f79727bd4517d998d7a40674c (diff) | |
download | freebsd-ports-graphics-ff723b8d79db2d6c077df8d8b20de1c730f05da6.tar.gz freebsd-ports-graphics-ff723b8d79db2d6c077df8d8b20de1c730f05da6.tar.zst freebsd-ports-graphics-ff723b8d79db2d6c077df8d8b20de1c730f05da6.zip |
A high quality tetrahedral mesher. It can be plugged in cad/gmsh.
PR: ports/91604
Submitted by: Pedro F. Giffuni <giffunip@asme.org>
Diffstat (limited to 'math/tetgen/files')
-rw-r--r-- | math/tetgen/files/patch-makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/math/tetgen/files/patch-makefile b/math/tetgen/files/patch-makefile new file mode 100644 index 00000000000..af40d496be4 --- /dev/null +++ b/math/tetgen/files/patch-makefile @@ -0,0 +1,25 @@ +--- makefile.orig Mon Jan 9 11:33:37 2006 ++++ makefile Mon Jan 9 11:35:33 2006 +@@ -6,7 +6,7 @@ + + # CC should be set to the name of your favorite C++ compiler. + +-CC = g++ ++CC = $(CXX) + + # OPT is the level of optimiztion, default is -O. One should try -O2, -O3 + # ... to find the best optimization level. +@@ -23,11 +23,11 @@ + # down the speed of TetGen. They can be skipped by define the -DNDEBUG + # switch. + +-CFLAGS = ++CFLAGS ?= $(CXXFLAGS) + + # RM should be set to the name of your favorite rm (file deletion program). + +-RM = /bin/rm ++RM ?= /bin/rm + + # The action starts here. + |