ptth/bare_minimum_crypto/cpp/Makefile

12 lines
172 B
Makefile
Raw Normal View History

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