CC = gcc

strings: strings.o getopt.o
	gcc -O -o strings strings.c getopt.c

clean:
	rm -f a.out core *~ *.o strings

