mirror of
https://github.com/frida/frida-python
synced 2026-06-08 14:16:17 +00:00
16 lines
205 B
Makefile
16 lines
205 B
Makefile
all: build
|
|
|
|
clean:
|
|
rm -rf build dist
|
|
|
|
build: clean
|
|
python setup.py py2app
|
|
|
|
dev: clean
|
|
python setup.py py2app -A
|
|
|
|
devrun: dev
|
|
./dist/CpuShark.app/Contents/MacOS/CpuShark
|
|
|
|
.PHONY: clean build dev devrun
|