mirror of https://github.com/opa334/TrollStore.git
9 lines
232 B
Makefile
9 lines
232 B
Makefile
|
pwnify:
|
||
|
@clang main.m -fobjc-arc -fmodules -mmacosx-version-min=11.0 -o pwnify
|
||
|
|
||
|
install: pwnify
|
||
|
-@sudo rm /usr/local/bin/pwnify 2>/dev/null || true
|
||
|
@sudo cp ./pwnify /usr/local/bin/pwnify
|
||
|
|
||
|
clean:
|
||
|
@rm ./pwnify 2>/dev/null || true
|