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/hist/makefile

12 lines
151 B
Makefile

all: hist_seq hist_omp
hist_seq: hist_seq.cpp
g++ -O3 $^ -o $@
hist_omp: hist_omp.cpp
g++ -O3 -fopenmp $^ -o $@
clean:
rm -rf hist_seq hist_omp