CC = gcc CLFAGS = -g -Wall LIBS = -lm -lgd mandelbrot: mandelbrot.c $(CC) $(CFLAGS) -o mandelbrot mandelbrot.c $(LIBS)