# Makefile for building and running Hello World examples. # Requires Intel Compiler. all: hello_world hello_world: icc -openmp -o hello_omp Hello_World_omp.c icc -lpthread -o hello_pthread Hello_World_pthread.c clean: rm -f hello_omp hello_pthread