
targets = test_msgsnd  test_msgrcv test_msgctl \
          server client


all : $(targets)

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

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