mirror of
https://github.com/frida/frida
synced 2026-08-13 06:26:05 -04:00
16 lines
430 B
Makefile
16 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)
|