# Makefile 

# Source file
SRC = openMP_integration.c

# Compiler
CC = gcc

# Executable name
EXE = ./out

all: $(EXE) 

$(EXE): $(SRC)
	$(CC) -fopenmp -o $(EXE) $(SRC) 

clean:
	rm -f $(EXE)

run:
	$(EXE) 
