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.

486 lines
13KB

  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. # Use the free vestige header instead of the official VST SDK
  9. CARLA_VESTIGE_HEADER = true
  10. # Enable experimental plugins, don't complain if the build fails when using this!
  11. EXPERIMENTAL_PLUGINS = false
  12. # --------------------------------------------------------------
  13. # DO NOT MODIFY PAST THIS POINT!
  14. AR ?= ar
  15. CC ?= gcc
  16. CXX ?= g++
  17. # --------------------------------------------------------------
  18. # Fallback to Linux if no other OS defined
  19. ifneq ($(HAIKU),true)
  20. ifneq ($(MACOS),true)
  21. ifneq ($(WIN32),true)
  22. LINUX=true
  23. endif
  24. endif
  25. endif
  26. # --------------------------------------------------------------
  27. # Set MACOS_OR_WIN32
  28. ifeq ($(MACOS),true)
  29. MACOS_OR_WIN32=true
  30. endif
  31. ifeq ($(WIN32),true)
  32. MACOS_OR_WIN32=true
  33. endif
  34. # --------------------------------------------------------------
  35. # Set UNIX
  36. ifeq ($(LINUX),true)
  37. UNIX=true
  38. endif
  39. ifeq ($(MACOS),true)
  40. UNIX=true
  41. endif
  42. # --------------------------------------------------------------
  43. # Force some features on MacOS and Windows
  44. ifeq ($(MACOS_OR_WIN32),true)
  45. CARLA_VESTIGE_HEADER = false
  46. EXPERIMENTAL_PLUGINS = false
  47. endif
  48. # --------------------------------------------------------------
  49. # Set build and link flags
  50. BASE_FLAGS = -Wall -Wextra -pipe -DBUILDING_CARLA -DREAL_BUILD -MD -MP
  51. BASE_OPTS = -O2 -ffast-math -mtune=generic -msse -msse2 -fdata-sections -ffunction-sections
  52. ifneq ($(MACOS),true)
  53. # MacOS doesn't support this
  54. BASE_OPTS += -mfpmath=sse
  55. endif
  56. ifeq ($(MACOS),true)
  57. # MacOS linker flags
  58. LINK_OPTS = -fdata-sections -ffunction-sections -Wl,-dead_strip -Wl,-dead_strip_dylibs
  59. else
  60. # Common linker flags
  61. LINK_OPTS = -fdata-sections -ffunction-sections -Wl,--gc-sections -Wl,-O1 -Wl,--as-needed -Wl,--strip-all
  62. endif
  63. ifeq ($(MODDUO),true)
  64. # MOD Duo optimization flags
  65. BASE_OPTS = -O2 -ffast-math -march=armv7-a -mtune=cortex-a7 -mfpu=neon -mfloat-abi=hard
  66. LINK_OPTS = -Wl,-O1 -Wl,--as-needed -Wl,--strip-all
  67. endif
  68. ifeq ($(RASPPI),true)
  69. # Raspberry-Pi optimization flags
  70. BASE_OPTS = -O2 -ffast-math -march=armv6 -mfpu=vfp -mfloat-abi=hard
  71. LINK_OPTS = -Wl,-O1 -Wl,--as-needed -Wl,--strip-all
  72. endif
  73. ifeq ($(PANDORA),true)
  74. # OpenPandora optimization flags
  75. BASE_OPTS = -O2 -ffast-math -march=armv7-a -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp
  76. LINK_OPTS = -Wl,-O1 -Wl,--as-needed -Wl,--strip-all
  77. endif
  78. ifeq ($(NOOPT),true)
  79. # No optimization flags
  80. BASE_OPTS = -O2 -ffast-math -fdata-sections -ffunction-sections
  81. endif
  82. ifneq ($(WIN32),true)
  83. # not needed for Windows
  84. BASE_FLAGS += -fPIC -DPIC
  85. endif
  86. ifeq ($(STOAT),true)
  87. CC = clang
  88. CXX = clang++
  89. BASE_FLAGS += -emit-llvm
  90. BASE_OPTS += -O0
  91. endif
  92. ifeq ($(DEBUG),true)
  93. BASE_FLAGS += -DDEBUG -O0 -g
  94. ifeq ($(WIN32),true)
  95. BASE_FLAGS += -msse -msse2
  96. endif
  97. LINK_OPTS =
  98. else
  99. BASE_FLAGS += -DNDEBUG $(BASE_OPTS) -fvisibility=hidden
  100. CXXFLAGS += -fvisibility-inlines-hidden
  101. endif
  102. 32BIT_FLAGS = -m32
  103. 64BIT_FLAGS = -m64
  104. BUILD_C_FLAGS = $(BASE_FLAGS) -std=c99 -std=gnu99 $(CFLAGS)
  105. BUILD_CXX_FLAGS = $(BASE_FLAGS) -std=c++0x -std=gnu++0x $(CXXFLAGS)
  106. LINK_FLAGS = $(LINK_OPTS) -Wl,--no-undefined $(LDFLAGS)
  107. ifeq ($(MACOS),true)
  108. # No C++11 support
  109. BUILD_CXX_FLAGS = $(BASE_FLAGS) $(CXXFLAGS)
  110. LINK_FLAGS = $(LINK_OPTS) $(LDFLAGS)
  111. endif
  112. # --------------------------------------------------------------
  113. # Strict test build
  114. ifeq ($(TESTBUILD),true)
  115. BASE_FLAGS += -Werror -Wabi -Wcast-qual -Wclobbered -Wconversion -Wdisabled-optimization -Wfloat-equal -Wformat=2 -Winit-self -Wmissing-declarations
  116. BASE_FLAGS += -Woverlength-strings -Wpointer-arith -Wredundant-decls -Wshadow -Wsign-conversion -Wundef -Wuninitialized -Wunused
  117. BASE_FLAGS += -Wstrict-aliasing -fstrict-aliasing
  118. BASE_FLAGS += -Wstrict-overflow -fstrict-overflow
  119. CFLAGS += -Wnested-externs -Wmissing-prototypes -Wstrict-prototypes -Wwrite-strings
  120. CXXFLAGS += -Wc++0x-compat -Wc++11-compat -Weffc++ -Wnon-virtual-dtor -Woverloaded-virtual -Wzero-as-null-pointer-constant
  121. ifeq ($(LINUX),true)
  122. BASE_FLAGS += -isystem /opt/kxstudio/include
  123. CXXFLAGS += -isystem /opt/kxstudio/include/ntk
  124. CXXFLAGS += -isystem /usr/include/qt4
  125. endif
  126. ifeq ($(MACOS),true)
  127. BASE_FLAGS += -isystem /opt/kxstudio/include
  128. CXXFLAGS += -isystem /System/Library/Frameworks
  129. endif
  130. ifeq ($(WIN64),true)
  131. BASE_FLAGS += -isystem /opt/mingw64/include
  132. else
  133. ifeq ($(WIN32),true)
  134. BASE_FLAGS += -isystem /opt/mingw32/include
  135. endif
  136. endif
  137. endif
  138. # --------------------------------------------------------------
  139. # Check for optional libs (required by backend or bridges)
  140. ifeq ($(MACOS_OR_WIN32),true)
  141. HAVE_DGL = true
  142. else
  143. HAVE_GTK2 = $(shell pkg-config --exists gtk+-2.0 && echo true)
  144. HAVE_GTK3 = $(shell pkg-config --exists gtk+-3.0 && echo true)
  145. ifeq ($(LINUX),true)
  146. HAVE_ALSA = $(shell pkg-config --exists alsa && echo true)
  147. HAVE_DGL = $(shell pkg-config --exists gl x11 && echo true)
  148. HAVE_NTK = $(shell pkg-config --exists ntk ntk_images && echo true)
  149. HAVE_PULSEAUDIO = $(shell pkg-config --exists libpulse-simple && echo true)
  150. HAVE_X11 = $(shell pkg-config --exists x11 && echo true)
  151. endif
  152. endif
  153. HAVE_QT4 = $(shell pkg-config --exists QtCore QtGui && echo true)
  154. HAVE_QT5 = $(shell pkg-config --exists Qt5Core Qt5Gui Qt5Widgets && echo true)
  155. HAVE_LIBLO = $(shell pkg-config --exists liblo && echo true)
  156. HAVE_FLUIDSYNTH = $(shell pkg-config --exists fluidsynth && echo true)
  157. HAVE_LINUXSAMPLER = $(shell pkg-config --atleast-version=1.0.0.svn41 linuxsampler && echo true)
  158. HAVE_PROJECTM = $(shell pkg-config --exists libprojectM && echo true)
  159. # --------------------------------------------------------------
  160. # Check for optional libs (special non-pkgconfig unix tests)
  161. ifeq ($(UNIX),true)
  162. # libmagic doesn't have a pkg-config file, so we need to call the compiler to test it
  163. HAVE_LIBMAGIC = $(shell echo '\#include <magic.h>' | $(CC) $(CFLAGS) -x c -w -c - -o .libmagic-tmp 2>/dev/null && echo true)
  164. # fltk doesn't have a pkg-config file but has fltk-config instead.
  165. # Also, don't try looking for it if we already have NTK.
  166. ifneq ($(HAVE_NTK),true)
  167. ifeq ($(shell which fltk-config 1>/dev/null 2>/dev/null && echo true),true)
  168. ifeq ($(shell which fluid 1>/dev/null 2>/dev/null && echo true),true)
  169. HAVE_FLTK = true
  170. endif
  171. endif
  172. endif
  173. endif
  174. # --------------------------------------------------------------
  175. # Set Qt tools
  176. ifeq ($(HAVE_QT4),true)
  177. MOC_QT4 ?= $(shell pkg-config --variable=moc_location QtCore)
  178. RCC_QT4 ?= $(shell pkg-config --variable=rcc_location QtCore)
  179. UIC_QT4 ?= $(shell pkg-config --variable=uic_location QtCore)
  180. ifeq (,$(wildcard $(MOC_QT4)))
  181. HAVE_QT4=false
  182. endif
  183. endif
  184. ifeq ($(HAVE_QT5),true)
  185. QT5_LIBDIR = $(shell pkg-config --variable=libdir Qt5Core)
  186. ifeq ($(MACOS),true)
  187. MOC_QT5 ?= $(QT5_LIBDIR)/../bin/moc
  188. RCC_QT5 ?= $(QT5_LIBDIR)/../bin/rcc
  189. UIC_QT5 ?= $(QT5_LIBDIR)/../bin/uic
  190. else # MACOS
  191. ifneq (,$(wildcard $(QT5_LIBDIR)/qt5/bin/moc))
  192. MOC_QT5 ?= $(QT5_LIBDIR)/qt5/bin/moc
  193. RCC_QT5 ?= $(QT5_LIBDIR)/qt5/bin/rcc
  194. UIC_QT5 ?= $(QT5_LIBDIR)/qt5/bin/uic
  195. else
  196. MOC_QT5 ?= $(QT5_LIBDIR)/qt/bin/moc
  197. RCC_QT5 ?= $(QT5_LIBDIR)/qt/bin/rcc
  198. UIC_QT5 ?= $(QT5_LIBDIR)/qt/bin/uic
  199. endif
  200. endif # MACOS
  201. ifeq (,$(wildcard $(MOC_QT5)))
  202. HAVE_QT5=false
  203. endif
  204. endif
  205. ifeq ($(HAVE_QT4),true)
  206. HAVE_QT=true
  207. endif
  208. ifeq ($(HAVE_QT5),true)
  209. HAVE_QT=true
  210. endif
  211. ifeq ($(WIN32),true)
  212. HAVE_QT=true
  213. endif
  214. # --------------------------------------------------------------
  215. # Set PyQt tools
  216. PYUIC4 ?= /usr/bin/pyuic4
  217. PYUIC5 ?= /usr/bin/pyuic5
  218. ifneq (,$(wildcard $(PYUIC4)))
  219. HAVE_PYQT=true
  220. HAVE_PYQT4=true
  221. else
  222. HAVE_PYQT4=false
  223. endif
  224. ifneq (,$(wildcard $(PYUIC5)))
  225. HAVE_PYQT=true
  226. HAVE_PYQT5=true
  227. else
  228. HAVE_PYQT5=false
  229. endif
  230. # --------------------------------------------------------------
  231. # Set default Qt used in frontend
  232. ifeq ($(HAVE_PYQT4),true)
  233. DEFAULT_QT ?= 4
  234. else
  235. DEFAULT_QT ?= 5
  236. endif
  237. # --------------------------------------------------------------
  238. # Set base defines
  239. ifeq ($(HAVE_DGL),true)
  240. BASE_FLAGS += -DHAVE_DGL
  241. endif
  242. ifeq ($(HAVE_LIBLO),true)
  243. BASE_FLAGS += -DHAVE_LIBLO
  244. endif
  245. ifeq ($(HAVE_LIBMAGIC),true)
  246. BASE_FLAGS += -DHAVE_LIBMAGIC
  247. endif
  248. ifeq ($(HAVE_FLUIDSYNTH),true)
  249. BASE_FLAGS += -DHAVE_FLUIDSYNTH
  250. endif
  251. ifeq ($(HAVE_LINUXSAMPLER),true)
  252. BASE_FLAGS += -DHAVE_LINUXSAMPLER
  253. endif
  254. ifeq ($(HAVE_PROJECTM),true)
  255. BASE_FLAGS += -DHAVE_PROJECTM
  256. endif
  257. ifeq ($(HAVE_X11),true)
  258. BASE_FLAGS += -DHAVE_X11
  259. endif
  260. ifeq ($(CARLA_VESTIGE_HEADER),true)
  261. BASE_FLAGS += -DVESTIGE_HEADER
  262. endif
  263. # --------------------------------------------------------------
  264. # Set libs stuff (part 1)
  265. ifeq ($(HAVE_LIBLO),true)
  266. LIBLO_FLAGS = $(shell pkg-config --cflags liblo)
  267. LIBLO_LIBS = $(shell pkg-config --libs liblo)
  268. endif
  269. ifeq ($(HAVE_FLUIDSYNTH),true)
  270. FLUIDSYNTH_FLAGS = $(shell pkg-config --cflags fluidsynth)
  271. FLUIDSYNTH_LIBS = $(shell pkg-config --libs fluidsynth)
  272. endif
  273. ifeq ($(HAVE_LINUXSAMPLER),true)
  274. LINUXSAMPLER_FLAGS = $(shell pkg-config --cflags linuxsampler) -DIS_CPP11=1 -Wno-non-virtual-dtor -Wno-shadow -Wno-unused-parameter
  275. LINUXSAMPLER_LIBS = $(shell pkg-config --libs linuxsampler)
  276. endif
  277. ifeq ($(HAVE_PROJECTM),true)
  278. PROJECTM_FLAGS = $(shell pkg-config --cflags libprojectM)
  279. PROJECTM_LIBS = $(shell pkg-config --libs libprojectM)
  280. endif
  281. ifeq ($(HAVE_X11),true)
  282. X11_FLAGS = $(shell pkg-config --cflags x11)
  283. X11_LIBS = $(shell pkg-config --libs x11)
  284. endif
  285. # --------------------------------------------------------------
  286. # Set libs stuff (part 2)
  287. RTAUDIO_FLAGS = -DHAVE_GETTIMEOFDAY -D__UNIX_JACK__
  288. ifeq ($(DEBUG),true)
  289. RTAUDIO_FLAGS += -D__RTAUDIO_DEBUG__
  290. RTMIDI_FLAGS += -D__RTMIDI_DEBUG__
  291. endif
  292. ifneq ($(HAIKU),true)
  293. RTMEMPOOL_LIBS = -lpthread
  294. endif
  295. ifeq ($(LINUX),true)
  296. JACKBRIDGE_LIBS = -ldl -lpthread -lrt
  297. JUCE_CORE_LIBS = -ldl -lpthread -lrt
  298. LILV_LIBS = -ldl -lm -lrt
  299. ifeq ($(HAVE_DGL),true)
  300. DGL_FLAGS = $(shell pkg-config --cflags gl x11)
  301. DGL_LIBS = $(shell pkg-config --libs gl x11)
  302. endif
  303. ifeq ($(HAVE_ALSA),true)
  304. RTAUDIO_FLAGS += $(shell pkg-config --cflags alsa) -D__LINUX_ALSA__
  305. RTAUDIO_LIBS += $(shell pkg-config --libs alsa) -lpthread
  306. RTMIDI_FLAGS += $(shell pkg-config --cflags alsa) -D__LINUX_ALSA__
  307. RTMIDI_LIBS += $(shell pkg-config --libs alsa)
  308. endif
  309. ifeq ($(HAVE_PULSEAUDIO),true)
  310. RTAUDIO_FLAGS += $(shell pkg-config --cflags libpulse-simple) -D__LINUX_PULSE__
  311. RTAUDIO_LIBS += $(shell pkg-config --libs libpulse-simple)
  312. endif
  313. endif
  314. ifeq ($(MACOS),true)
  315. DGL_LIBS = -framework OpenGL -framework Cocoa
  316. JACKBRIDGE_LIBS = -ldl -lpthread
  317. JUCE_AUDIO_BASICS_LIBS = -framework Accelerate
  318. JUCE_AUDIO_DEVICES_LIBS = -framework AppKit -framework AudioToolbox -framework CoreAudio -framework CoreMIDI
  319. JUCE_AUDIO_FORMATS_LIBS = -framework AudioToolbox -framework CoreFoundation
  320. JUCE_AUDIO_PROCESSORS_LIBS = -framework AudioToolbox -framework AudioUnit -framework CoreAudio -framework CoreAudioKit -framework Cocoa -framework Carbon
  321. JUCE_CORE_LIBS = -framework AppKit
  322. JUCE_EVENTS_LIBS = -framework AppKit
  323. JUCE_GRAPHICS_LIBS = -framework Cocoa -framework QuartzCore
  324. JUCE_GUI_BASICS_LIBS = -framework Cocoa
  325. JUCE_GUI_EXTRA_LIBS = -framework Cocoa -framework IOKit
  326. LILV_LIBS = -ldl -lm
  327. endif
  328. ifeq ($(WIN32),true)
  329. DGL_LIBS = -lopengl32 -lgdi32
  330. JACKBRIDGE_LIBS = -lpthread
  331. JUCE_AUDIO_DEVICES_LIBS = -lwinmm -lole32
  332. JUCE_CORE_LIBS = -luuid -lwsock32 -lwininet -lversion -lole32 -lws2_32 -loleaut32 -limm32 -lcomdlg32 -lshlwapi -lrpcrt4 -lwinmm
  333. # JUCE_EVENTS_LIBS = -lole32
  334. JUCE_GRAPHICS_LIBS = -lgdi32
  335. JUCE_GUI_BASICS_LIBS = -lgdi32 -limm32 -lcomdlg32 -lole32
  336. LILV_LIBS = -lm
  337. endif
  338. # --------------------------------------------------------------
  339. # Set libs stuff (part 3)
  340. HAVE_ZYN_DEPS = $(shell pkg-config --exists liblo fftw3 mxml zlib && echo true)
  341. ifeq ($(HAVE_FLTK),true)
  342. HAVE_ZYN_UI_DEPS = true
  343. endif
  344. ifeq ($(HAVE_NTK),true)
  345. HAVE_ZYN_UI_DEPS = true
  346. endif
  347. ifeq ($(HAVE_DGL),true)
  348. NATIVE_PLUGINS_LIBS += $(DGL_LIBS)
  349. ifeq ($(HAVE_PROJECTM),true)
  350. NATIVE_PLUGINS_LIBS += $(PROJECTM_LIBS)
  351. endif
  352. endif
  353. ifeq ($(EXPERIMENTAL_PLUGINS),true)
  354. BASE_FLAGS += -DHAVE_EXPERIMENTAL_PLUGINS
  355. NATIVE_PLUGINS_LIBS += -lclxclient -lclthreads -lzita-convolver -lzita-resampler
  356. NATIVE_PLUGINS_LIBS += $(shell pkg-config --libs cairo libpng12 fftw3f x11 xft zlib)
  357. endif
  358. ifeq ($(HAVE_ZYN_DEPS),true)
  359. BASE_FLAGS += -DHAVE_ZYN_DEPS
  360. NATIVE_PLUGINS_LIBS += $(shell pkg-config --libs liblo fftw3 mxml zlib)
  361. ifeq ($(HAVE_ZYN_UI_DEPS),true)
  362. BASE_FLAGS += -DHAVE_ZYN_UI_DEPS
  363. # ifeq ($(HAVE_NTK),true)
  364. # NATIVE_PLUGINS_LIBS += $(shell pkg-config --libs ntk_images ntk)
  365. # else
  366. # NATIVE_PLUGINS_LIBS += $(shell fltk-config --use-images --ldstaticflags)
  367. # endif
  368. endif
  369. endif
  370. # --------------------------------------------------------------
  371. # Set app extension
  372. ifeq ($(WIN32),true)
  373. APP_EXT = .exe
  374. endif
  375. # --------------------------------------------------------------
  376. # Set shared lib extension
  377. LIB_EXT = .so
  378. ifeq ($(MACOS),true)
  379. LIB_EXT = .dylib
  380. endif
  381. ifeq ($(WIN32),true)
  382. LIB_EXT = .dll
  383. endif
  384. # --------------------------------------------------------------
  385. # Set static libs start & end
  386. ifneq ($(MACOS),true)
  387. LIBS_START = -Wl,--start-group
  388. LIBS_END = -Wl,--end-group
  389. endif
  390. # --------------------------------------------------------------
  391. # Set shared library CLI arg
  392. ifeq ($(MACOS),true)
  393. SHARED = -dynamiclib
  394. else
  395. SHARED = -shared
  396. endif
  397. # --------------------------------------------------------------