8 lines
109 B
Makefile
8 lines
109 B
Makefile
|
all: dotProduct
|
||
|
|
||
|
dotProduct: dotProduct.cpp walltime.h
|
||
|
g++ -O3 -fopenmp $< -o $@
|
||
|
|
||
|
clean:
|
||
|
rm -rf dotProduct
|