CFLAGS = -g

dither.o:	dither.c
		cc $(CFLAGS) -c dither.c -o dither.o

clean:
		/bin/rm -f dither.o
