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.

Makefile.mk 1.2KB

11 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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 += -pthread -fvisibility=hidden -fPIC -I. -I.. -I../../includes
  9. BUILD_CXX_FLAGS += -pthread -fvisibility=hidden -fPIC -I. -I.. -I../../includes -I../../libs -I../../utils
  10. LINK_FLAGS += -lpthread
  11. # --------------------------------------------------------------
  12. BUILD_CXX_FLAGS += -DWANT_NATIVE
  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. endif
  17. ifeq ($(CARLA_RTAUDIO_SUPPORT),true)
  18. BUILD_CXX_FLAGS += -DWANT_RTAUDIO
  19. endif
  20. # --------------------------------------------------------------
  21. ifeq ($(HAVE_JACK),true)
  22. BUILD_CXX_FLAGS += -DWANT_JACK
  23. endif
  24. ifeq ($(HAVE_FLUIDSYNTH),true)
  25. BUILD_CXX_FLAGS += -DWANT_FLUIDSYNTH
  26. endif
  27. ifeq ($(HAVE_LINUXSAMPLER),true)
  28. BUILD_CXX_FLAGS += -DWANT_LINUXSAMPLER
  29. endif
  30. ifeq ($(HAVE_SUIL),true)
  31. BUILD_CXX_FLAGS += -DWANT_SUIL
  32. endif
  33. ifeq ($(HAVE_AF_DEPS),true)
  34. BUILD_CXX_FLAGS += -DWANT_AUDIOFILE
  35. endif
  36. ifeq ($(HAVE_ZYN_DEPS),true)
  37. BUILD_CXX_FLAGS += -DWANT_ZYNADDSUBFX
  38. endif