Skip to content

Commit a763cc4

Browse files
authored
Merge pull request #1798 from krisdale/update-fortran-optimize-integral
Update Fortran dense linear algebra optimize integral sample
2 parents 7dc9a3b + 9e28f1d commit a763cc4

File tree

5 files changed

+326
-101
lines changed

5 files changed

+326
-101
lines changed

DirectProgramming/Fortran/DenseLinearAlgebra/optimize-integral/Makefile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
#
1616
#Uncomment one of the following with which you wish to compile
1717

18-
FC = ifort -O0
19-
#FC = ifort -O1
20-
#FC = ifort -O2
21-
#FC = ifort -O3
18+
FC = ifx -O0
19+
#FC = ifx -O1
20+
#FC = ifx -O2
21+
#FC = ifx -O3
2222

2323
OBJS = int_sin.o
2424

@@ -28,11 +28,10 @@ run: int_sin
2828
./int_sin
2929

3030
int_sin: $(OBJS)
31-
ifort $^ -o $@
31+
ifx $^ -o $@
3232

3333
%.o: src/%.f90
3434
$(FC) $^ -c
3535

3636
clean:
37-
/bin/rm -f core.* $(OBJS) int_sin
38-
37+
/bin/rm -f $(OBJS) int_sin

0 commit comments

Comments
 (0)