all: fork1 fork2 pipe1 pipe2 thread1 thread2 thread3 client server

fork1: forkExample1.c
	g++ forkExample1.c -o fork1

fork2: forkExample2.c
	g++ forkExample2.c -o fork2

pipe1: pipeEx1.c
	g++ pipeEx1.c -o pipe1

pipe2: pipeEx2.c
	g++ pipeEx2.c -o pipe2

thread1: threadDemo1.c
	g++ threadDemo1.c -lpthread -o thread1

thread2: threadDemo2.c
	g++ threadDemo2.c -lpthread -o thread2

thread3: threadDemo3.c
	g++ threadDemo3.c -lpthread -o thread3

hello: hello.c
	g++ hello.c -lpthread -o hello

client: tcpclient.c
	g++ -o client tcpclient.c

server: timeserver.c
	g++ -o server timeserver.c















