CC = CC

targets = pipe pipe2 pipe3

all : $(targets)

$(targets) : $$@.C
	$(CC) -o $@ $@.C -lthread

clean :
	/bin/rm -f $(targets)
