# Makefile for lab10

fractals: fractals.c
	gcc fractals.c gfx.o -lX11 -lm -o fractals

clean:
	rm fractals 

