You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
simulacion-permeabilidad/tools/connec/makefile

10 lines
184 B
Makefile

F90:= gfortran
all: conec2d conec3d
conec2d: CONNEC2D.FOR
$(F90) -O3 -o conec2d CONNEC2D.FOR
conec3d: CONNEC3D.FOR
$(F90) -O3 -o conec3d CONNEC3D.FOR
clean:
-rm -f conec2d conec3d