CC = gcc
CFLAGS = -Wall -g -pthread

PROGRAMS = ender ender-malloc sbrk \
	   loop-malloc pilha pilha2 pilha3\
           qsort executa-funcao create0 join0 \
           create1 create2 create3 create4 create5 \
           exit0 exit1 pthread_exit0 \
           return0 return1 pthread_return

all: $(PROGRAMS)

clean:
	rm -f *~ $(PROGRAMS)