#
# Makefile.
#
# Mark Claypool, 2017
#

all: threads-hello fork thread

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

fork: fork.c
	gcc fork.c -o fork 

thread: thread.c
	gcc thread.c -o thread -lpthread

clean:
	/bin/rm -f *~ core a.out threads-hello fork thread
