CFLAGS=
CC=gcc
all:	bubble.o sortg.o 
	${CC} ${CFLAGS}  bubble.o sortg.o -o sortg
sortg.o:	sortg.c
	${CC} ${CFLAGS} -c sortg.c
bubble.o:	bubble.c
	${CC} ${CFLAGS} -c bubble.c
clean:
	rm -rf bubble.o sortg.o sortg
tar:
	tar cvf newsortgC.tar *.c Makefile
