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.

52 lines
1.5KB

  1. #!/usr/bin/make -f
  2. # Makefile for carla-backend #
  3. # -------------------------- #
  4. # Created by falkTX
  5. #
  6. CWD=../..
  7. include ../../Makefile.deps
  8. include ../../Makefile.mk
  9. # ----------------------------------------------------------------------------------------------------------------------------
  10. BUILD_CXX_FLAGS += -I. -I.. -I../../includes -I../../utils -isystem ../../modules
  11. BUILD_CXX_FLAGS += $(LIBLO_FLAGS)
  12. # ----------------------------------------------------------------------------------------------------------------------------
  13. BUILD_CXX_FLAGS += -DWANT_NATIVE
  14. ifeq ($(CARLA_PLUGIN_SUPPORT),true)
  15. BUILD_CXX_FLAGS += -DWANT_LADSPA -DWANT_DSSI -DWANT_LV2 -DWANT_VST
  16. ifeq ($(MACOS),true)
  17. BUILD_CXX_FLAGS += -DWANT_AU
  18. endif
  19. ifeq ($(MACOS_OR_WIN32),true)
  20. BUILD_CXX_FLAGS += -DWANT_VST3
  21. endif
  22. ifeq ($(CARLA_VESTIGE_HEADER),true)
  23. BUILD_CXX_FLAGS += -DVESTIGE_HEADER
  24. endif
  25. endif
  26. # ----------------------------------------------------------------------------------------------------------------------------
  27. ifeq ($(HAVE_CSOUND),true)
  28. BUILD_CXX_FLAGS += -DWANT_CSOUND
  29. endif
  30. ifeq ($(HAVE_FLUIDSYNTH),true)
  31. BUILD_CXX_FLAGS += -DWANT_FLUIDSYNTH
  32. endif
  33. ifeq ($(HAVE_LINUXSAMPLER),true)
  34. BUILD_CXX_FLAGS += -DWANT_LINUXSAMPLER
  35. endif
  36. # ----------------------------------------------------------------------------------------------------------------------------
  37. BUILD_CXX_FLAGS += $(NATIVE_PLUGINS_FLAGS)
  38. # ----------------------------------------------------------------------------------------------------------------------------