-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (29 loc) · 706 Bytes
/
Makefile
File metadata and controls
36 lines (29 loc) · 706 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
PYTHON ?= python3
ALL_SCRIPT := scripts/all.py
.PHONY: generate
generate:
@echo " > Generating Symbolicator signatures"
scripts/run.sh
.PHONY: refresh
refresh: DO_KEXTS=1
refresh: DO_KERNELS=1
refresh: refresh-kexts refresh-xnus
.PHONY: refresh-xnus
refresh-xnus:
@echo " > Regenerating xnu Symbolicator signatures"
DO_KERNELS=1 $(PYTHON) $(ALL_SCRIPT)
.PHONY: refresh-kexts
refresh-kexts:
@echo " > Regenerating Symbolicator signatures from KDK extensions"
DO_KEXTS=1 $(PYTHON) $(ALL_SCRIPT)
.PHONY: install-plugin
install-plugin:
@echo " > Installing IDA Plugin"
plugins/ida/install.sh
.PHONY: fmt
fmt:
black -l 120 scripts/
isort scripts/
.PHONY: ida-log
ida-log:
tail -f /tmp/ida.log