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 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #!/usr/bin/make -f
  2. # Makefile for Carla C++ code #
  3. # --------------------------- #
  4. # Created by falkTX
  5. #
  6. AR ?= ar
  7. CC ?= gcc
  8. CXX ?= g++
  9. MOC ?= $(shell pkg-config --variable=moc_location QtCore)
  10. RCC ?= $(shell pkg-config --variable=rcc_location QtCore)
  11. UIC ?= $(shell pkg-config --variable=uic_location QtCore)
  12. STRIP ?= strip
  13. WINDRES ?= windres
  14. # --------------------------------------------------------------
  15. DEBUG ?= false
  16. BASE_FLAGS = -Wall -Wextra
  17. ifeq ($(DEBUG),true)
  18. BASE_FLAGS += -O0 -g
  19. BASE_FLAGS += -DDEBUG
  20. STRIP = true # FIXME
  21. else
  22. BASE_FLAGS += -O2 -ffast-math -mtune=generic -msse -mfpmath=sse
  23. BASE_FLAGS += -DNDEBUG
  24. endif
  25. 32BIT_FLAGS = -m32
  26. 64BIT_FLAGS = -m64
  27. BUILD_C_FLAGS = $(BASE_FLAGS) -std=c99 $(CFLAGS)
  28. BUILD_CXX_FLAGS = $(BASE_FLAGS) -std=c++0x $(CXXFLAGS)
  29. LINK_FLAGS = $(LDFLAGS)
  30. ifneq ($(DEBUG),true)
  31. BUILD_CXX_FLAGS += -DQT_NO_DEBUG -DQT_NO_DEBUG_STREAM -DQT_NO_DEBUG_OUTPUT
  32. endif
  33. # --------------------------------------------------------------
  34. # Modify to enable/disable specific features
  35. # Support for LADSPA, DSSI, LV2 and VST plugins
  36. CARLA_PLUGIN_SUPPORT = true
  37. # Support for GIG, SF2 and SFZ sample banks (through fluidsynth and linuxsampler)
  38. CARLA_SAMPLERS_SUPPORT = true
  39. # Support for Native Audio (ALSA and/or PulseAudio in Linux)
  40. CARLA_RTAUDIO_SUPPORT = true
  41. # Comment this line to not use vestige header
  42. BUILD_CXX_FLAGS += -DVESTIGE_HEADER
  43. # --------------------------------------------------------------
  44. HAVE_JACK = $(shell pkg-config --exists jack && echo true)
  45. HAVE_ZYN_DEPS = $(shell pkg-config --exists fftw3 mxml && echo true)
  46. ifeq ($(CARLA_PLUGIN_SUPPORT),true)
  47. HAVE_SUIL = $(shell pkg-config --exists suil-0 && echo true)
  48. endif
  49. ifeq ($(CARLA_SAMPLERS_SUPPORT),true)
  50. HAVE_FLUIDSYNTH = $(shell pkg-config --exists fluidsynth && echo true)
  51. HAVE_LINUXSAMPLER = $(shell pkg-config --exists linuxsampler && echo true)
  52. endif
  53. ifeq ($(CARLA_RTAUDIO_SUPPORT),true)
  54. HAVE_ALSA = $(shell pkg-config --exists alsa && echo true)
  55. HAVE_PULSEAUDIO = $(shell pkg-config --exists libpulse-simple && echo true)
  56. endif