CC=gcc

testrl: testrl.o readLine.o
	$(CC) -o testrl testrl.o readLine.o

goodbye: hello.c
	$(CC) hello.c -o goodbye

testpower: testpower.o power.o
	cc -o testpower testpower.o power.o


testexpt: testexpt.o expt.o
	$(CC) -lm -o testexpt testexpt.o expt.o

testrdln: testrdln.o rdln.o
	cc -o testrdln testrdln.o rdln.o

testreadline: testreadline.o readline.o
	cc -o testreadline testreadline.o readline.o

scheme.o: scheme.h
