This directory contains code for the mergesort case study described in
chapter 12.

Files:

   mergesort.cilk - cilk implementation of mergesort
   merge.c        - C support library
   Makefile       - makefile to build the mergesort application

To run the code:

1. Download and install the cilk compiler from
   http://supertech.csail.mit.edu/cilk/  You will need a C compiler to build
   the cilk compiler and mergesort.  We have tested the mergesort code using
   cilk version 5.4.6 on Mac OS X.

2. Type "make" to build the mergesort application.

3. Run the code by typing "./mergesort".
