just_simple_cryptography/Makefile
2025-07-26 16:21:32 +03:00

20 lines
330 B
Makefile

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