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.

62 lines
1.3KB

  1. #!/usr/bin/make -f
  2. # Makefile for carla-backend #
  3. # -------------------------- #
  4. # Created by falkTX
  5. #
  6. include ../../Makefile.mk
  7. # --------------------------------------------------------------
  8. BACKEND_FLAGS = -I. -I.. -I../../includes -I../../libs -I../../utils
  9. BUILD_C_FLAGS += $(BACKEND_FLAGS)
  10. BUILD_CXX_FLAGS += $(BACKEND_FLAGS)
  11. # --------------------------------------------------------------
  12. BUILD_CXX_FLAGS += -DWANT_NATIVE
  13. ifeq ($(CARLA_PLUGIN_SUPPORT),true)
  14. BUILD_CXX_FLAGS += -DWANT_LADSPA -DWANT_DSSI -DWANT_LV2 -DWANT_VST
  15. ifeq ($(CARLA_VESTIGE_HEADER),true)
  16. BUILD_CXX_FLAGS += -DVESTIGE_HEADER
  17. endif
  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. ifeq ($(HAVE_OPENGL),true)
  30. BUILD_CXX_FLAGS += -DWANT_OPENGL
  31. endif
  32. ifeq ($(HAVE_AF_DEPS),true)
  33. BUILD_CXX_FLAGS += -DWANT_AUDIOFILE
  34. ifeq ($(HAVE_FFMPEG),true)
  35. BUILD_CXX_FLAGS += -DHAVE_FFMPEG
  36. endif
  37. endif
  38. ifeq ($(HAVE_MF_DEPS),true)
  39. BUILD_CXX_FLAGS += -DWANT_MIDIFILE
  40. endif
  41. ifeq ($(HAVE_ZYN_DEPS),true)
  42. BUILD_CXX_FLAGS += -DWANT_ZYNADDSUBFX
  43. ifeq ($(HAVE_ZYN_UI_DEPS),true)
  44. BUILD_CXX_FLAGS += -DWANT_ZYNADDSUBFX_UI
  45. endif
  46. endif