Files
python-bpf/Makefile
Pragyansh Chaturvedi 70dfa0ff58 add -g to c-form Makefile
2025-09-08 00:37:42 +05:30

15 lines
223 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