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.

530 lines
14KB

  1. #!/usr/bin/make -f
  2. # Makefile for Carla C++ code #
  3. # --------------------------- #
  4. # Created by falkTX
  5. #
  6. # ---------------------------------------------------------------------------------------------------------------------
  7. # Base environment vars
  8. AR ?= ar
  9. CC ?= gcc
  10. CXX ?= g++
  11. # ---------------------------------------------------------------------------------------------------------------------
  12. # Auto-detect OS if not defined
  13. ifneq ($(BSD),true)
  14. ifneq ($(HAIKU),true)
  15. ifneq ($(HURD),true)
  16. ifneq ($(LINUX),true)
  17. ifneq ($(MACOS),true)
  18. ifneq ($(WIN32),true)
  19. TARGET_MACHINE := $(shell $(CC) -dumpmachine)
  20. ifneq (,$(findstring bsd,$(TARGET_MACHINE)))
  21. BSD=true
  22. endif
  23. ifneq (,$(findstring haiku,$(TARGET_MACHINE)))
  24. HAIKU=true
  25. endif
  26. ifneq (,$(findstring gnu,$(TARGET_MACHINE)))
  27. HURD=true
  28. endif
  29. ifneq (,$(findstring linux,$(TARGET_MACHINE)))
  30. LINUX=true
  31. endif
  32. ifneq (,$(findstring apple,$(TARGET_MACHINE)))
  33. MACOS=true
  34. endif
  35. ifneq (,$(findstring mingw,$(TARGET_MACHINE)))
  36. WIN32=true
  37. endif
  38. endif
  39. endif
  40. endif
  41. endif
  42. endif
  43. endif
  44. # ---------------------------------------------------------------------------------------------------------------------
  45. # Set LINUX_OR_MACOS
  46. ifeq ($(LINUX),true)
  47. LINUX_OR_MACOS=true
  48. endif
  49. ifeq ($(MACOS),true)
  50. LINUX_OR_MACOS=true
  51. endif
  52. # ---------------------------------------------------------------------------------------------------------------------
  53. # Set MACOS_OR_WIN32
  54. ifeq ($(MACOS),true)
  55. MACOS_OR_WIN32=true
  56. endif
  57. ifeq ($(WIN32),true)
  58. MACOS_OR_WIN32=true
  59. endif
  60. # ---------------------------------------------------------------------------------------------------------------------
  61. # Set UNIX
  62. ifeq ($(BSD),true)
  63. UNIX=true
  64. endif
  65. ifeq ($(HURD),true)
  66. UNIX=true
  67. endif
  68. ifeq ($(LINUX),true)
  69. UNIX=true
  70. endif
  71. ifeq ($(MACOS),true)
  72. UNIX=true
  73. endif
  74. # ---------------------------------------------------------------------------------------------------------------------
  75. # Set build and link flags
  76. BASE_FLAGS = -Wall -Wextra -pipe -DBUILDING_CARLA -DREAL_BUILD -MD -MP
  77. BASE_OPTS = -O3 -ffast-math -mtune=generic -msse -msse2 -mfpmath=sse -fdata-sections -ffunction-sections
  78. ifeq ($(MACOS),true)
  79. # MacOS linker flags
  80. LINK_OPTS = -fdata-sections -ffunction-sections -Wl,-dead_strip -Wl,-dead_strip_dylibs
  81. else
  82. # Common linker flags
  83. LINK_OPTS = -fdata-sections -ffunction-sections -Wl,--gc-sections -Wl,-O1 -Wl,--as-needed
  84. ifneq ($(SKIP_STRIPPING),true)
  85. LINK_OPTS += -Wl,--strip-all
  86. endif
  87. endif
  88. ifeq ($(NOOPT),true)
  89. # No CPU-specific optimization flags
  90. BASE_OPTS = -O2 -ffast-math -fdata-sections -ffunction-sections
  91. endif
  92. ifneq ($(WIN32),true)
  93. # Not needed for Windows
  94. BASE_FLAGS += -fPIC -DPIC
  95. else
  96. ifeq ($(BUILDING_FOR_WINDOWS),true)
  97. BASE_FLAGS += -DBUILDING_CARLA_FOR_WINDOWS
  98. endif
  99. endif
  100. ifeq ($(CLANG),true)
  101. BASE_FLAGS += -Wabsolute-value
  102. endif
  103. ifeq ($(DEBUG),true)
  104. BASE_FLAGS += -DDEBUG -O0 -g
  105. LINK_OPTS =
  106. else
  107. BASE_FLAGS += -DNDEBUG $(BASE_OPTS) -fvisibility=hidden
  108. CXXFLAGS += -fvisibility-inlines-hidden
  109. endif
  110. 32BIT_FLAGS = -m32
  111. 64BIT_FLAGS = -m64
  112. BUILD_C_FLAGS = $(BASE_FLAGS) -std=gnu99 $(CFLAGS)
  113. BUILD_CXX_FLAGS = $(BASE_FLAGS) -std=gnu++0x $(CXXFLAGS)
  114. LINK_FLAGS = $(LINK_OPTS) $(LDFLAGS)
  115. ifneq ($(MACOS),true)
  116. # Not available on MacOS
  117. LINK_FLAGS += -Wl,--no-undefined
  118. endif
  119. ifeq ($(MACOS_OLD),true)
  120. BUILD_CXX_FLAGS = $(BASE_FLAGS) $(CXXFLAGS) -DHAVE_CPP11_SUPPORT=0
  121. endif
  122. # ---------------------------------------------------------------------------------------------------------------------
  123. # Strict test build
  124. ifeq ($(TESTBUILD),true)
  125. BASE_FLAGS += -Werror -Wabi -Wcast-qual -Wclobbered -Wconversion -Wdisabled-optimization -Wfloat-equal -Wformat=2 -Winit-self -Wmissing-declarations
  126. BASE_FLAGS += -Woverlength-strings -Wpointer-arith -Wredundant-decls -Wshadow -Wsign-conversion -Wundef -Wuninitialized -Wunused
  127. BASE_FLAGS += -Wstrict-aliasing -fstrict-aliasing
  128. BASE_FLAGS += -Wstrict-overflow -fstrict-overflow
  129. CFLAGS += -Wnested-externs -Wmissing-prototypes -Wstrict-prototypes -Wwrite-strings
  130. CXXFLAGS += -Wc++0x-compat -Wc++11-compat -Weffc++ -Wnon-virtual-dtor -Woverloaded-virtual -Wzero-as-null-pointer-constant
  131. ifeq ($(LINUX),true)
  132. BASE_FLAGS += -isystem /opt/kxstudio/include
  133. CXXFLAGS += -isystem /usr/include/glib-2.0
  134. CXXFLAGS += -isystem /usr/include/glib-2.0/glib
  135. CXXFLAGS += -isystem /usr/include/gtk-2.0
  136. CXXFLAGS += -isystem /usr/include/gtk-2.0/gio
  137. ifeq ($(DEFAULT_QT),4)
  138. CXXFLAGS += -isystem /usr/include/qt4
  139. else
  140. CXXFLAGS += -isystem /usr/include/qt5
  141. endif
  142. endif
  143. ifeq ($(MACOS),true)
  144. BASE_FLAGS += -isystem /opt/kxstudio/include
  145. CXXFLAGS += -isystem /System/Library/Frameworks
  146. endif
  147. ifeq ($(WIN64),true)
  148. BASE_FLAGS += -isystem /opt/mingw64/include
  149. else
  150. ifeq ($(WIN32),true)
  151. BASE_FLAGS += -isystem /opt/mingw32/include
  152. endif
  153. endif
  154. endif
  155. # ---------------------------------------------------------------------------------------------------------------------
  156. # Check for optional libs (required by backend or bridges)
  157. ifeq ($(LINUX),true)
  158. HAVE_ALSA = $(shell pkg-config --exists alsa && echo true)
  159. HAVE_HYLIA = true
  160. endif
  161. ifeq ($(MACOS),true)
  162. ifneq ($(MACOS_OLD),true)
  163. HAVE_HYLIA = true
  164. endif
  165. endif
  166. ifneq ($(MACOS_OR_WIN32),true)
  167. HAVE_GTK2 = $(shell pkg-config --exists gtk+-2.0 && echo true)
  168. HAVE_GTK3 = $(shell pkg-config --exists gtk+-3.0 && echo true)
  169. HAVE_X11 = $(shell pkg-config --exists x11 && echo true)
  170. endif
  171. ifeq ($(UNIX),true)
  172. ifneq ($(MACOS),true)
  173. HAVE_PULSEAUDIO = $(shell pkg-config --exists libpulse-simple && echo true)
  174. endif
  175. endif
  176. HAVE_FFMPEG = $(shell pkg-config --exists libavcodec libavformat libavutil && echo true)
  177. HAVE_FLUIDSYNTH = $(shell pkg-config --exists fluidsynth && echo true)
  178. HAVE_LIBLO = $(shell pkg-config --exists liblo && echo true)
  179. HAVE_LINUXSAMPLER = $(shell pkg-config --atleast-version=1.0.0.svn41 linuxsampler && echo true)
  180. HAVE_QT4 = $(shell pkg-config --exists QtCore QtGui && echo true)
  181. HAVE_QT5 = $(shell pkg-config --exists Qt5Core Qt5Gui Qt5Widgets && echo true)
  182. HAVE_SNDFILE = $(shell pkg-config --exists sndfile && echo true)
  183. # ---------------------------------------------------------------------------------------------------------------------
  184. # Check for optional libs (special non-pkgconfig tests)
  185. ifneq ($(WIN32),true)
  186. # libmagic doesn't have a pkg-config file, so we need to call the compiler to test it
  187. HAVE_LIBMAGIC = $(shell echo '\#include <magic.h>' | $(CC) $(CFLAGS) -x c -w -c - -o .libmagic-tmp 2>/dev/null && echo true)
  188. endif
  189. # ---------------------------------------------------------------------------------------------------------------------
  190. # Set Qt tools
  191. ifeq ($(HAVE_QT4),true)
  192. MOC_QT4 ?= $(shell pkg-config --variable=moc_location QtCore)
  193. RCC_QT4 ?= $(shell pkg-config --variable=rcc_location QtCore)
  194. UIC_QT4 ?= $(shell pkg-config --variable=uic_location QtCore)
  195. ifeq (,$(wildcard $(MOC_QT4)))
  196. HAVE_QT4=false
  197. endif
  198. ifeq (,$(wildcard $(RCC_QT4)))
  199. HAVE_QT4=false
  200. endif
  201. endif
  202. ifeq ($(HAVE_QT5),true)
  203. QT5_HOSTBINS = $(shell pkg-config --variable=host_bins Qt5Core)
  204. MOC_QT5 ?= $(QT5_HOSTBINS)/moc
  205. RCC_QT5 ?= $(QT5_HOSTBINS)/rcc
  206. UIC_QT5 ?= $(QT5_HOSTBINS)/uic
  207. ifeq (,$(wildcard $(MOC_QT5)))
  208. HAVE_QT5=false
  209. endif
  210. ifeq (,$(wildcard $(RCC_QT5)))
  211. HAVE_QT5=false
  212. endif
  213. endif
  214. ifeq ($(HAVE_QT4),true)
  215. HAVE_QT=true
  216. endif
  217. ifeq ($(HAVE_QT5),true)
  218. HAVE_QT=true
  219. endif
  220. ifeq ($(WIN32),true)
  221. HAVE_QT=true
  222. endif
  223. # ---------------------------------------------------------------------------------------------------------------------
  224. # Set PyQt tools
  225. PYRCC4 ?= $(shell which pyrcc4 2>/dev/null)
  226. PYUIC4 ?= $(shell which pyuic4 2>/dev/null)
  227. PYRCC5 ?= $(shell which pyrcc5 2>/dev/null)
  228. PYUIC5 ?= $(shell which pyuic5 2>/dev/null)
  229. HAVE_PYQT4=false
  230. HAVE_PYQT5=false
  231. ifneq ($(PYUIC4),)
  232. ifneq ($(PYRCC4),)
  233. HAVE_PYQT=true
  234. HAVE_PYQT4=true
  235. endif
  236. endif
  237. ifneq ($(PYUIC5),)
  238. ifneq ($(PYRCC5),)
  239. HAVE_PYQT=true
  240. HAVE_PYQT5=true
  241. endif
  242. endif
  243. # ---------------------------------------------------------------------------------------------------------------------
  244. # Set default Qt used in frontend
  245. ifeq ($(HAVE_PYQT5),true)
  246. DEFAULT_QT ?= 5
  247. else
  248. DEFAULT_QT ?= 4
  249. endif
  250. # ---------------------------------------------------------------------------------------------------------------------
  251. # Set base defines
  252. ifeq ($(HAVE_PYQT),true)
  253. BASE_FLAGS += -DHAVE_PYQT
  254. endif
  255. ifeq ($(HAVE_FLUIDSYNTH),true)
  256. BASE_FLAGS += -DHAVE_FLUIDSYNTH
  257. endif
  258. ifeq ($(HAVE_FFMPEG),true)
  259. BASE_FLAGS += -DHAVE_FFMPEG
  260. endif
  261. ifeq ($(HAVE_HYLIA),true)
  262. BASE_FLAGS += -DHAVE_HYLIA
  263. endif
  264. ifeq ($(HAVE_LIBLO),true)
  265. BASE_FLAGS += -DHAVE_LIBLO
  266. endif
  267. ifeq ($(HAVE_LIBMAGIC),true)
  268. BASE_FLAGS += -DHAVE_LIBMAGIC
  269. endif
  270. ifeq ($(HAVE_LINUXSAMPLER),true)
  271. BASE_FLAGS += -DHAVE_LINUXSAMPLER
  272. endif
  273. ifeq ($(HAVE_SNDFILE),true)
  274. BASE_FLAGS += -DHAVE_SNDFILE
  275. endif
  276. ifeq ($(HAVE_X11),true)
  277. BASE_FLAGS += -DHAVE_X11
  278. endif
  279. # ---------------------------------------------------------------------------------------------------------------------
  280. # Set libs stuff (part 1)
  281. ifeq ($(LINUX_OR_MACOS),true)
  282. LIBDL_LIBS = -ldl
  283. endif
  284. ifeq ($(HAVE_LIBLO),true)
  285. LIBLO_FLAGS = $(shell pkg-config --cflags liblo)
  286. LIBLO_LIBS = $(shell pkg-config --libs liblo)
  287. endif
  288. ifeq ($(HAVE_FFMPEG),true)
  289. FFMPEG_FLAGS = $(shell pkg-config --cflags libavcodec libavformat libavutil)
  290. FFMPEG_LIBS = $(shell pkg-config --libs libavcodec libavformat libavutil)
  291. endif
  292. ifeq ($(HAVE_FLUIDSYNTH),true)
  293. FLUIDSYNTH_FLAGS = $(shell pkg-config --cflags fluidsynth)
  294. FLUIDSYNTH_LIBS = $(shell pkg-config --libs fluidsynth)
  295. endif
  296. ifeq ($(HAVE_LINUXSAMPLER),true)
  297. LINUXSAMPLER_FLAGS = $(shell pkg-config --cflags linuxsampler) -DIS_CPP11=1 -Wno-non-virtual-dtor -Wno-shadow -Wno-unused-parameter
  298. ifeq ($(LINUX),true)
  299. LINUXSAMPLER_LIBS = -Wl,-rpath=$(shell pkg-config --variable=libdir gig):$(shell pkg-config --variable=libdir linuxsampler)
  300. endif
  301. LINUXSAMPLER_LIBS += $(shell pkg-config --libs linuxsampler)
  302. ifeq ($(WIN32),true)
  303. LINUXSAMPLER_LIBS += -lws2_32
  304. endif
  305. endif
  306. ifeq ($(HAVE_SNDFILE),true)
  307. SNDFILE_FLAGS = $(shell pkg-config --cflags sndfile)
  308. SNDFILE_LIBS = $(shell pkg-config --libs sndfile)
  309. endif
  310. ifeq ($(HAVE_X11),true)
  311. X11_FLAGS = $(shell pkg-config --cflags x11)
  312. X11_LIBS = $(shell pkg-config --libs x11)
  313. endif
  314. ifeq ($(HAVE_LIBMAGIC),true)
  315. MAGIC_LIBS += -lmagic
  316. ifeq ($(LINUX_OR_MACOS),true)
  317. MAGIC_LIBS += -lz
  318. endif
  319. endif
  320. # ---------------------------------------------------------------------------------------------------------------------
  321. # Set libs stuff (part 2)
  322. RTAUDIO_FLAGS = -DHAVE_GETTIMEOFDAY -D__RTAUDIO_DUMMY__
  323. RTMIDI_FLAGS = -D__RTMIDI_DUMMY__
  324. ifeq ($(DEBUG),true)
  325. RTAUDIO_FLAGS += -D__RTAUDIO_DEBUG__
  326. RTMIDI_FLAGS += -D__RTMIDI_DEBUG__
  327. endif
  328. ifeq ($(UNIX),true)
  329. RTAUDIO_FLAGS += -D__UNIX_JACK__
  330. ifeq ($(HAVE_PULSEAUDIO),true)
  331. RTAUDIO_FLAGS += $(shell pkg-config --cflags libpulse-simple) -D__UNIX_PULSE__
  332. RTAUDIO_LIBS += $(shell pkg-config --libs libpulse-simple)
  333. endif
  334. endif
  335. ifeq ($(BSD),true)
  336. JACKBRIDGE_LIBS = -lpthread -lrt
  337. LILV_LIBS = -lm -lrt
  338. RTMEMPOOL_LIBS = -lpthread
  339. WATER_LIBS = -lpthread -lrt
  340. endif
  341. ifneq ($(HAIKU),true)
  342. JACKBRIDGE_LIBS = -lpthread
  343. LILV_LIBS = -lm
  344. RTMEMPOOL_LIBS = -lpthread
  345. WATER_LIBS = -lpthread
  346. endif
  347. ifeq ($(HURD),true)
  348. JACKBRIDGE_LIBS = -ldl -lpthread -lrt
  349. LILV_LIBS = -ldl -lm -lrt
  350. RTMEMPOOL_LIBS = -lpthread -lrt
  351. WATER_LIBS = -ldl -lpthread -lrt
  352. endif
  353. ifeq ($(LINUX),true)
  354. HYLIA_FLAGS = -DLINK_PLATFORM_LINUX=1
  355. JACKBRIDGE_LIBS = -ldl -lpthread -lrt
  356. LILV_LIBS = -ldl -lm -lrt
  357. RTMEMPOOL_LIBS = -lpthread -lrt
  358. WATER_LIBS = -ldl -lpthread -lrt
  359. ifeq ($(HAVE_ALSA),true)
  360. RTAUDIO_FLAGS += $(shell pkg-config --cflags alsa) -D__LINUX_ALSA__
  361. RTAUDIO_LIBS += $(shell pkg-config --libs alsa) -lpthread
  362. RTMIDI_FLAGS += $(shell pkg-config --cflags alsa) -D__LINUX_ALSA__
  363. RTMIDI_LIBS += $(shell pkg-config --libs alsa)
  364. endif
  365. endif
  366. ifeq ($(MACOS),true)
  367. HYLIA_FLAGS = -DLINK_PLATFORM_MACOSX=1
  368. JACKBRIDGE_LIBS = -ldl -lpthread
  369. LILV_LIBS = -ldl -lm
  370. RTMEMPOOL_LIBS = -lpthread
  371. WATER_LIBS = -framework AppKit
  372. RTAUDIO_FLAGS += -D__MACOSX_CORE__
  373. RTAUDIO_LIBS += -framework CoreAudio
  374. RTMIDI_FLAGS += -D__MACOSX_CORE__
  375. RTMIDI_LIBS += -framework CoreMIDI
  376. endif
  377. ifeq ($(WIN32),true)
  378. HYLIA_FLAGS = -DLINK_PLATFORM_WINDOWS=1
  379. JACKBRIDGE_LIBS = -lpthread
  380. LILV_LIBS = -lm
  381. RTMEMPOOL_LIBS = -lpthread
  382. WATER_LIBS = -luuid -lwsock32 -lwininet -lversion -lole32 -lws2_32 -loleaut32 -limm32 -lcomdlg32 -lshlwapi -lrpcrt4 -lwinmm
  383. RTAUDIO_FLAGS += -D__WINDOWS_ASIO__ -D__WINDOWS_DS__ -D__WINDOWS_WASAPI__
  384. RTAUDIO_LIBS += -ldsound -luuid -lksuser -lwinmm
  385. RTMIDI_FLAGS += -D__WINDOWS_MM__
  386. endif
  387. # ---------------------------------------------------------------------------------------------------------------------
  388. NATIVE_PLUGINS_LIBS += $(FFMPEG_LIBS)
  389. NATIVE_PLUGINS_LIBS += $(SNDFILE_LIBS)
  390. # ---------------------------------------------------------------------------------------------------------------------
  391. # Set app extension
  392. ifeq ($(WIN32),true)
  393. APP_EXT = .exe
  394. endif
  395. # ---------------------------------------------------------------------------------------------------------------------
  396. # Set shared lib extension
  397. LIB_EXT = .so
  398. ifeq ($(MACOS),true)
  399. LIB_EXT = .dylib
  400. endif
  401. ifeq ($(WIN32),true)
  402. LIB_EXT = .dll
  403. endif
  404. BASE_FLAGS += -DCARLA_LIB_EXT=\"$(LIB_EXT)\"
  405. # ---------------------------------------------------------------------------------------------------------------------
  406. # Set static libs start & end
  407. ifneq ($(MACOS),true)
  408. LIBS_START = -Wl,--start-group
  409. LIBS_END = -Wl,--end-group
  410. endif
  411. # ---------------------------------------------------------------------------------------------------------------------
  412. # Set shared library CLI arg
  413. ifeq ($(MACOS),true)
  414. SHARED = -dynamiclib
  415. else
  416. SHARED = -shared
  417. endif
  418. # ---------------------------------------------------------------------------------------------------------------------
  419. # Set arguments used for inline 'sed'
  420. ifeq ($(BSD),true)
  421. SED_ARGS=-i '' -e
  422. else
  423. SED_ARGS=-i -e
  424. endif
  425. # ---------------------------------------------------------------------------------------------------------------------
  426. ifneq (,$(wildcard $(CWD)/native-plugins/external/Makefile.mk))
  427. BASE_FLAGS += -DHAVE_EXTERNAL_PLUGINS
  428. include $(CWD)/native-plugins/external/Makefile.mk
  429. endif
  430. # ---------------------------------------------------------------------------------------------------------------------