Add top-level Makefile

This commit is contained in:
jam1garner 2020-02-11 17:13:28 -05:00
parent 9e8b051eeb
commit beccc3d6b8

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
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