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.

98 lines
3.2KB

  1. #!/usr/bin/make -f
  2. # Makefile for Carla C++ code #
  3. # --------------------------- #
  4. # Created by falkTX
  5. #
  6. # --------------------------------------------------------------
  7. # Modify to enable/disable specific features
  8. # Support for LADSPA, DSSI, LV2 and VST plugins
  9. CARLA_PLUGIN_SUPPORT = true
  10. # Support for GIG, SF2 and SFZ sample banks (through fluidsynth and linuxsampler)
  11. CARLA_SAMPLERS_SUPPORT = true
  12. # Support for Native Audio (ALSA and/or PulseAudio in Linux)
  13. CARLA_RTAUDIO_SUPPORT = true
  14. # Use the free vestige header instead of the official VST SDK
  15. CARLA_VESTIGE_HEADER = true
  16. # --------------------------------------------------------------
  17. # DO NOT MODIFY PAST THIS POINT!
  18. AR ?= ar
  19. CC ?= gcc
  20. CXX ?= g++
  21. STRIP ?= strip
  22. # --------------------------------------------------------------
  23. BASE_FLAGS = -Wall -Wextra -fPIC -DPIC -pipe
  24. BASE_OPTS = -O2 -ffast-math -mtune=generic -msse -mfpmath=sse
  25. BASE_OPTS += -fdata-sections -ffunction-sections
  26. LINK_OPTS = -Wl,--gc-sections
  27. ifeq ($(RASPPI),true)
  28. # Raspberry-Pi optimization flags
  29. BASE_OPTS = -O2 -ffast-math -march=armv6 -mfpu=vfp -mfloat-abi=hard
  30. LINK_OPTS =
  31. endif
  32. ifeq ($(DEBUG),true)
  33. BASE_FLAGS += -DDEBUG -O0 -g
  34. else
  35. BASE_FLAGS += -DNDEBUG $(BASE_OPTS) -fvisibility=hidden -fvisibility-inlines-hidden
  36. LINK_OPTS += -Wl,--strip-all
  37. endif
  38. 32BIT_FLAGS = -m32
  39. 64BIT_FLAGS = -m64
  40. BUILD_C_FLAGS = $(BASE_FLAGS) -std=gnu99 $(CFLAGS)
  41. BUILD_CXX_FLAGS = $(BASE_FLAGS) -std=gnu++0x $(CXXFLAGS)
  42. LINK_FLAGS = $(LINK_OPTS) $(LDFLAGS)
  43. ifeq ($(MACOS),true)
  44. # No C++11 support; force 32bit per default
  45. BUILD_C_FLAGS = $(BASE_FLAGS) $(32BIT_FLAGS) -std=gnu99 $(CFLAGS)
  46. BUILD_CXX_FLAGS = $(BASE_FLAGS) $(32BIT_FLAGS) $(CXXFLAGS)
  47. endif
  48. # --------------------------------------------------------------
  49. HAVE_FFMPEG = $(shell pkg-config --exists libavcodec libavformat libavutil && pkg-config --max-version=1.9 libavcodec && echo true)
  50. HAVE_OPENGL = $(shell pkg-config --exists gl && echo true)
  51. HAVE_GTK2 = $(shell pkg-config --exists gtk+-2.0 && echo true)
  52. HAVE_GTK3 = $(shell pkg-config --exists gtk+-3.0 && echo true)
  53. HAVE_QT4 = $(shell pkg-config --exists QtCore && echo true)
  54. HAVE_QT5 = $(shell pkg-config --exists Qt5Core && echo true)
  55. HAVE_AF_DEPS = $(shell pkg-config --exists sndfile && echo true)
  56. HAVE_MF_DEPS = $(shell pkg-config --exists smf && echo true)
  57. HAVE_ZYN_DEPS = $(shell pkg-config --exists fftw3 mxml zlib && echo true)
  58. HAVE_ZYN_UI_DEPS = $(shell pkg-config --exists ntk ntk_images && echo true)
  59. ifeq ($(CARLA_SAMPLERS_SUPPORT),true)
  60. HAVE_FLUIDSYNTH = $(shell pkg-config --exists fluidsynth && echo true)
  61. HAVE_LINUXSAMPLER = $(shell pkg-config --exists linuxsampler && echo true)
  62. endif
  63. ifeq ($(CARLA_RTAUDIO_SUPPORT),true)
  64. HAVE_ALSA = $(shell pkg-config --exists alsa && echo true)
  65. HAVE_PULSEAUDIO = $(shell pkg-config --exists libpulse-simple && echo true)
  66. endif
  67. # --------------------------------------------------------------
  68. ifeq ($(HAVE_QT4),true)
  69. MOC ?= $(shell pkg-config --variable=moc_location QtCore)
  70. RCC ?= $(shell pkg-config --variable=rcc_location QtCore)
  71. UIC ?= $(shell pkg-config --variable=uic_location QtCore)
  72. else
  73. MOC ?= moc
  74. RCC ?= rcc
  75. UIC ?= uic
  76. endif