blob: 5a87aa95cb838efbd73f997c904265d48ca6564f [file] [log] [blame]
SRC = murmurhash.c
CFLAGS += -std=c99 -Wall -I.
clean:
rm -f test
test:
$(CC) test.c $(SRC) $(CFLAGS) -o test
./test
.PHONY: test