# Makefile for building and running Hello World examples. # Requires Intel Compiler. all: hello_world hello_world: cc -lgomp -fopenmp -o hello_omp Hello_World_omp.c cc -lgomp -fopenmp -o hello_omp2 Hello_World_omp2.c cc -lpthread -o hello_pthread Hello_World_pthread.c clean: rm -f hello_omp hello_pthread