mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
14 lines
231 B
Makefile
14 lines
231 B
Makefile
compile:
|
|
chmod +x ./tools/compile.py
|
|
./tools/compile.py ./examples/execve.py
|
|
|
|
install:
|
|
pip install -e .
|
|
|
|
clean:
|
|
rm -rf build dist *.egg-info
|
|
rm -rf examples/execve.ll examples/execve.o
|
|
|
|
all: install compile
|
|
|
|
.PHONY: all clean |