Files
python-bpf/Makefile
2025-10-01 00:09:05 +05:30

11 lines
139 B
Makefile

install:
pip install -e .
clean:
rm -rf build dist *.egg-info
rm -rf examples/*.ll examples/*.o
all: clean install
.PHONY: all clean