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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  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/libssl.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/libssl.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/libssl.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. DEPS += $(glew)
  52. DEPS += $(glfw)
  53. DEPS += $(jansson)
  54. DEPS += $(libcurl)
  55. DEPS += $(libarchive)
  56. DEPS += $(libspeexdsp)
  57. DEPS += $(libsamplerate)
  58. DEPS += $(rtmidi)
  59. DEPS += $(rtaudio)
  60. DEPS += $(nanovg)
  61. DEPS += $(nanosvg)
  62. DEPS += $(oui-blendish)
  63. DEPS += $(osdialog)
  64. DEPS += $(pffft)
  65. DEPS += $(fuzzysearchdatabase)
  66. DEPS += $(ghcfilesystem)
  67. DEP_LOCAL := .
  68. include $(RACK_DIR)/dep.mk
  69. # Targets
  70. # These targets are all order-only "|" because we usually don't care if a library was built before or after other libraries.
  71. glew-2.1.0:
  72. $(WGET) "https://github.com/nigels-com/glew/releases/download/glew-2.1.0/glew-2.1.0.tgz"
  73. $(SHA256) glew-2.1.0.tgz 04de91e7e6763039bc11940095cd9c7f880baba82196a7765f727ac05a993c95
  74. $(UNTAR) glew-2.1.0.tgz
  75. rm glew-2.1.0.tgz
  76. $(glew): | glew-2.1.0
  77. cd glew-2.1.0 && mkdir -p build
  78. cd glew-2.1.0/build && $(CMAKE) ./cmake
  79. $(MAKE) -C glew-2.1.0/build
  80. $(MAKE) -C glew-2.1.0/build install
  81. $(glfw): | glfw
  82. cd glfw && mkdir -p build
  83. cd glfw/build && $(CMAKE) .. \
  84. -DGLFW_BUILD_EXAMPLES=OFF -DGLFW_BUILD_TESTS=OFF -DGLFW_BUILD_DOCS=OFF
  85. $(MAKE) -C glfw/build
  86. $(MAKE) -C glfw/build install
  87. jansson-2.12:
  88. $(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"
  89. $(SHA256) jansson-2.12.tar.gz 5f8dec765048efac5d919aded51b26a32a05397ea207aa769ff6b53c7027d2c9
  90. $(UNTAR) jansson-2.12.tar.gz
  91. rm jansson-2.12.tar.gz
  92. $(jansson): | jansson-2.12
  93. cd jansson-2.12 && $(CONFIGURE)
  94. $(MAKE) -C jansson-2.12
  95. $(MAKE) -C jansson-2.12 install
  96. openssl-1.1.1k:
  97. $(WGET) "https://www.openssl.org/source/openssl-1.1.1k.tar.gz"
  98. $(SHA256) openssl-1.1.1k.tar.gz 892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5
  99. $(UNTAR) openssl-1.1.1k.tar.gz
  100. rm openssl-1.1.1k.tar.gz
  101. $(openssl): | openssl-1.1.1k
  102. # The CFLAGS environment variable is ignored, so pass CFLAGS to their custom ./config script, which passes them to the compiler.
  103. # 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().
  104. cd openssl-1.1.1k && ./config --prefix="$(DEP_PATH)" no-shared no-hw threads no-zlib no-capieng no-pinshared $(CFLAGS)
  105. $(MAKE) -C openssl-1.1.1k
  106. $(MAKE) -C openssl-1.1.1k install_sw
  107. curl-7.79.1:
  108. $(WGET) "https://github.com/curl/curl/releases/download/curl-7_79_1/curl-7.79.1.tar.gz" || $(WGET) "https://curl.se/download/curl-7.79.1.tar.gz"
  109. $(SHA256) curl-7.79.1.tar.gz 370b11201349816287fb0ccc995e420277fbfcaf76206e309b3f60f0eda090c2
  110. $(UNTAR) curl-7.79.1.tar.gz
  111. rm curl-7.79.1.tar.gz
  112. CURL_FLAGS += --disable-symbol-hiding --enable-shared=no
  113. 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 --enable-threaded-resolver --enable-pthreads --enable-verbose --disable-sspi --disable-ntlm --disable-ntlm-wb --disable-tls-srp --disable-unix-sockets --disable-doh --disable-mime --disable-dateparse --disable-netrc --disable-progress-meter --disable-alt-svc
  114. CURL_FLAGS += --without-hyper --without-zlib --without-brotli --without-zstd --without-libpsl --without-libgsasl --without-libssh2 --without-librtmp --without-winidn --without-libidn2 --without-nghttp2 --without-ngtcp2 --without-nghttp3 --without-quiche
  115. CURL_FLAGS += --with-ssl="$(DEP_PATH)"
  116. $(libcurl): | $(openssl) curl-7.79.1
  117. cd curl-7.79.1 && PKG_CONFIG_PATH= $(CONFIGURE) $(CURL_FLAGS)
  118. $(MAKE) -C curl-7.79.1
  119. $(MAKE) -C curl-7.79.1 install
  120. zstd-1.4.5:
  121. $(WGET) "https://github.com/facebook/zstd/releases/download/v1.4.5/zstd-1.4.5.tar.gz"
  122. $(SHA256) zstd-1.4.5.tar.gz 98e91c7c6bf162bf90e4e70fdbc41a8188b9fa8de5ad840c401198014406ce9e
  123. $(UNTAR) zstd-1.4.5.tar.gz
  124. rm zstd-1.4.5.tar.gz
  125. $(zstd): | zstd-1.4.5
  126. cd zstd-1.4.5/build/cmake && $(CMAKE) -DZSTD_BUILD_PROGRAMS=ON -DZSTD_BUILD_SHARED=ON -DZSTD_BUILD_STATIC=ON -DZSTD_MULTITHREAD_SUPPORT=OFF .
  127. $(MAKE) -C zstd-1.4.5/build/cmake
  128. $(MAKE) -C zstd-1.4.5/build/cmake install
  129. libarchive-3.4.3:
  130. $(WGET) "https://github.com/libarchive/libarchive/releases/download/v3.4.3/libarchive-3.4.3.tar.gz" || $(WGET) "https://libarchive.org/downloads/libarchive-3.4.3.tar.gz"
  131. $(SHA256) libarchive-3.4.3.tar.gz ee1e749213c108cb60d53147f18c31a73d6717d7e3d2481c157e1b34c881ea39
  132. $(UNTAR) libarchive-3.4.3.tar.gz
  133. rm libarchive-3.4.3.tar.gz
  134. $(libarchive): | $(zstd) libarchive-3.4.3
  135. #cd libarchive-3.4.3 && $(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
  136. cd libarchive-3.4.3 && mkdir -p build
  137. cd libarchive-3.4.3/build && $(CMAKE) -DENABLE_ACL:BOOL=OFF -DENABLE_BZip2:BOOL=OFF -DENABLE_CAT:BOOL=OFF -DENABLE_CNG:BOOL=OFF -DENABLE_COVERAGE:BOOL=OFF -DENABLE_CPIO:BOOL=OFF -DENABLE_EXPAT:BOOL=OFF -DENABLE_ICONV:BOOL=OFF -DENABLE_LIBB2:BOOL=OFF -DENABLE_LIBXML2:BOOL=OFF -DENABLE_LZ4:BOOL=OFF -DENABLE_LZMA:BOOL=OFF -DENABLE_LZO:BOOL=OFF -DENABLE_MBEDTLS:BOOL=OFF -DENABLE_NETTLE:BOOL=OFF -DENABLE_OPENSSL:BOOL=OFF -DENABLE_TAR:BOOL=OFF -DENABLE_TEST:BOOL=OFF -DENABLE_WERROR:BOOL=OFF -DENABLE_XATTR:BOOL=OFF -DENABLE_ZLIB:BOOL=OFF -DENABLE_ZSTD:BOOL=ON -DZSTD_INCLUDE_DIR:PATH=$(DEP_PATH)/include -DBUILD_TESTING:BOOL=OFF ..
  138. $(MAKE) -C libarchive-3.4.3/build
  139. $(MAKE) -C libarchive-3.4.3/build install
  140. speexdsp-SpeexDSP-1.2rc3:
  141. $(WGET) "https://vcvrack.com/downloads/dep/speexdsp-SpeexDSP-1.2rc3.tgz"
  142. $(SHA256) speexdsp-SpeexDSP-1.2rc3.tgz c8dded1454747f65956f981c95e7f89a06abdaa2a53e8aeaa66bab2a3d59cebd
  143. $(UNTAR) speexdsp-SpeexDSP-1.2rc3.tgz
  144. rm speexdsp-SpeexDSP-1.2rc3.tgz
  145. $(libspeexdsp): | speexdsp-SpeexDSP-1.2rc3
  146. cd speexdsp-SpeexDSP-1.2rc3 && $(CONFIGURE)
  147. $(MAKE) -C speexdsp-SpeexDSP-1.2rc3
  148. $(MAKE) -C speexdsp-SpeexDSP-1.2rc3 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 += -DRTAUDIO_BUILD_STATIC_LIBS=ON -DRTAUDIO_BUILD_TESTING=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. # Helpers
  217. src: glew-2.1.0 glfw jansson-2.12 speexdsp-SpeexDSP-1.2rc3 libsamplerate-0.1.9 openssl-1.1.1k curl-7.79.1 zstd-1.4.5 libarchive-3.4.3 rtaudio nanovg nanosvg oui-blendish osdialog
  218. clean:
  219. git clean -fdx
  220. git submodule foreach git clean -fdx