about summary refs log tree commit diff
path: root/frida_mode/many-linux/GNUmakefile
blob: 2ac44dc27cc95f7eef8b8edaf5f8476527799b87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
PWD:=$(shell pwd)/
BUILD_DIR:=$(PWD)build/

.PHONY: all clean shell

all: | $(BUILD_DIR)
	docker build --tag many-afl-frida .
	docker run --rm \
		-v $(PWD)build/:/export \
		many-afl-frida \
		cp /AFLplusplus/afl-frida-trace.so /export

$(BUILD_DIR):
	mkdir -p $@

clean:
	rm -rf $(BUILD_DIR)

shell:
	docker run -ti --rm many-afl-frida /bin/bash