mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
15 lines
223 B
Makefile
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
|