Skip to content

Commit 0791c22

Browse files
Fix Makefile
1 parent 3838c85 commit 0791c22

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

BLAS/SRC/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@
5656
TOPSRCDIR = ../..
5757
include $(TOPSRCDIR)/make.inc
5858

59+
.SUFFIXES: .F .f90 .o
60+
.F.o:
61+
$(FC) $(FFLAGS) -c -o $@ $<
62+
.f90.o:
63+
$(FC) $(FFLAGS) -c -o $@ $<
64+
5965
.PHONY: all
6066
all: $(BLASLIB)
6167

0 commit comments

Comments
 (0)