Hush Full Node software. We were censored from Github, this is where all development happens now. https://hush.is
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
636 B

#!/bin/sh
5 years ago
cd rogue;
if [ "$HOST" = "x86_64-w64-mingw32" ]; then
echo building rogue.exe...
mkdir ncurses && cd ncurses
wget https://invisible-island.net/datafiles/release/mingw32.zip
5 years ago
unzip mingw32.zip && rm mingw32.zip
if make -f Makefile_win "$@"; then
echo rogue.exe build SUCCESSFUL
cd ..
else
echo rogue.exe build FAILED
exit 1
fi
else
echo building rogue...
./configure
if make "$@"; then
echo rogue build SUCCESSFUL
cd ..
else
echo rogue build FAILED
exit 1
fi
fi
5 years ago
if make -f Makefile_rogue "$@"; then
echo ROGUE BUILD SUCCESSFUL
else
echo ROGUE BUILD FAILED
exit 1
fi