CC = gcc CFLAGS = -Wall -pedantic -g LDFLAGS = -l pthread PROGRAMS = cond_signal cond_signal_n \ cond_broadcast cond_broadcast2 \ teste_cond_wait all: $(PROGRAMS) clean: rm -f *.o *~ *.aux *.log *.dvi $(PROGRAMS)