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.

36 lines
855B

  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. # --------------------------------------------------------------