CFLAGS=-Wall -Wextra OBJ=test.o pearson.o fnv.o all: test test: $(OBJ) $(CC) -o $@ $(CFLAGS) $(OBJ) clean: rm -f test *.o