.PHONY: all clean all: mandel.so clean: rm -f mandel.so mandel.so: mandel.c gcc -Wall -Wextra -fPIC -shared -O3 -fopenmp $< -o $@