CC=gcc
CFLAGS=-g

scale:	gd.o
	gcc -g gd.o -o $@

gd.o:	gd.c
	gcc -g -c gd.c

clean:	
	rm *.o scale
