summaryrefslogtreecommitdiff
path: root/Makefile
blob: bd864bf72fb071eac313e0af21bec4ce86d85f82 (plain)
1
2
3
4
5
6
7
8
9
10
CFLAGS=-Wall -Wextra
OBJ=test.o pearson.o fnv.o

all: test

test: $(OBJ)
	$(CC) -o $@ $(CFLAGS) $(OBJ)
	
clean: 
	rm -f test *.o