1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #!/bin/sh
- cd .dependencies
- cd cpp_tools
- git pull -r
- cd ..
- cd libsimple_file
- git pull -r
- cd ..
- cd libsimple_support
- git pull -r
- cd ..
- cd libsimple_geom
- git pull -r
- cd ..
- cd libsimple_sdlcore
- git pull -r
- cd ..
- cd libsimple_graphical
- git pull -r
- cd ..
- cd libsimple_interactive
- git pull -r
- cd ..
- cd libsimple_musical
- git pull -r
- cd ..
- cd ..
- ./tools/setup/install.sh "$@"
|