mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
17 lines
430 B
Makefile
17 lines
430 B
Makefile
PYTHON ?= $(shell which python3 >/dev/null && echo python3 || echo python)
|
|
|
|
all $(MAKECMDGOALS):
|
|
@$(PYTHON) \
|
|
-c "import sys; sys.path.insert(0, sys.argv[1]); from releng.meson_make import main; main()" \
|
|
"$(shell pwd)" \
|
|
./build \
|
|
$(MAKECMDGOALS)
|
|
|
|
git-submodules:
|
|
@if [ ! -f releng/meson/meson.py ]; then \
|
|
git submodule update --init --recursive --depth 1; \
|
|
fi
|
|
-include git-submodules
|
|
|
|
.PHONY: all $(MAKECMDGOALS)
|