CC=gcc
CFLAGS=-g

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

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

install:	scale
	cp -pf scale ../../cgi-bin

clean:	
	rm -f *.o scale
