all: oneway pipe1 pipe2 two_oneway p4 p5 p6

oneway: one_way_pipe.c
	gcc -o oneway one_way_pipe.c

pipe1: pipeEx1.c
	gcc -o pipe1 pipeEx1.c

pipe2: pipeEx2.c
	gcc -o pipe2 pipeEx2.c

two_oneway: pipeEx3.c
	gcc -o two_oneway pipeEx3.c

p4: pipeEx4.c
	g++ -o p4 pipeEx4.c

p5: pipeEx5.c
	g++ -o p5 pipeEx5.c

p6: pipeEx6.c
	g++ -o p6 pipeEx6.c


