bytecount: bytecount.o sortedprint.o
	gcc bytecount.o sortedprint.o -o bytecount

bytecount.o: bytecount.c bytecount.h
	gcc -c bytecount.c

sortedprint.o: sortedprint.c bytecount.h
	gcc -c sortedprint.c
