summaryrefslogtreecommitdiff
path: root/Makefile
blob: 5a87aa95cb838efbd73f997c904265d48ca6564f (plain)
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