# makefile for the mandelbrot set program CC = gcc mandelbrot: mandelbrot.c $(CC) -o mandelbrot mandelbrot.c -I/usr/openwin/include -L/usr/openwin/lib -lX11 -lm clean: /bin/rm -f core *.o mandelbrot