DIR = version0

EXEC = mandelbrot

all : $(EXEC)

mandelbrot : $(DIR)/main.c
	gcc -o $@  $<

clean:
	rm -f *.o *~ $(EXEC) $(DIR)/*.o $(DIR)/*.~