Files
python-bpf/Makefile
2025-09-07 19:19:58 +05:30

14 lines
222 B
Makefile

compile:
chmod +x ./tools/compile.py
./tools/compile.py ./examples/execve2.py
install:
pip install -e .
clean:
rm -rf build dist *.egg-info
rm -rf examples/*.ll examples/*.o
all: install compile
.PHONY: all clean