# Makefile using OMP on single computer all: pi_omp.out pi_omp.out: pi_omp.c gcc -fopenmp -o pi_omp pi_omp.c -lm pi_omp > pi_omp.out rm -f pi_omp