diff --git a/README.md b/README.md index a051e04..dfd1286 100644 --- a/README.md +++ b/README.md @@ -30,3 +30,10 @@ sudo ./bin/opensuperclone # Run OSCViewer ./bin/osscviewer ``` + +### Installing + +```Bash +# Install OpenSuperClone +./install.sh +``` \ No newline at end of file diff --git a/build.sh b/build.sh index 3e31dc4..9872901 100755 --- a/build.sh +++ b/build.sh @@ -1,15 +1,10 @@ +mkdir -p build -cd src/opensuperclone +cd ./build + +cmake ../ -make clean make -cd ../oscviewer - -make clean -make - -cd ../create_script_help - -make clean -make \ No newline at end of file +mv ./src/opensuperclone/opensuperclone ../bin/opensuperclone +mv ./src/oscviewer/oscviewer ../bin/oscviewer \ No newline at end of file diff --git a/clean.sh b/clean.sh index 84d4db0..4b59f5f 100755 --- a/clean.sh +++ b/clean.sh @@ -1,12 +1,4 @@ +rm -r build -cd src/opensuperclone - -make clean - -cd ../oscviewer - -make clean - -cd ../create_script_help - -make clean \ No newline at end of file +rm bin/opensuperclone +rm bin/oscviewer \ No newline at end of file