
all:
	+$(MAKE) -C stage1
	+$(MAKE) -C stage2

install:
	cp stage1/stage1.bin ../../../../data/exploits/CVE-2018-4233/stage1.bin
	cp stage2/stage2.dylib ../../../../data/exploits/CVE-2018-4404/stage2.dylib

clean:
	rm -f stage1/stage1.bin
	rm -f stage2/stage2.dylib

