CC = gcc CFLAGS = -Wall -pedantic -g PROGRAMS = mypipe mypipe2 minishell mypopen mypopen2 all: $(PROGRAMS) clean: rm -f *~ $(PROGRAMS)