aboutsummaryrefslogtreecommitdiff
path: root/examples/mandel/Makefile
blob: 4311ee9441a89461c0f468e66bf15bad7dc6f51d (plain)
1
2
3
4
5
6
7
8
9
.PHONY: all clean

all: mandel.so

clean:
	rm -f mandel.so

mandel.so: mandel.c
	gcc -Wall -Wextra -fPIC -shared -O3 -fopenmp $< -o $@