all: hello

hello: hello.o
	gcc -pthread -fopenmp hello.o -o hello.exe
	
%.o: %.c
	gcc $(CFLAGS) -fopenmp -DCOMPILER_GNU -o $@ -c $<
	
clean:
	rm -f hello.exe
	rm -f hello.o
	