mirror of
https://github.com/wiiu-env/ROBChain.git
synced 2024-12-05 00:04:18 +01:00
13 lines
174 B
Makefile
13 lines
174 B
Makefile
|
python=python3
|
||
|
POC_PATH=poc/exploit.mscsb
|
||
|
|
||
|
poc: $(POC_PATH)
|
||
|
$(python) inject.py $<
|
||
|
|
||
|
clean:
|
||
|
rm -r data
|
||
|
$(MAKE) --directory=poc clean
|
||
|
|
||
|
$(POC_PATH):
|
||
|
$(MAKE) --directory=poc
|