CC = gcc

# "-lncurses" adicionada ao makefile original da professora Islene #
CFLAGS = -g -Wall -pedantic -pthread -lncurses

# Adicionando "barbeiros_grafico" #
PROGRAMS = barbeiros_grafico

all: $(PROGRAMS)

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