<66>[rebutosa:/home/mac/yoshi/www/mac338/exx/mergesort2b] > ll total 36 -rw-r--r-- 1 yoshi mac 450 Jun 5 10:43 Item.c -rw-r--r-- 1 yoshi mac 524 Jun 5 10:37 Item.h lrwxrwxrwx 1 yoshi mac 22 Jun 5 09:43 Makefile -> ../mergesort1/Makefile lrwxrwxrwx 1 yoshi mac 23 Jun 5 09:43 gb_flip.c -> ../mergesort1/gb_flip.c lrwxrwxrwx 1 yoshi mac 23 Jun 5 09:43 gb_flip.h -> ../mergesort1/gb_flip.h -rw-r--r-- 1 yoshi mac 2551 May 30 01:08 merge_uso.txt lrwxrwxrwx 1 yoshi mac 25 Jun 5 11:13 mergesort.c -> ../mergesort1/mergesort.c lrwxrwxrwx 1 yoshi mac 25 Jun 5 09:43 mergesort.h -> ../mergesort1/mergesort.h -rw-r--r-- 1 yoshi mac 1432 Jun 5 10:23 mergesort2.c lrwxrwxrwx 1 yoshi mac 11 Jun 5 09:43 sort.c -> mergesort.c lrwxrwxrwx 1 yoshi mac 11 Jun 5 09:43 sort.h -> mergesort.h -rw-r--r-- 1 yoshi mac 616 Jun 5 10:25 sort_drive.c <67>[rebutosa:/home/mac/yoshi/www/mac338/exx/mergesort2b] > make sort_drive gcc -g -I. -Wall -c Item.c gcc -g -I. -Wall -c sort.c gcc -g -I. -Wall -c sort_drive.c gcc -g -I. -Wall -c gb_flip.c gcc -g -I. -Wall -o sort_drive sort_drive.o Item.o gb_flip.o sort.o -lm <68>[rebutosa:/home/mac/yoshi/www/mac338/exx/mergesort2b] > sort_drive 10 10 z 31415 5z 0e 0d 3b 6l 9j 0j 0p 1i 8d 0p 0j 0d 0e 1i 3b 5z 6l 8d 9j <69>[rebutosa:/home/mac/yoshi/www/mac338/exx/mergesort2b] > sort_drive 4 2 z 5511 0b 1o 1f 1t 0b 1t 1f 1o <70>[rebutosa:/home/mac/yoshi/www/mac338/exx/mergesort2b] > make clean /bin/rm -f *~ \#~ .\#* *.o core a.out <71>[rebutosa:/home/mac/yoshi/www/mac338/exx/mergesort2b] >