1 2 3 4 5 6 7 8 9 10 11 12
SRC = murmurhash.c CFLAGS += -std=c99 -Wall -I. clean: rm -f test test: $(CC) test.c $(SRC) $(CFLAGS) -o test ./test .PHONY: test