#
# CSSE 132
# Rose-Hulman Institute of Technology
# Computer Science and Software Engineering
#
# Makefile - This is used to make the demos.
#

default: factors mergesort thread_counter

factors: factors.c
	gcc -g -pthread -o factors factors.c

mergesort: mergesort.c
	gcc -g -pthread -o mergesort mergesort.c

thread_counter: thread_counter.c
	gcc -pthread -o thread_counter thread_counter.c

clean:
	rm -f mergesort factors thread_counter