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.

49 lines
1.2KB

  1. #!/usr/bin/make -f
  2. # Makefile for carla-backend #
  3. # -------------------------- #
  4. # Created by falkTX
  5. #
  6. include ../../Makefile.mk
  7. # --------------------------------------------------------------
  8. BUILD_C_FLAGS += -fvisibility=hidden -fPIC -I. -I.. -I../../includes
  9. BUILD_CXX_FLAGS += -fvisibility=hidden -fPIC -I. -I.. -I../../includes -I../../libs -I../../utils
  10. BUILD_CXX_FLAGS += $(shell pkg-config --cflags QtCore)
  11. LINK_FLAGS += $(shell pkg-config --libs QtCore)
  12. # --------------------------------------------------------------
  13. ifeq ($(CARLA_PLUGIN_SUPPORT),true)
  14. # BUILD_C_FLAGS += -DWANT_LV2
  15. # BUILD_CXX_FLAGS += -DWANT_LADSPA -DWANT_DSSI -DWANT_LV2 -DWANT_VST
  16. BUILD_CXX_FLAGS += -DWANT_LADSPA
  17. endif
  18. ifeq ($(CARLA_RTAUDIO_SUPPORT),true)
  19. BUILD_CXX_FLAGS += -DWANT_RTAUDIO
  20. endif
  21. # --------------------------------------------------------------
  22. ifeq ($(HAVE_JACK),true)
  23. BUILD_CXX_FLAGS += -DWANT_JACK
  24. endif
  25. ifeq ($(HAVE_FLUIDSYNTH),true)
  26. # BUILD_CXX_FLAGS += -DWANT_FLUIDSYNTH
  27. endif
  28. ifeq ($(HAVE_LINUXSAMPLER),true)
  29. # BUILD_CXX_FLAGS += -DWANT_LINUXSAMPLER
  30. endif
  31. ifeq ($(HAVE_SUIL),true)
  32. BUILD_CXX_FLAGS += -DWANT_SUIL
  33. endif
  34. ifeq ($(HAVE_ZYN_DEPS),true)
  35. BUILD_CXX_FLAGS += -DWANT_ZYNADDSUBFX
  36. endif