EXTRAS = -g 
sr.o: sr.c ../debug.h Makefile
	gcc -c sr.c $(EXTRAS)
test: sr.c
	gcc -o test_sr ../itoa.o sr.c $(EXTRAS)
clean:
	rm -f *.o core test_sr
