blob: 69740489ab6a30b569b16ebdae1707b68d767e30 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
--- examples/Makefile.orig 2017-08-08 07:32:58 UTC
+++ examples/Makefile
@@ -57,9 +57,10 @@ multiple_arithmetics_example: $(LIBSMUMP
.SUFFIXES: .c .F .o
.F.o:
- $(FC) $(OPTF) $(INCS) -I. -I$(topdir)/include -c $*.F $(OUTF)$*.o
+ $(FC) $(OPTF) $(INCS) -I. -I$(topdir)/include -c $*.F $(OUTF) $*.o
+
.c.o:
- $(CC) $(OPTC) $(INCS) $(CDEFS) -I. -I$(topdir)/include -I$(topdir)/src -c $*.c $(OUTC)$*.o
+ $(CC) $(OPTC) $(INCS) $(CDEFS) -I. -I$(topdir)/include -I$(topdir)/src -c $*.c $(OUTC) $*.o
$(libdir)/libsmumps$(PLAT)$(LIBEXT):
|