This repository has been archived on 2022-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
HPC/Project2/Project2-code/dotProduct/makefile

8 lines
109 B
Makefile

all: dotProduct
dotProduct: dotProduct.cpp walltime.h
g++ -O3 -fopenmp $< -o $@
clean:
rm -rf dotProduct