hello-omp:
	gcc -g -Og -fopenmp hello-omp.c -o hello-omp -static

hello-pthread:
	gcc -g -Og -pthread hello-pthread.c -o hello-pthread -static

clean:
	rm -f hello-omp hello-pthread 

all:
	make clean hello-omp hello-pthread
