CXX=g++
FLAGS=-g
LIBS=-lsodium
bmc_test: bmc_test.cpp
$(CXX) -o $@ $^ $(FLAGS) $(LIBS)
clean:
rm bmc_test