Carla binary releases https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.2KB

  1. #!/bin/bash
  2. set -e
  3. cd $(dirname ${0})
  4. # ---------------------------------------------------------------------------------------------------------------------
  5. target="${1}"
  6. if [ -z "${target}" ]; then
  7. echo "usage: ${0} <target>"
  8. exit 1
  9. fi
  10. # ---------------------------------------------------------------------------------------------------------------------
  11. # import PawPaw environment
  12. pushd PawPaw
  13. source local.env ${target}
  14. popd
  15. # ---------------------------------------------------------------------------------------------------------------------
  16. # build and package carla
  17. pushd Carla
  18. make features
  19. make EXTERNAL_PLUGINS=false NOOPT=true ${MAKE_ARGS}
  20. if [ "${MACOS}" -eq 1 ] && [ "${MACOS_UNIVERSAL}" -eq 0 ]; then
  21. make EXTERNAL_PLUGINS=false NOOPT=true ${MAKE_ARGS} posix32
  22. elif [ "${WIN64}" -eq 1 ]; then
  23. make EXTERNAL_PLUGINS=false NOOPT=true ${MAKE_ARGS} win32r
  24. fi
  25. make dist ${MAKE_ARGS} TESTING=true -j 1
  26. make dist ${MAKE_ARGS} TESTING=true -j 1
  27. make dist ${MAKE_ARGS} TESTING=true -j 1
  28. make dist ${MAKE_ARGS} TESTING=true -j 1
  29. make dist ${MAKE_ARGS} TESTING=true -j 1
  30. make dist ${MAKE_ARGS} -j 1
  31. popd
  32. # ---------------------------------------------------------------------------------------------------------------------