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.

202 lines
5.1KB

  1. RACK_DIR ?= .
  2. VERSION = 0.6.2c
  3. FLAGS += \
  4. -Iinclude \
  5. -Idep/include -Idep/lib/libzip/include
  6. include arch.mk
  7. STRIP ?= strip
  8. SED := perl -p -i -e
  9. # SED := sed -i
  10. # Sources and build flags
  11. SOURCES += dep/nanovg/src/nanovg.c
  12. SOURCES += dep/osdialog/osdialog.c
  13. SOURCES += $(wildcard dep/jpommier-pffft-*/pffft.c) $(wildcard dep/jpommier-pffft-*/fftpack.c)
  14. SOURCES += $(wildcard src/*.cpp src/*/*.cpp)
  15. ifdef ARCH_MAC
  16. SOURCES += dep/osdialog/osdialog_mac.m
  17. CXXFLAGS += -stdlib=libc++
  18. LDFLAGS += -stdlib=libc++ -lpthread -ldl \
  19. -framework Cocoa -framework OpenGL -framework IOKit -framework CoreVideo -framework CoreAudio -framework CoreMIDI \
  20. -Ldep/lib dep/lib/libglfw3.a dep/lib/libGLEW.a dep/lib/libjansson.a dep/lib/libspeexdsp.a dep/lib/libzip.a dep/lib/libz.a dep/lib/librtaudio.a dep/lib/librtmidi.a dep/lib/libcrypto.a dep/lib/libssl.a dep/lib/libcurl.a
  21. TARGET := Rack
  22. BUNDLE := dist/$(TARGET).app
  23. endif
  24. ifdef ARCH_WIN
  25. SOURCES += dep/osdialog/osdialog_win.c
  26. LDFLAGS += -static \
  27. -Wl,--export-all-symbols,--out-implib,libRack.a -mwindows \
  28. -Ldep/lib -lglew32 -lglfw3 -ljansson -lspeexdsp -lzip -lz -lcurl -lssl -lcrypto -lrtaudio -lrtmidi \
  29. -lpthread -lopengl32 -lgdi32 -lws2_32 -lcomdlg32 -lole32 -ldsound -lwinmm -lksuser -lshlwapi
  30. TARGET := Rack.exe
  31. OBJECTS += Rack.res
  32. endif
  33. ifdef ARCH_LIN
  34. SOURCES += dep/osdialog/osdialog_gtk2.c
  35. CFLAGS += $(shell pkg-config --cflags gtk+-2.0)
  36. LDFLAGS += -rdynamic \
  37. -Ldep/lib \
  38. -Wl,-Bstatic -lglfw3 -lGLEW -ljansson -lspeexdsp -lzip -lz -lrtmidi -lrtaudio -lcurl -lssl -lcrypto \
  39. -Wl,-Bdynamic -lpthread -lGL -ldl -lX11 -lasound -ljack \
  40. $(shell pkg-config --libs gtk+-2.0)
  41. TARGET := Rack
  42. endif
  43. # Convenience targets
  44. all: $(TARGET)
  45. dep:
  46. $(MAKE) -C dep
  47. run: $(TARGET)
  48. ./$< -d
  49. runr: $(TARGET)
  50. ./$<
  51. debug: $(TARGET)
  52. ifdef ARCH_MAC
  53. lldb --args ./$< -d
  54. endif
  55. ifdef ARCH_WIN
  56. gdb --args ./$< -d
  57. endif
  58. ifdef ARCH_LIN
  59. gdb --args ./$< -d
  60. endif
  61. perf: $(TARGET)
  62. ifdef ARCH_LIN
  63. perf record --call-graph dwarf -o perf.data ./$< -d
  64. endif
  65. clean:
  66. rm -rfv $(TARGET) libRack.a Rack.res build dist
  67. ifdef ARCH_WIN
  68. # For Windows resources
  69. %.res: %.rc
  70. windres $^ -O coff -o $@
  71. endif
  72. # This target is not intended for public use
  73. dist: all
  74. rm -rf dist
  75. mkdir -p dist
  76. @# Rack
  77. $(MAKE) -C plugins/Fundamental dist
  78. ifdef ARCH_MAC
  79. mkdir -p $(BUNDLE)
  80. mkdir -p $(BUNDLE)/Contents
  81. mkdir -p $(BUNDLE)/Contents/Resources
  82. cp Info.plist $(BUNDLE)/Contents/
  83. $(SED) 's/{VERSION}/$(VERSION)/g' $(BUNDLE)/Contents/Info.plist
  84. cp -R LICENSE* icon.icns res $(BUNDLE)/Contents/Resources
  85. mkdir -p $(BUNDLE)/Contents/MacOS
  86. cp $(TARGET) $(BUNDLE)/Contents/MacOS/
  87. $(STRIP) -S $(BUNDLE)/Contents/MacOS/$(TARGET)
  88. otool -L $(BUNDLE)/Contents/MacOS/$(TARGET)
  89. cp plugins/Fundamental/dist/Fundamental-*.zip $(BUNDLE)/Contents/Resources/Fundamental.zip
  90. cp -R Bridge/AU/dist/VCV-Bridge.component dist/
  91. cp -R Bridge/VST/dist/VCV-Bridge.vst dist/
  92. cp -R Bridge/VST/dist/VCV-Bridge-fx.vst dist/
  93. @# Make DMG image
  94. cd dist && ln -s /Applications Applications
  95. cd dist && ln -s /Library/Audio/Plug-Ins/Components Components
  96. cd dist && ln -s /Library/Audio/Plug-Ins/VST VST
  97. cd dist && hdiutil create -srcfolder . -volname Rack -ov -format UDZO Rack-$(VERSION)-$(ARCH).dmg
  98. endif
  99. ifdef ARCH_WIN
  100. mkdir -p dist/Rack
  101. mkdir -p dist/Rack/Bridge
  102. cp Bridge/VST/dist/VCV-Bridge-{32,64,fx-32,fx-64}.dll dist/Rack/Bridge/
  103. cp -R LICENSE* res dist/Rack/
  104. cp $(TARGET) dist/Rack/
  105. $(STRIP) -s dist/Rack/$(TARGET)
  106. cp /mingw64/bin/libwinpthread-1.dll dist/Rack/
  107. cp /mingw64/bin/libstdc++-6.dll dist/Rack/
  108. cp /mingw64/bin/libgcc_s_seh-1.dll dist/Rack/
  109. cp plugins/Fundamental/dist/Fundamental-*.zip dist/Rack/Fundamental.zip
  110. @# Make ZIP
  111. cd dist && zip -5 -r Rack-$(VERSION)-$(ARCH).zip Rack
  112. @# Make NSIS installer
  113. makensis installer.nsi
  114. mv Rack-setup.exe dist/Rack-$(VERSION)-$(ARCH).exe
  115. endif
  116. ifdef ARCH_LIN
  117. mkdir -p dist/Rack
  118. mkdir -p dist/Rack/Bridge
  119. cp Bridge/VST/dist/VCV-Bridge{,-fx}.so dist/Rack/Bridge/
  120. cp -R LICENSE* res dist/Rack/
  121. cp $(TARGET) dist/Rack/
  122. $(STRIP) -s dist/Rack/$(TARGET)
  123. ldd dist/Rack/$(TARGET)
  124. cp plugins/Fundamental/dist/Fundamental-*.zip dist/Rack/Fundamental.zip
  125. @# Make ZIP
  126. cd dist && zip -5 -r Rack-$(VERSION)-$(ARCH).zip Rack
  127. endif
  128. @# Rack SDK
  129. mkdir -p dist/Rack-SDK
  130. cp LICENSE* dist/Rack-SDK/
  131. cp *.mk dist/Rack-SDK/
  132. cp -R include dist/Rack-SDK/
  133. mkdir -p dist/Rack-SDK/dep/
  134. cp -R dep/include dist/Rack-SDK/dep/
  135. ifdef ARCH_WIN
  136. cp libRack.a dist/Rack-SDK/
  137. endif
  138. cd dist && zip -5 -r Rack-SDK-$(VERSION)-$(ARCH).zip Rack-SDK
  139. # Obviously this will only work if you have the private keys to my server
  140. UPLOAD_URL := vortico@vcvrack.com:files/
  141. upload:
  142. ifdef ARCH_MAC
  143. rsync dist/*.{dmg,zip} $(UPLOAD_URL) -zP
  144. endif
  145. ifdef ARCH_WIN
  146. rsync dist/*.{exe,zip} $(UPLOAD_URL) -P
  147. endif
  148. ifdef ARCH_LIN
  149. rsync dist/*.zip $(UPLOAD_URL) -zP
  150. endif
  151. # Plugin helpers
  152. allplugins:
  153. for f in plugins/*; do $(MAKE) -C "$$f"; done
  154. cleanplugins:
  155. for f in plugins/*; do $(MAKE) -C "$$f" clean; done
  156. distplugins:
  157. for f in plugins/*; do $(MAKE) -C "$$f" dist; done
  158. plugins:
  159. for f in plugins/*; do (cd "$$f" && ${CMD}); done
  160. # Includes
  161. include compile.mk
  162. .PHONY: all dep run debug clean dist allplugins cleanplugins distplugins plugins
  163. .DEFAULT_GOAL := all