CC = g++
CCFLAGS = -g 

TestSorts: TestSorts.cpp Random.h QuickSort3.h BubbleSort3.h \
  InsertionSort3.h
	$(CC) $(CCFLAGS) -o $@ $<

clean:
	del *.exe
