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

7 years ago
8 years ago
8 years ago
8 years ago
7 years ago
8 years ago
8 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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 -lportmidi
  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 -lportmidi
  22. TARGET = Rack
  23. BUNDLE = $(TARGET).app
  24. endif
  25. ifeq ($(ARCH), win)
  26. SOURCES += ext/osdialog/osdialog_win.c
  27. LDFLAGS += -static-libgcc -static-libstdc++ -lpthread \
  28. -Wl,--export-all-symbols,--out-implib,libRack.a -mwindows \
  29. -lgdi32 -lopengl32 -lcomdlg32 -lole32 \
  30. -Ldep/lib -lglew32 -lglfw3dll -lcurl -lzip -lportaudio_x64 -lportmidi \
  31. -Wl,-Bstatic -ljansson -lsamplerate
  32. TARGET = Rack.exe
  33. OBJECTS = Rack.res
  34. endif
  35. all: $(TARGET)
  36. run: $(TARGET)
  37. ifeq ($(ARCH), lin)
  38. LD_LIBRARY_PATH=dep/lib ./$<
  39. endif
  40. ifeq ($(ARCH), mac)
  41. DYLD_FALLBACK_LIBRARY_PATH=dep/lib ./$<
  42. endif
  43. ifeq ($(ARCH), win)
  44. # TODO get rid of the mingw64 path
  45. env PATH=dep/bin:/mingw64/bin ./$<
  46. endif
  47. clean:
  48. rm -rfv $(TARGET) build dist
  49. # For Windows resources
  50. %.res: %.rc
  51. windres $^ -O coff -o $@
  52. include compile.mk
  53. dist: all
  54. ifndef VERSION
  55. $(error VERSION is not set.)
  56. endif
  57. mkdir -p dist/Rack
  58. mkdir -p dist/Rack/plugins
  59. cp -R LICENSE* res dist/Rack/
  60. ifeq ($(ARCH), lin)
  61. cp Rack Rack.sh dist/Rack/
  62. cp dep/lib/libsamplerate.so.0 dist/Rack/
  63. cp dep/lib/libjansson.so.4 dist/Rack/
  64. cp dep/lib/libGLEW.so.2.1 dist/Rack/
  65. cp dep/lib/libglfw.so.3 dist/Rack/
  66. cp dep/lib/libcurl.so.4 dist/Rack/
  67. cp dep/lib/libzip.so.5 dist/Rack/
  68. cp dep/lib/libportaudio.so.2 dist/Rack/
  69. cp dep/lib/libportmidi.so dist/Rack/
  70. endif
  71. ifeq ($(ARCH), mac)
  72. mkdir -p $(BUNDLE)
  73. mkdir -p $(BUNDLE)/Contents
  74. mkdir -p $(BUNDLE)/Contents/Resources
  75. cp Info.plist $(BUNDLE)/Contents/
  76. mkdir -p $(BUNDLE)/Contents/MacOS
  77. cp Rack $(BUNDLE)/Contents/MacOS/
  78. cp icon.icns $(BUNDLE)/Contents/Resources/
  79. otool -L $(BUNDLE)/Contents/MacOS/Rack
  80. cp dep/lib/libGLEW.2.1.0.dylib $(BUNDLE)/Contents/MacOS/
  81. cp dep/lib/libglfw.3.dylib $(BUNDLE)/Contents/MacOS/
  82. cp dep/lib/libjansson.4.dylib $(BUNDLE)/Contents/MacOS/
  83. cp dep/lib/libsamplerate.0.dylib $(BUNDLE)/Contents/MacOS/
  84. cp dep/lib/libcurl.4.dylib $(BUNDLE)/Contents/MacOS/
  85. cp dep/lib/libzip.5.dylib $(BUNDLE)/Contents/MacOS/
  86. cp dep/lib/libportaudio.2.dylib $(BUNDLE)/Contents/MacOS/
  87. cp dep/lib/libportmidi.dylib $(BUNDLE)/Contents/MacOS/
  88. install_name_tool -change /usr/local/lib/libGLEW.2.1.0.dylib @executable_path/libGLEW.2.1.0.dylib $(BUNDLE)/Contents/MacOS/Rack
  89. install_name_tool -change lib/libglfw.3.dylib @executable_path/libglfw.3.dylib $(BUNDLE)/Contents/MacOS/Rack
  90. install_name_tool -change $(PWD)/dep/lib/libjansson.4.dylib @executable_path/libjansson.4.dylib $(BUNDLE)/Contents/MacOS/Rack
  91. install_name_tool -change $(PWD)/dep/lib/libsamplerate.0.dylib @executable_path/libsamplerate.0.dylib $(BUNDLE)/Contents/MacOS/Rack
  92. install_name_tool -change $(PWD)/dep/lib/libcurl.4.dylib @executable_path/libcurl.4.dylib $(BUNDLE)/Contents/MacOS/Rack
  93. install_name_tool -change $(PWD)/dep/lib/libzip.5.dylib @executable_path/libzip.5.dylib $(BUNDLE)/Contents/MacOS/Rack
  94. install_name_tool -change $(PWD)/dep/lib/libportaudio.2.dylib @executable_path/libportaudio.2.dylib $(BUNDLE)/Contents/MacOS/Rack
  95. install_name_tool -change @rpath/libportmidi.dylib @executable_path/libportmidi.dylib $(BUNDLE)/Contents/MacOS/Rack
  96. otool -L $(BUNDLE)/Contents/MacOS/Rack
  97. cp -R Rack.app dist/Rack/
  98. endif
  99. ifeq ($(ARCH), win)
  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/libportmidi.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. endif
  114. # Fundamental
  115. $(MAKE) -C plugins/Fundamental dist
  116. cp -R plugins/Fundamental/dist/Fundamental dist/Rack/plugins/
  117. ifeq ($(ARCH), mac)
  118. cd dist && ln -s /Applications Applications
  119. cd dist && hdiutil create -srcfolder . -volname Rack -ov -format UDZO Rack-$(VERSION)-$(ARCH).dmg
  120. else
  121. cd dist && zip -5 -r Rack-$(VERSION)-$(ARCH).zip Rack
  122. endif