all: dynstr make_bin

make_bin:
	gcc dynstr.o

dynstr:
	gcc -g -pedantic -Wall -O -c dynstr.c
