blob: 652223e0d4a9723300ad91c5151d4d790eaeebbb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
PWD:=$(shell pwd)/
ROOT:=$(shell realpath $(PWD)../../..)/
.PHONY: all frida
all:
make -C $(ROOT)frida_mode/
frida:
LD_PRELOAD=$(ROOT)frida_mode/build/afl-frida-trace.so ./xml
debug:
gdb --ex 'set environment LD_PRELOAD=$(ROOT)frida_mode/build/afl-frida-trace.so' --args ./xml
|