hello_f: hello.f90
	f95 -o hello_f \
	    -mp=openmp -explicitpar -stackvar -D_OPENMP=200011 \
	    hello.f90

hello_c: hello.c
	cc -o hello_c -xopenmp hello.c

example1: example1.f90
	f95 -o example1 \
	    -mp=openmp -explicitpar -stackvar -D_OPENMP=200011 \
	    example1.f90

