CC = gcc
CFLAGS = -Wall -g -pthread

PROGRAMS = qsort executa-funcao create0 join0 \
           create1 create2 create3 create4 create5 \
           pilhas corrompe-pilhas \
           exit0 exit1 pthread_exit0 \
           return0 return1 pthread_return

all: $(PROGRAMS)

clean:
	rm -f *~ $(PROGRAMS)