Initialize PythonBPF project and toolchain

This commit is contained in:
2025-08-30 18:08:14 +05:30
commit d5557d3c01
10 changed files with 119 additions and 0 deletions

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
install:
pip install -e .
compile:
chmod +x ./tools/compile.py
./tools/compile.py ./examples/execve.py
clean:
rm -rf build dist *.egg-info
rm -rf examples/execve.ll examples/execve.o
all: install compile
.PHONY: all clean