CC = gcc CFLAGS = -Wall -pedantic -g -lm -lpthread PROGRAMS = pagesize brk sh1 sh2 sh_fork pag1 \ sh_server sh_client \ fork_sem sh_fork_sem sh_server_sem sh_client_sem all: $(PROGRAMS) clean: rm -f *.o *~ *.aux *.log *.dvi $(PROGRAMS)