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.

178 lines
5.4KB

  1. FLAGS += \
  2. -Iinclude \
  3. -Idep/include -Idep/lib/libzip/include
  4. SOURCES = $(wildcard src/*.cpp src/*/*.cpp) \
  5. ext/nanovg/src/nanovg.c
  6. include arch.mk
  7. ifeq ($(ARCH), lin)
  8. SOURCES += ext/osdialog/osdialog_gtk2.c
  9. CFLAGS += $(shell pkg-config --cflags gtk+-2.0)
  10. LDFLAGS += -rdynamic \
  11. -lpthread -lGL -ldl \
  12. $(shell pkg-config --libs gtk+-2.0) \
  13. -Ldep/lib -lGLEW -lglfw -ljansson -lsamplerate -lcurl -lzip -lportaudio -lrtmidi
  14. TARGET = Rack
  15. endif
  16. ifeq ($(ARCH), mac)
  17. SOURCES += ext/osdialog/osdialog_mac.m
  18. CXXFLAGS += -DAPPLE -stdlib=libc++
  19. LDFLAGS += -stdlib=libc++ -lpthread -ldl \
  20. -framework Cocoa -framework OpenGL -framework IOKit -framework CoreVideo \
  21. -Ldep/lib -lGLEW -lglfw -ljansson -lsamplerate -lcurl -lzip -lportaudio -lrtmidi
  22. TARGET = Rack
  23. endif
  24. ifeq ($(ARCH), win)
  25. SOURCES += ext/osdialog/osdialog_win.c
  26. LDFLAGS += -static-libgcc -static-libstdc++ -lpthread \
  27. -Wl,--export-all-symbols,--out-implib,libRack.a -mwindows \
  28. -lgdi32 -lopengl32 -lcomdlg32 -lole32 \
  29. -Ldep/lib -lglew32 -lglfw3dll -lcurl -lzip -lportaudio_x64 -lrtmidi \
  30. -Wl,-Bstatic -ljansson -lsamplerate
  31. TARGET = Rack.exe
  32. OBJECTS = Rack.res
  33. endif
  34. all: $(TARGET)
  35. dep:
  36. $(MAKE) -C dep
  37. run: $(TARGET)
  38. ifeq ($(ARCH), lin)
  39. LD_LIBRARY_PATH=dep/lib ./$<
  40. endif
  41. ifeq ($(ARCH), mac)
  42. DYLD_FALLBACK_LIBRARY_PATH=dep/lib ./$<
  43. endif
  44. ifeq ($(ARCH), win)
  45. # TODO get rid of the mingw64 path
  46. env PATH=dep/bin:/mingw64/bin ./$<
  47. endif
  48. debug: $(TARGET)
  49. ifeq ($(ARCH), mac)
  50. lldb ./Rack
  51. else
  52. LD_LIBRARY_PATH=dep/lib gdb -ex run ./Rack
  53. endif
  54. clean:
  55. rm -rfv $(TARGET) build dist
  56. # For Windows resources
  57. %.res: %.rc
  58. windres $^ -O coff -o $@
  59. include compile.mk
  60. dist: all
  61. ifndef VERSION
  62. $(error VERSION must be defined when calling make)
  63. endif
  64. rm -rf dist
  65. $(MAKE) -C plugins/Fundamental dist
  66. ifeq ($(ARCH), mac)
  67. $(eval BUNDLE := dist/$(TARGET).app)
  68. mkdir -p $(BUNDLE)
  69. mkdir -p $(BUNDLE)/Contents
  70. mkdir -p $(BUNDLE)/Contents/Resources
  71. cp Info.plist $(BUNDLE)/Contents/
  72. cp -R LICENSE* res $(BUNDLE)/Contents/Resources
  73. mkdir -p $(BUNDLE)/Contents/MacOS
  74. cp Rack $(BUNDLE)/Contents/MacOS/
  75. cp icon.icns $(BUNDLE)/Contents/Resources/
  76. otool -L $(BUNDLE)/Contents/MacOS/Rack
  77. cp dep/lib/libGLEW.2.1.0.dylib $(BUNDLE)/Contents/MacOS/
  78. cp dep/lib/libglfw.3.dylib $(BUNDLE)/Contents/MacOS/
  79. cp dep/lib/libjansson.4.dylib $(BUNDLE)/Contents/MacOS/
  80. cp dep/lib/libsamplerate.0.dylib $(BUNDLE)/Contents/MacOS/
  81. cp dep/lib/libcurl.4.dylib $(BUNDLE)/Contents/MacOS/
  82. cp dep/lib/libzip.5.dylib $(BUNDLE)/Contents/MacOS/
  83. cp dep/lib/libportaudio.2.dylib $(BUNDLE)/Contents/MacOS/
  84. cp dep/lib/librtmidi.4.dylib $(BUNDLE)/Contents/MacOS/
  85. install_name_tool -change /usr/local/lib/libGLEW.2.1.0.dylib @executable_path/libGLEW.2.1.0.dylib $(BUNDLE)/Contents/MacOS/Rack
  86. install_name_tool -change lib/libglfw.3.dylib @executable_path/libglfw.3.dylib $(BUNDLE)/Contents/MacOS/Rack
  87. install_name_tool -change $(PWD)/dep/lib/libjansson.4.dylib @executable_path/libjansson.4.dylib $(BUNDLE)/Contents/MacOS/Rack
  88. install_name_tool -change $(PWD)/dep/lib/libsamplerate.0.dylib @executable_path/libsamplerate.0.dylib $(BUNDLE)/Contents/MacOS/Rack
  89. install_name_tool -change $(PWD)/dep/lib/libcurl.4.dylib @executable_path/libcurl.4.dylib $(BUNDLE)/Contents/MacOS/Rack
  90. install_name_tool -change $(PWD)/dep/lib/libzip.5.dylib @executable_path/libzip.5.dylib $(BUNDLE)/Contents/MacOS/Rack
  91. install_name_tool -change $(PWD)/dep/lib/libportaudio.2.dylib @executable_path/libportaudio.2.dylib $(BUNDLE)/Contents/MacOS/Rack
  92. install_name_tool -change $(PWD)/dep/lib/librtmidi.4.dylib @executable_path/librtmidi.4.dylib $(BUNDLE)/Contents/MacOS/Rack
  93. otool -L $(BUNDLE)/Contents/MacOS/Rack
  94. mkdir -p $(BUNDLE)/Contents/Resources/plugins
  95. cp -R plugins/Fundamental/dist/Fundamental $(BUNDLE)/Contents/Resources/plugins
  96. endif
  97. ifeq ($(ARCH), win)
  98. mkdir -p dist/Rack
  99. cp -R LICENSE* res dist/Rack/
  100. cp Rack.exe dist/Rack/
  101. cp /mingw64/bin/libwinpthread-1.dll dist/Rack/
  102. cp /mingw64/bin/zlib1.dll dist/Rack/
  103. cp /mingw64/bin/libstdc++-6.dll dist/Rack/
  104. cp /mingw64/bin/libgcc_s_seh-1.dll dist/Rack/
  105. cp dep/bin/glew32.dll dist/Rack/
  106. cp dep/bin/glfw3.dll dist/Rack/
  107. cp dep/bin/libcurl-4.dll dist/Rack/
  108. cp dep/bin/libjansson-4.dll dist/Rack/
  109. cp dep/bin/librtmidi-4.dll dist/Rack/
  110. cp dep/bin/libsamplerate-0.dll dist/Rack/
  111. cp dep/bin/libzip-5.dll dist/Rack/
  112. cp dep/bin/portaudio_x64.dll dist/Rack/
  113. mkdir -p dist/Rack/plugins
  114. cp -R plugins/Fundamental/dist/Fundamental dist/Rack/plugins/
  115. endif
  116. ifeq ($(ARCH), lin)
  117. mkdir -p dist/Rack
  118. cp -R LICENSE* res dist/Rack/
  119. cp Rack Rack.sh dist/Rack/
  120. cp dep/lib/libsamplerate.so.0 dist/Rack/
  121. cp dep/lib/libjansson.so.4 dist/Rack/
  122. cp dep/lib/libGLEW.so.2.1 dist/Rack/
  123. cp dep/lib/libglfw.so.3 dist/Rack/
  124. cp dep/lib/libcurl.so.4 dist/Rack/
  125. cp dep/lib/libzip.so.5 dist/Rack/
  126. cp dep/lib/libportaudio.so.2 dist/Rack/
  127. cp dep/lib/librtmidi.so.4 dist/Rack/
  128. mkdir -p dist/Rack/plugins
  129. cp -R plugins/Fundamental/dist/Fundamental dist/Rack/plugins/
  130. endif
  131. ifeq ($(ARCH), mac)
  132. cd dist && ln -s /Applications Applications
  133. cd dist && hdiutil create -srcfolder . -volname Rack -ov -format UDZO Rack-$(VERSION)-$(ARCH).dmg
  134. else
  135. cd dist && zip -5 -r Rack-$(VERSION)-$(ARCH).zip Rack
  136. endif
  137. # Plugin helpers
  138. allplugins:
  139. for f in plugins/*; do $(MAKE) -C "$$f"; done
  140. cleanplugins:
  141. for f in plugins/*; do $(MAKE) -C "$$f" clean; done
  142. distplugins:
  143. for f in plugins/*; do $(MAKE) -C "$$f" dist; done
  144. plugins:
  145. for f in plugins/*; do (cd "$$f" && ${CMD}); done
  146. .PHONY: all dep run debug clean dist allplugins cleanplugins distplugins plugins