# g++ and clang++ both have pretty garbage errors CXX=g++ FLAGS=-std=c++17 -g LIBS=-lsodium bmc_test: bmc_test.cpp $(CXX) -o $@ $^ $(FLAGS) $(LIBS) clean: rm bmc_test