# Benchmark test programs.

CF = -g 

EXE = qsort qsorts runners runnerd pthread

all: $(EXE)

clean: 
	rm -f $(EXE)

distclean:
	rm -f $(EXE) out* *.bak *~ cscope.out tags

# benchmark test code
qsort: qsort.c
	cc $(CF) qsort.c -o qsort 

qsorts: qsort.c
	cc $(CF) qsort.c -static -o qsorts

# shlib test code
runners: runner.c
	cc $(CF) -static runner.c -o runners -lm

runnerd: runner.c
	cc $(CF) runner.c -o runnerd -lm

pthread: pthread.c
	cc $(CF) pthread.c -o pthread -lpthread

