CXX = g++
CXXFLAGS = -std=c++17 -I/usr/local/include/botan-2/ -lbotan-2
RUN = ./
LD_LIBRARY_PATH = /usr/local/lib

.PHONY: all clean build run

all: build run

build: example.cpp
	$(CXX) example.cpp $(CXXFLAGS) -o example
run:
	$(RUN)example

run_python:
	LD_LIBRARY_PATH=$(LD_LIBRARY_PATH) python example.py

clean:
	rm -f *.pem
