CFLAGS = -Wall -Werror -ggdb

ipv6reverse: ipv6reverse.c
	gcc ${CFLAGS} -o $@ $<

test: ipv6reverse
	./ipv6reverse < testfile
