diff options
author | asami <asami@FreeBSD.org> | 1997-01-11 19:38:43 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-01-11 19:38:43 +0800 |
commit | 038227dd2a95406a3bcb7bc84336c1f2e7d09330 (patch) | |
tree | 66254ae52d70185aac968c208bea3daa44bb4c01 /math/freefem/files | |
parent | d368f1f0878e912f8cede6765c4392754466a1b8 (diff) | |
download | freebsd-ports-gnome-038227dd2a95406a3bcb7bc84336c1f2e7d09330.tar.gz freebsd-ports-gnome-038227dd2a95406a3bcb7bc84336c1f2e7d09330.tar.zst freebsd-ports-gnome-038227dd2a95406a3bcb7bc84336c1f2e7d09330.zip |
2-D FEM solving package. Closes PR ports/2290.
Submitted by: pgiffuni@FPS.biblos.unal.edu.co
Diffstat (limited to 'math/freefem/files')
-rw-r--r-- | math/freefem/files/patch-aa | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/math/freefem/files/patch-aa b/math/freefem/files/patch-aa new file mode 100644 index 000000000000..1058b9a9757a --- /dev/null +++ b/math/freefem/files/patch-aa @@ -0,0 +1,42 @@ +*** makefile.x.orig Wed Jan 24 08:37:09 1996 +--- makefile.x Tue Dec 24 14:46:59 1996 +*************** +*** 26,35 **** + # + # the following preprocessing options are available + # ADAPT : to enable mesh adaptation +! export CXXFLAGS = -g -DADAPT + #export CXXFLAGS = -g +! export CXXINC = -I./ -Iadapt/ -I/usr/local/X11R5/include +! export CXXLIBS = -Ladapt/ -ladapt -L/usr/local/X11R5/lib -lX11 -lm + #export CXXLIBS = -L/usr/local/X11R5/lib -lX11 -lm + + +--- 26,35 ---- + # + # the following preprocessing options are available + # ADAPT : to enable mesh adaptation +! export CXXFLAGS = -O $(CFLAGS) -DADAPT + #export CXXFLAGS = -g +! export CXXINC = -I./ -Iadapt/ -I$(X11BASE)/include +! export CXXLIBS = -Ladapt/ -ladapt -L$(X11BASE)/lib -lX11 -lm + #export CXXLIBS = -L/usr/local/X11R5/lib -lX11 -lm + + +*************** +*** 48,54 **** + $(CXX) $(CXXFLAGS) $(CXXINC) -c $< + + libadapt: +! cd adapt;make -f makefile.x;cd .. + + purify: freefem + purify $(CXX) -o freefem.pure $(OBJS) $(CXXLIBS) +--- 48,54 ---- + $(CXX) $(CXXFLAGS) $(CXXINC) -c $< + + libadapt: +! cd adapt;$(MAKE) -f makefile.x;cd .. + + purify: freefem + purify $(CXX) -o freefem.pure $(OBJS) $(CXXLIBS) |