all: threads passstr pt

threads: threads.c
	gcc $< -o $@

passstr: passstr.c
	gcc $< -o $@

pt: pt.c
	gcc $< -o $@ -lpthread

clean:
	rm -f pt passstr threads
