diff --git a/README.md b/README.md index e02873d85..805f827cc 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,10 @@ To build just iguana, you can cd into SuperNET/iguana and do ./m_unix (or ./m_os ./m_clean will remove the files created from the building +TLDR: git clone https://github.com/jl777/SuperNET; cd SuperNET; ./m_onetime m_unix; ./m_unix; agents/iguana +The above one line gets SuperNET installed, built and launched for unix. +After that ./m_unix updates to latest + RUNNING The native versions are command line applications: agents/iguana {JSON} The chrome app pexe requires that the chrome is launched with a command line parameter (tools/chrome.localhost) and then browse to http://127.0.0.1:7777 to see the pexe diff --git a/crypto777/m_unix b/crypto777/m_unix index 9c1543f5d..6e3881ca4 100755 --- a/crypto777/m_unix +++ b/crypto777/m_unix @@ -1,2 +1,2 @@ gcc -c -O2 *.c jpeg/*.c jpeg/unix/*.c -rm ../agents/libcrypto777.a; ar rcu ../agents/libcrypto777.a *.o +rm -f ../agents/libcrypto777.a; ar rcu ../agents/libcrypto777.a *.o