configure.sh 148 B

12345678910
  1. #!/bin/bash
  2. # Prepare the project's folder for compilation
  3. # Create the bin/ folder if it does not exist
  4. if [[ ! -d "bin" ]]; then
  5. mkdir bin
  6. fi