cyrus-and / zizzania

Automated DeAuth attack
MIT License
291 stars 35 forks source link

Compile without wget #7

Closed metawops closed 3 years ago

metawops commented 3 years ago

Under macOS Big Sur 11.2.3 when issuing make -f config.Makefile I get this error:

$ make -f config.Makefile
wget -q https://raw.githubusercontent.com/cyrus-and/dry-makefile/master/Makefile
make: wget: No such file or directory
make: *** [Makefile] Error 1

Any ideas what's wrong here? Thanks so much! 🙏

cyrus-and commented 3 years ago

Hi! You need wget, if you have Homebrew (recommended) you can just:

brew install wget

Otherwise run this (you should already have curl):

curl https://raw.githubusercontent.com/cyrus-and/dry-makefile/master/Makefile >Makefile
mkdir -p external
curl https://raw.githubusercontent.com/troydhanson/uthash/v2.1.0/src/uthash.h >external/uthash.h
make # as usual