CC=gcc
CFLAGS=-g3 -Wall

PROGRAMS=majority

all: $(PROGRAMS)

clean:
	$(RM) *.o $(PROGRAMS)
