12345678910111213141516171819202122232425262728293031323334353637 |
- #!/bin/sh
- cd .dependencies
- cd cpp_tools
- 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 "$@"
|