Audio plugin host 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.

64 lines
1.4KB

  1. #!/usr/bin/make -f
  2. # Makefile for carla-backend #
  3. # -------------------------- #
  4. # Created by falkTX
  5. #
  6. include ../../Makefile.mk
  7. # --------------------------------------------------------------
  8. BUILD_CXX_FLAGS += -I. -I.. -I../../includes -I../../modules -I../../utils
  9. BUILD_CXX_FLAGS += -DWANT_NATIVE
  10. ifeq ($(CARLA_PLUGIN_SUPPORT),true)
  11. BUILD_CXX_FLAGS += -DWANT_LADSPA -DWANT_DSSI -DWANT_LV2 -DWANT_VST
  12. ifeq ($(CARLA_VESTIGE_HEADER),true)
  13. BUILD_CXX_FLAGS += -DVESTIGE_HEADER
  14. endif
  15. endif
  16. ifeq ($(CARLA_CSOUND_SUPPORT),true)
  17. BUILD_CXX_FLAGS += -DWANT_CSOUND
  18. endif
  19. ifeq ($(CARLA_RTAUDIO_SUPPORT),true)
  20. BUILD_CXX_FLAGS += -DWANT_RTAUDIO
  21. endif
  22. # --------------------------------------------------------------
  23. ifeq ($(HAVE_FLUIDSYNTH),true)
  24. BUILD_CXX_FLAGS += -DWANT_FLUIDSYNTH
  25. endif
  26. ifeq ($(HAVE_LINUXSAMPLER),true)
  27. BUILD_CXX_FLAGS += -DWANT_LINUXSAMPLER
  28. endif
  29. # --------------------------------------------------------------
  30. ifeq ($(HAVE_AF_DEPS),true)
  31. BUILD_CXX_FLAGS += -DWANT_AUDIOFILE
  32. ifeq ($(HAVE_FFMPEG),true)
  33. BUILD_CXX_FLAGS += -DHAVE_FFMPEG
  34. endif
  35. endif
  36. ifeq ($(HAVE_MF_DEPS),true)
  37. BUILD_CXX_FLAGS += -DWANT_MIDIFILE
  38. endif
  39. ifeq ($(HAVE_OPENGL),true)
  40. BUILD_CXX_FLAGS += -DWANT_OPENGL
  41. endif
  42. ifeq ($(HAVE_ZYN_DEPS),true)
  43. BUILD_CXX_FLAGS += -DWANT_ZYNADDSUBFX
  44. ifeq ($(HAVE_ZYN_UI_DEPS),true)
  45. BUILD_CXX_FLAGS += -DWANT_ZYNADDSUBFX_UI
  46. endif
  47. endif
  48. # --------------------------------------------------------------