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.

275 lines
10KB

  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.14:
  92. $(WGET) "https://github.com/akheron/jansson/releases/download/v2.14/jansson-2.14.tar.gz" || $(WGET) "http://www.digip.org/jansson/releases/jansson-2.14.tar.gz"
  93. $(SHA256) jansson-2.14.tar.gz 5798d010e41cf8d76b66236cfb2f2543c8d082181d16bc3085ab49538d4b9929
  94. $(UNTAR) jansson-2.14.tar.gz
  95. rm jansson-2.14.tar.gz
  96. $(jansson): | jansson-2.14
  97. cd jansson-2.14 && $(CONFIGURE)
  98. $(MAKE) -C jansson-2.14
  99. $(MAKE) -C jansson-2.14 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.7:
  125. $(WGET) "https://github.com/facebook/zstd/releases/download/v1.5.7/zstd-1.5.7.tar.gz"
  126. $(SHA256) zstd-1.5.7.tar.gz eb33e51f49a15e023950cd7825ca74a4a2b43db8354825ac24fc1b7ee09e6fa3
  127. # HACK This tar archive creates a symlink "untar" to "tar" before tar exists. This is okay on UNIX but not on Windows where symlinks are copies of files. So create a fake "tar" so the unarchiving works.
  128. mkdir -p zstd-1.5.7/tests/cli-tests/bin
  129. touch zstd-1.5.7/tests/cli-tests/bin/zstd
  130. $(UNTAR) zstd-1.5.7.tar.gz
  131. rm zstd-1.5.7.tar.gz
  132. $(zstd): | zstd-1.5.7
  133. cd zstd-1.5.7/build/cmake && $(CMAKE) -DZSTD_BUILD_PROGRAMS=OFF -DZSTD_BUILD_SHARED=OFF -DZSTD_BUILD_STATIC=ON -DZSTD_BUILD_TESTS=OFF -DZSTD_MULTITHREAD_SUPPORT=OFF .
  134. $(MAKE) -C zstd-1.5.7/build/cmake
  135. $(MAKE) -C zstd-1.5.7/build/cmake install
  136. libarchive-3.7.8:
  137. $(WGET) "https://github.com/libarchive/libarchive/releases/download/v3.7.8/libarchive-3.7.8.tar.gz" || $(WGET) "https://libarchive.org/downloads/libarchive-3.7.8.tar.gz"
  138. $(SHA256) libarchive-3.7.8.tar.gz a123d87b1bd8adb19e8c187da17ae2d957c7f9596e741b929e6b9ceefea5ad0f
  139. $(UNTAR) libarchive-3.7.8.tar.gz
  140. rm libarchive-3.7.8.tar.gz
  141. $(libarchive): | $(zstd) libarchive-3.7.8
  142. #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
  143. cd libarchive-3.7.8 && mkdir -p build
  144. cd libarchive-3.7.8/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 -DWINDOWS_VERSION="WIN7" -DZSTD_INCLUDE_DIR:PATH=$(DEP_PATH)/include -DZSTD_LIBRARY=$(DEP_PATH)/lib/libzstd.a ..
  145. $(MAKE) -C libarchive-3.7.8/build
  146. $(MAKE) -C libarchive-3.7.8/build install
  147. $(libspeexdsp): | speexdsp
  148. cd speexdsp && ./autogen.sh
  149. cd speexdsp && $(CONFIGURE)
  150. $(MAKE) -C speexdsp
  151. $(MAKE) -C speexdsp install
  152. libsamplerate-0.2.2:
  153. $(WGET) "https://github.com/libsndfile/libsamplerate/releases/download/0.2.2/libsamplerate-0.2.2.tar.xz"
  154. $(SHA256) libsamplerate-0.2.2.tar.xz 3258da280511d24b49d6b08615bbe824d0cacc9842b0e4caf11c52cf2b043893
  155. $(UNTAR) libsamplerate-0.2.2.tar.xz
  156. rm libsamplerate-0.2.2.tar.xz
  157. $(libsamplerate): | libsamplerate-0.2.2
  158. cd libsamplerate-0.2.2 && mkdir build
  159. cd libsamplerate-0.2.2/build && $(CMAKE) -DCMAKE_BUILD_TYPE=Release ..
  160. cd libsamplerate-0.2.2/build && $(MAKE) install
  161. cd libsamplerate-0.2.2/build && $(CMAKE) -DBUILD_SHARED_LIBS=ON ..
  162. cd libsamplerate-0.2.2/build && $(MAKE) install
  163. RTMIDI_FLAGS += --enable-shared=no
  164. ifdef ARCH_LIN
  165. RTMIDI_FLAGS += --with-alsa --with-jack
  166. endif
  167. ifdef ARCH_MAC
  168. RTMIDI_FLAGS += --with-core --without-jack
  169. endif
  170. ifdef ARCH_WIN
  171. RTMIDI_FLAGS += --with-winmm
  172. endif
  173. $(rtmidi): | rtmidi
  174. cd rtmidi && ./autogen.sh --no-configure
  175. cd rtmidi && $(CONFIGURE) $(RTMIDI_FLAGS)
  176. $(MAKE) -C rtmidi
  177. $(MAKE) -C rtmidi install
  178. RTAUDIO_FLAGS += -DBUILD_SHARED_LIBS=OFF
  179. ifdef ARCH_LIN
  180. RTAUDIO_FLAGS += -DRTAUDIO_API_ALSA=ON -DRTAUDIO_API_JACK=ON -DRTAUDIO_API_PULSE=ON -DRTAUDIO_API_OSS=OFF
  181. endif
  182. ifdef ARCH_MAC
  183. RTAUDIO_FLAGS += -DRTAUDIO_API_CORE=ON -DRTAUDIO_API_PULSE=OFF -DRTAUDIO_API_JACK=OFF
  184. endif
  185. ifdef ARCH_WIN
  186. RTAUDIO_FLAGS += -DRTAUDIO_API_DS=OFF -DRTAUDIO_API_WASAPI=ON
  187. # ASIO is proprietary software owned by Steinberg, so distributing it with your own VCV Rack build would violate Rack's GPLv3 license.
  188. # 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.
  189. RTAUDIO_FLAGS += -DRTAUDIO_API_ASIO=ON
  190. endif
  191. # RtAudio on Windows and Mac uses these macros to enable UTF-8 device names
  192. $(rtaudio): export CXXFLAGS += -DUNICODE -D_UNICODE
  193. $(rtaudio): | rtaudio
  194. cd rtaudio && mkdir -p build
  195. cd rtaudio/build && $(CMAKE) $(RTAUDIO_FLAGS) ..
  196. $(MAKE) -C rtaudio/build
  197. $(MAKE) -C rtaudio/build install
  198. $(nanovg): $(wildcard nanovg/src/*.h) nanovg/example/stb_image_write.h
  199. mkdir -p include
  200. cp $^ include/
  201. $(nanosvg): $(wildcard nanosvg/src/*.h)
  202. mkdir -p include
  203. cp $^ include/
  204. $(oui-blendish): $(wildcard oui-blendish/*.h)
  205. mkdir -p include
  206. cp $^ include/
  207. $(osdialog): $(wildcard osdialog/*.h)
  208. mkdir -p include
  209. cp $^ include/
  210. $(pffft): | pffft
  211. mkdir -p include
  212. cp pffft/*.h include/
  213. $(fuzzysearchdatabase): fuzzysearchdatabase/src/FuzzySearchDatabase.hpp
  214. mkdir -p include
  215. cp $^ include/
  216. $(ghcfilesystem): filesystem/include/ghc
  217. mkdir -p include
  218. cp -r $^ include/
  219. $(tinyexpr): tinyexpr/tinyexpr.h
  220. mkdir -p include
  221. cp $^ include/
  222. $(simde): simde/simde
  223. mkdir -p include
  224. cp -R $^ include/
  225. # Helpers
  226. src: glew-2.1.0 glfw jansson-2.14 libsamplerate-0.2.2 openssl-3.3.2 curl-8.10.0 zstd-1.5.7 libarchive-3.7.8 rtaudio nanovg nanosvg oui-blendish osdialog
  227. clean:
  228. git clean -fdx
  229. git submodule foreach git clean -fdx