ASFLAGS = -g
CFLAGS = -g -O2 -Wall

test-memchr: test-memchr.o memchr.o
	gcc -o test-memchr test-memchr.o memchr.o

clean:
	rm -f test-memchr *.o
