all: mandel-float mandel-double

mandel-float: mandel.c mandel.h
	gcc -Wall -DREEL=float mandel.c -lSDL -lX11 -lm -o mandel-float

mandel-double: mandel.c mandel.h
	gcc -Wall mandel.c -lSDL -lX11 -lm -o mandel-double

clean:
	rm -f mandel-double mandel-float
