freebsd-ports/math/nsc2ke/files/patch-makefile
Pav Lucistnik 6de26dfcb0 Add nsc2ke, a Finite-Volume Galerkin program computing 2D and axisymmetric
flows on unstructured meshes.

PR:		ports/60836
Submitted by:	Thierry Thomas <thierry@pompo.net>
2004-01-03 00:57:09 +00:00

21 lines
438 B
Plaintext

--- makefile.orig Tue Feb 7 14:00:19 1995
+++ makefile Thu Jan 1 21:40:26 2004
@@ -1,6 +1,4 @@
-F77=f77
-LINK=f77 -O
-FLAGS=-c -O
+# $FreeBSD$
OBJS=nsc2ke.o config.o mailla.o aires.o seg2d.o\
clhaut.o init.o calprc.o result.o fluosh.o flucin.o\
@@ -9,7 +7,7 @@
loglaw.o isovat.o gravity.o
.f.o:
- $(F77) $(FLAGS) $*.f
+ $(F77) -c $(FFLAGS) $*.f
NSC2KE:$(OBJS)
- $(LINK) $(OBJS) -o NSC2KE
+ $(F77) $(FFLAGS) $(OBJS) -o NSC2KE