CC=gcc
CFLAGS=-Wall -g3

PROGRAMS=strings

all: strings

test: all
	./strings

clean:
	$(RM) -f a.out *.o $(PROGRAMS)
