# Update the CYCLE_PER_US depending on the CPU spped. Otherwise the result
# might be inaccurate.
CYCLE_PER_US=2400L
OFLAG=-O2
FLAGS=-I./include -g -lpthread -Wall ${OFLAG} -DCYCLE_PER_US=${CYCLE_PER_US}

mutex:
	gcc victim.c -o victim ${FLAGS} -DMUTEX

clean:
	rm victim
