Files
python-bpf/Makefile
2025-09-10 04:05:07 +05:30

15 lines
223 B
Makefile

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