#
# Makefile for OS lecture utilities.
#
# Mark Claypool, 2017
#
# Adopted from OSTEP lectures.
#

all: cpu mem io threads-v0 threads-v1 

cpu: cpu.c
	gcc cpu.c -o cpu -lpthread

mem: mem.c
	gcc mem.c -o mem -lpthread

threads-v0: threads-v0.c
	gcc threads-v0.c -o threads-v0 -lpthread

threads-v1: threads-v1.c
	gcc threads-v1.c -o threads-v1 -lpthread

io: io.c
	gcc io.c -o io

clean:
	/bin/rm -f *~ core a.out cpu mem threads-v0 threads-v1 io
