#-DOMP_PARALLEL has the same effect as "#define OMP_PARALLEL" in the code
# and it acctivates the "#pragma omp..." openMP directives
#You also need to use export OMP_NUM_THREADS=4 if you want to effectively use 4 processors
all:    
		g++ -o gi-ext -O2 -Wall ./src/main.cpp 
