CC = gcc
CFLAGS = -g -Wall -pedantic -pthread 

PROGRAMS = barbeiro barbeiros danilo-erica

all: $(PROGRAMS)

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