CC = gcc
CFLAGS = -g -pthread 

PROGRAMS = barbeiro barbeiros danilo-erika esqueleto-painel

all: $(PROGRAMS)

clean:
	rm -f *.o *~ $(PROGRAMS)
