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

PROGRAMS = barbeiro barbeiros

all: $(PROGRAMS)

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