all: oneway pipe1 pipe2 two_oneway

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



