CC = gcc
CFLAGS = -Wall -g

PROGRAMS = msg_fork msgsnd msgrcv 

all: $(PROGRAMS)

clean:
	rm -f *~ $(PROGRAMS)