Blame | Last modification | View Log | Download | RSS feed
## Treat warnings as errors. This seems to be the only way to# convince some students of the importance of ensuring that# their code compiles without warnings before starting to debug.## Do not change this line. We will not use your copy of the Makefile# we will use *this* Makefile to run check.py when grading.##CFLAGS=-Wall -O3 -WerrorCFLAGS=-Wall -O1 -g -WerrorLDLIBS=-lpthread# Use make's default rulesall: threadpool_test quicksortthreadpool_test: threadpool_test.o threadpool.o list.oquicksort: quicksort.o threadpool.o list.oclean:rm -f *.o threadpool_test quicksort