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.

272 lines
9.9KB

  1. RACK_DIR ?= ..
  2. .NOTPARALLEL:
  3. # Target paths
  4. include $(RACK_DIR)/arch.mk
  5. ifdef ARCH_LIN
  6. glew = lib/libGLEW.a
  7. glfw = lib/libglfw3.a
  8. jansson = lib/libjansson.a
  9. openssl = lib/libcrypto.a
  10. libcurl = lib/libcurl.a
  11. zstd = lib/libzstd.a
  12. libarchive = lib/libarchive.a
  13. libspeexdsp = lib/libspeexdsp.a
  14. libsamplerate = lib/libsamplerate.a
  15. rtmidi = lib/librtmidi.a
  16. rtaudio = lib/librtaudio.a
  17. endif
  18. ifdef ARCH_MAC
  19. glew = lib/libGLEW.a
  20. glfw = lib/libglfw3.a
  21. jansson = lib/libjansson.a
  22. openssl = lib/libcrypto.a
  23. libcurl = lib/libcurl.a
  24. zstd = lib/libzstd.a
  25. libarchive = lib/libarchive.a
  26. libspeexdsp = lib/libspeexdsp.a
  27. libsamplerate = lib/libsamplerate.a
  28. rtmidi = lib/librtmidi.a
  29. rtaudio = lib/librtaudio.a
  30. endif
  31. ifdef ARCH_WIN
  32. glew = lib/libglew32.a
  33. glfw = lib/libglfw3.a
  34. jansson = lib/libjansson.a
  35. openssl = lib/libcrypto.a
  36. libcurl = lib/libcurl.a
  37. zstd = lib/libzstd.a
  38. libarchive = lib/libarchive_static.a
  39. libspeexdsp = lib/libspeexdsp.a
  40. libsamplerate = lib/libsamplerate.a
  41. rtmidi = lib/librtmidi.a
  42. rtaudio = lib/librtaudio.a
  43. endif
  44. nanovg = include/nanovg.h
  45. nanosvg = include/nanosvg.h
  46. oui-blendish = include/blendish.h
  47. osdialog = include/osdialog.h
  48. pffft = include/pffft.h
  49. fuzzysearchdatabase = include/FuzzySearchDatabase.hpp
  50. ghcfilesystem = include/ghc/filesystem.hpp
  51. tinyexpr = include/tinyexpr.h
  52. simde = include/simde
  53. DEPS += $(glew)
  54. DEPS += $(glfw)
  55. DEPS += $(jansson)
  56. DEPS += $(libcurl)
  57. DEPS += $(libarchive)
  58. DEPS += $(libspeexdsp)
  59. DEPS += $(libsamplerate)
  60. DEPS += $(rtmidi)
  61. DEPS += $(rtaudio)
  62. DEPS += $(nanovg)
  63. DEPS += $(nanosvg)
  64. DEPS += $(oui-blendish)
  65. DEPS += $(osdialog)
  66. DEPS += $(pffft)
  67. DEPS += $(fuzzysearchdatabase)
  68. DEPS += $(ghcfilesystem)
  69. DEPS += $(tinyexpr)
  70. DEPS += $(simde)
  71. DEP_LOCAL := .
  72. include $(RACK_DIR)/dep.mk
  73. # Targets
  74. # These targets are all order-only "|" because we usually don't care if a library was built before or after other libraries.
  75. glew-2.1.0:
  76. $(WGET) "https://github.com/nigels-com/glew/releases/download/glew-2.1.0/glew-2.1.0.tgz"
  77. $(SHA256) glew-2.1.0.tgz 04de91e7e6763039bc11940095cd9c7f880baba82196a7765f727ac05a993c95
  78. $(UNTAR) glew-2.1.0.tgz
  79. rm glew-2.1.0.tgz
  80. $(glew): | glew-2.1.0
  81. cd glew-2.1.0 && mkdir -p build
  82. cd glew-2.1.0/build && $(CMAKE) ./cmake
  83. $(MAKE) -C glew-2.1.0/build
  84. $(MAKE) -C glew-2.1.0/build install
  85. $(glfw): | glfw
  86. cd glfw && mkdir -p build
  87. cd glfw/build && $(CMAKE) .. \
  88. -DGLFW_BUILD_EXAMPLES=OFF -DGLFW_BUILD_TESTS=OFF -DGLFW_BUILD_DOCS=OFF
  89. $(MAKE) -C glfw/build
  90. $(MAKE) -C glfw/build install
  91. jansson-2.12:
  92. $(WGET) "https://github.com/akheron/jansson/releases/download/v2.12/jansson-2.12.tar.gz" || $(WGET) "http://www.digip.org/jansson/releases/jansson-2.12.tar.gz"
  93. $(SHA256) jansson-2.12.tar.gz 5f8dec765048efac5d919aded51b26a32a05397ea207aa769ff6b53c7027d2c9
  94. $(UNTAR) jansson-2.12.tar.gz
  95. rm jansson-2.12.tar.gz
  96. $(jansson): | jansson-2.12
  97. cd jansson-2.12 && $(CONFIGURE)
  98. $(MAKE) -C jansson-2.12
  99. $(MAKE) -C jansson-2.12 install
  100. openssl-3.3.2:
  101. $(WGET) "https://github.com/openssl/openssl/releases/download/openssl-3.3.2/openssl-3.3.2.tar.gz"
  102. $(SHA256) openssl-3.3.2.tar.gz 2e8a40b01979afe8be0bbfb3de5dc1c6709fedb46d6c89c10da114ab5fc3d281
  103. $(UNTAR) openssl-3.3.2.tar.gz
  104. rm openssl-3.3.2.tar.gz
  105. $(openssl): | openssl-3.3.2
  106. # Set no-pinshared so OpenSSL doesn't call GetModuleHandleEx(GET_MODULE_HANDLE_EX_FLAG_PIN, ...) on initialization on Windows. This prevents libRack from being unloaded on Windows with FreeLibrary().
  107. # Don't use no-shared because libcurl's configure uses the shared library to find OpenSSL.
  108. cd openssl-3.3.2 && ./Configure --prefix="$(DEP_PATH)" --libdir=lib no-zlib no-capieng no-pinshared no-apps no-tests no-docs no-ui-console
  109. $(MAKE) -C openssl-3.3.2
  110. $(MAKE) -C openssl-3.3.2 install_sw
  111. curl-8.10.0:
  112. $(WGET) "https://github.com/curl/curl/releases/download/curl-8_10_0/curl-8.10.0.tar.gz" || $(WGET) "https://curl.se/download/curl-8.10.0.tar.gz"
  113. $(SHA256) curl-8.10.0.tar.gz 58c9dcf73493ae9d181fd334b3b3987ff73124621565187ade237bff1064a716
  114. $(UNTAR) curl-8.10.0.tar.gz
  115. rm curl-8.10.0.tar.gz
  116. CURL_FLAGS += --disable-symbol-hiding --enable-shared=no
  117. CURL_FLAGS += --enable-http --disable-ftp --disable-file --disable-ldap --disable-ldaps --disable-rtsp --enable-proxy --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smb --disable-smtp --disable-gopher --disable-mqtt --disable-manual --disable-docs --disable-libcurl-option --enable-threaded-resolver --enable-pthreads --enable-verbose --disable-sspi --disable-aws --disable-ntlm --disable-tls-srp --disable-unix-sockets --disable-mime --disable-bindlocal --disable-netrc --disable-progress-meter --disable-alt-svc --disable-hsts
  118. CURL_FLAGS += --with-openssl="$(DEP_PATH)"
  119. CURL_FLAGS += --without-hyper --without-zlib --without-brotli --without-zstd --without-ca-fallback --without-ca-embed --without-libpsl --without-libgsasl --without-librtmp --without-winidn --without-apple-idn --without-libidn2 --without-nghttp2 --without-ngtcp2 --without-openssl-quic --without-nghttp3 --without-quiche --without-msh3 --without-libuv
  120. $(libcurl): | $(openssl) curl-8.10.0
  121. cd curl-8.10.0 && PKG_CONFIG_PATH= $(CONFIGURE) $(CURL_FLAGS)
  122. $(MAKE) -C curl-8.10.0
  123. $(MAKE) -C curl-8.10.0 install
  124. zstd-1.5.6:
  125. $(WGET) "https://github.com/facebook/zstd/releases/download/v1.5.6/zstd-1.5.6.tar.gz"
  126. $(SHA256) zstd-1.5.6.tar.gz 8c29e06cf42aacc1eafc4077ae2ec6c6fcb96a626157e0593d5e82a34fd403c1
  127. $(UNTAR) zstd-1.5.6.tar.gz
  128. rm zstd-1.5.6.tar.gz
  129. $(zstd): | zstd-1.5.6
  130. cd zstd-1.5.6/build/cmake && $(CMAKE) -DZSTD_BUILD_PROGRAMS=OFF -DZSTD_BUILD_SHARED=OFF -DZSTD_BUILD_STATIC=ON -DZSTD_BUILD_TESTS=OFF -DZSTD_MULTITHREAD_SUPPORT=OFF .
  131. $(MAKE) -C zstd-1.5.6/build/cmake
  132. $(MAKE) -C zstd-1.5.6/build/cmake install
  133. libarchive-3.7.7:
  134. $(WGET) "https://github.com/libarchive/libarchive/releases/download/v3.7.7/libarchive-3.7.7.tar.gz" || $(WGET) "https://libarchive.org/downloads/libarchive-3.7.7.tar.gz"
  135. $(SHA256) libarchive-3.7.7.tar.gz 4cc540a3e9a1eebdefa1045d2e4184831100667e6d7d5b315bb1cbc951f8ddff
  136. $(UNTAR) libarchive-3.7.7.tar.gz
  137. rm libarchive-3.7.7.tar.gz
  138. $(libarchive): | $(zstd) libarchive-3.7.7
  139. #cd libarchive-3.7.7 && $(CONFIGURE) --enable-shared=no --enable-static=yes --disable-bsdtar --disable-bsdcat --disable-bsdcpio --disable-posix-regex-lib --disable-xattr --disable-acl --without-zlib --without-bz2lib --without-libb2 --without-iconv --without-lz4 --without-lzma --without-cng --without-openssl --without-xml2 --without-expat
  140. cd libarchive-3.7.7 && mkdir -p build
  141. cd libarchive-3.7.7/build && $(CMAKE) -DBUILD_TESTING=OFF -DBUILD_SHARED_LIBS=OFF -DENABLE_ACL=OFF -DENABLE_BZip2=OFF -DENABLE_CAT=OFF -DENABLE_CNG=OFF -DENABLE_COVERAGE=OFF -DENABLE_CPIO=OFF -DENABLE_EXPAT=OFF -DENABLE_ICONV=OFF -DENABLE_LIBB2=OFF -DENABLE_LIBXML2=OFF -DENABLE_LZ4=OFF -DENABLE_LZMA=OFF -DENABLE_LZO=OFF -DENABLE_MBEDTLS=OFF -DENABLE_NETTLE=OFF -DENABLE_OPENSSL=OFF -DENABLE_TAR=OFF -DENABLE_TEST=OFF -DENABLE_UNZIP=OFF -DENABLE_WERROR=OFF -DENABLE_XATTR=OFF -DENABLE_ZLIB=OFF -DENABLE_ZSTD=ON -DZSTD_INCLUDE_DIR:PATH=$(DEP_PATH)/include -DZSTD_LIBRARY=$(DEP_PATH)/lib/libzstd.a ..
  142. $(MAKE) -C libarchive-3.7.7/build
  143. $(MAKE) -C libarchive-3.7.7/build install
  144. $(libspeexdsp): | speexdsp
  145. cd speexdsp && ./autogen.sh
  146. cd speexdsp && $(CONFIGURE)
  147. $(MAKE) -C speexdsp
  148. $(MAKE) -C speexdsp install
  149. libsamplerate-0.1.9:
  150. $(WGET) "https://github.com/libsndfile/libsamplerate/releases/download/0.1.9/libsamplerate-0.1.9.tar.gz" || $(WGET) "http://www.mega-nerd.com/SRC/libsamplerate-0.1.9.tar.gz"
  151. $(SHA256) libsamplerate-0.1.9.tar.gz 0a7eb168e2f21353fb6d84da152e4512126f7dc48ccb0be80578c565413444c1
  152. $(UNTAR) libsamplerate-0.1.9.tar.gz
  153. rm libsamplerate-0.1.9.tar.gz
  154. $(libsamplerate): | libsamplerate-0.1.9
  155. cd libsamplerate-0.1.9 && $(CONFIGURE) --disable-fftw --disable-sndfile
  156. $(MAKE) -C libsamplerate-0.1.9
  157. $(MAKE) -C libsamplerate-0.1.9 install
  158. RTMIDI_FLAGS += --enable-shared=no
  159. ifdef ARCH_LIN
  160. RTMIDI_FLAGS += --with-alsa --with-jack
  161. endif
  162. ifdef ARCH_MAC
  163. RTMIDI_FLAGS += --with-core --without-jack
  164. endif
  165. ifdef ARCH_WIN
  166. RTMIDI_FLAGS += --with-winmm
  167. endif
  168. $(rtmidi): | rtmidi
  169. cd rtmidi && ./autogen.sh --no-configure
  170. cd rtmidi && $(CONFIGURE) $(RTMIDI_FLAGS)
  171. $(MAKE) -C rtmidi
  172. $(MAKE) -C rtmidi install
  173. RTAUDIO_FLAGS += -DBUILD_SHARED_LIBS=OFF
  174. ifdef ARCH_LIN
  175. RTAUDIO_FLAGS += -DRTAUDIO_API_ALSA=ON -DRTAUDIO_API_JACK=ON -DRTAUDIO_API_PULSE=ON -DRTAUDIO_API_OSS=OFF
  176. endif
  177. ifdef ARCH_MAC
  178. RTAUDIO_FLAGS += -DRTAUDIO_API_CORE=ON -DRTAUDIO_API_PULSE=OFF -DRTAUDIO_API_JACK=OFF
  179. endif
  180. ifdef ARCH_WIN
  181. RTAUDIO_FLAGS += -DRTAUDIO_API_DS=ON -DRTAUDIO_API_WASAPI=ON
  182. # ASIO is proprietary software owned by Steinberg, so distributing it with your own VCV Rack build would violate Rack's GPLv3 license.
  183. # However, since VCV owns the copyright of all GPL'd code in the Rack package, we include ASIO in the Windows build for convenience to our users.
  184. ifdef RTAUDIO_ASIO
  185. RTAUDIO_FLAGS += -DRTAUDIO_API_ASIO=ON
  186. else
  187. RTAUDIO_FLAGS += -DRTAUDIO_API_ASIO=OFF
  188. endif
  189. endif
  190. $(rtaudio): | rtaudio
  191. cd rtaudio && mkdir -p build
  192. cd rtaudio/build && $(CMAKE) $(RTAUDIO_FLAGS) ..
  193. $(MAKE) -C rtaudio/build
  194. $(MAKE) -C rtaudio/build install
  195. $(nanovg): $(wildcard nanovg/src/*.h) nanovg/example/stb_image_write.h
  196. mkdir -p include
  197. cp $^ include/
  198. $(nanosvg): $(wildcard nanosvg/src/*.h)
  199. mkdir -p include
  200. cp $^ include/
  201. $(oui-blendish): $(wildcard oui-blendish/*.h)
  202. mkdir -p include
  203. cp $^ include/
  204. $(osdialog): $(wildcard osdialog/*.h)
  205. mkdir -p include
  206. cp $^ include/
  207. $(pffft): | pffft
  208. mkdir -p include
  209. cp pffft/*.h include/
  210. $(fuzzysearchdatabase): fuzzysearchdatabase/src/FuzzySearchDatabase.hpp
  211. mkdir -p include
  212. cp $^ include/
  213. $(ghcfilesystem): filesystem/include/ghc
  214. mkdir -p include
  215. cp -r $^ include/
  216. $(tinyexpr): tinyexpr/tinyexpr.h
  217. mkdir -p include
  218. cp $^ include/
  219. $(simde): simde/simde
  220. mkdir -p include
  221. cp -R $^ include/
  222. # Helpers
  223. src: glew-2.1.0 glfw jansson-2.12 libsamplerate-0.1.9 openssl-3.3.2 curl-8.10.0 zstd-1.5.6 libarchive-3.7.7 rtaudio nanovg nanosvg oui-blendish osdialog
  224. clean:
  225. git clean -fdx
  226. git submodule foreach git clean -fdx