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.

56 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. 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. # --------------------------------------------------------------
  20. ifeq ($(HAVE_FLUIDSYNTH),true)
  21. BUILD_CXX_FLAGS += -DWANT_FLUIDSYNTH
  22. endif
  23. ifeq ($(HAVE_LINUXSAMPLER),true)
  24. BUILD_CXX_FLAGS += -DWANT_LINUXSAMPLER
  25. endif
  26. # --------------------------------------------------------------
  27. ifeq ($(HAVE_AF_DEPS),true)
  28. BUILD_CXX_FLAGS += -DWANT_AUDIOFILE
  29. ifeq ($(HAVE_FFMPEG),true)
  30. BUILD_CXX_FLAGS += -DHAVE_FFMPEG
  31. endif
  32. endif
  33. ifeq ($(HAVE_MF_DEPS),true)
  34. BUILD_CXX_FLAGS += -DWANT_MIDIFILE
  35. endif
  36. ifeq ($(HAVE_ZYN_DEPS),true)
  37. BUILD_CXX_FLAGS += -DWANT_ZYNADDSUBFX
  38. ifeq ($(HAVE_ZYN_UI_DEPS),true)
  39. BUILD_CXX_FLAGS += -DWANT_ZYNADDSUBFX_UI
  40. endif
  41. endif
  42. # --------------------------------------------------------------