ptth/bare_minimum_crypto/cpp/Makefile

12 lines
172 B
Makefile

# 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