🎉 First commit
This commit is contained in:
commit
3b8d21dde2
17 changed files with 571 additions and 0 deletions
20
MatMult/Makefile
Normal file
20
MatMult/Makefile
Normal file
|
@ -0,0 +1,20 @@
|
|||
GCC = gcc
|
||||
oT = -fopenmp -O3
|
||||
|
||||
CFLAGS = -lm
|
||||
|
||||
oL= Otime.c
|
||||
|
||||
BINDIR = ../
|
||||
PROGS = $(BINDIR)MM1c $(BINDIR)MM1r
|
||||
|
||||
all: MM1c MM1r
|
||||
|
||||
clean:
|
||||
$(RM) $(PROGS)
|
||||
|
||||
MM1c:
|
||||
$(GCC) $(oT) $(oL) $@.c -o $(BINDIR)$@ $(CFLAGS)
|
||||
|
||||
MM1r:
|
||||
$(GCC) $(oT) $(oL) $@.c -o $(BINDIR)$@ $(CFLAGS)
|
Loading…
Add table
Add a link
Reference in a new issue