# C compiler
CC = gcc
CC_FLAGS = -fopenmp -O3

prime: 
	$(CC) $(CC_FLAGS) feyman.c -o feyman 

clean:
	rm -f feyman
