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