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.

plugin.mk 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. ifndef RACK_DIR
  2. $(error RACK_DIR is not defined)
  3. endif
  4. SLUG := $(shell jq -r .slug plugin.json)
  5. VERSION := $(shell jq -r .version plugin.json)
  6. ifndef SLUG
  7. $(error SLUG could not be found in manifest)
  8. endif
  9. ifndef VERSION
  10. $(error VERSION could not be found in manifest)
  11. endif
  12. DISTRIBUTABLES += plugin.json
  13. FLAGS += -fPIC
  14. FLAGS += -I$(RACK_DIR)/include -I$(RACK_DIR)/dep/include
  15. LDFLAGS += -shared
  16. # Plugins must link to libRack because when Rack is used as a plugin of another application, its symbols are not available to subsequently loaded shared libraries.
  17. LDFLAGS += -L$(RACK_DIR) -lRack
  18. include $(RACK_DIR)/arch.mk
  19. TARGET := plugin
  20. ifdef ARCH_LIN
  21. TARGET := $(TARGET).so
  22. # This prevents static variables in the DSO (dynamic shared object) from being preserved after dlclose().
  23. FLAGS += -fno-gnu-unique
  24. # When Rack loads a plugin, it symlinks /tmp/Rack2 to its system dir, so the plugin can link to libRack.
  25. LDFLAGS += -Wl,-rpath=/tmp/Rack2
  26. # Since the plugin's compiler could be a different version than Rack's compiler, link libstdc++ and libgcc statically to avoid ABI issues.
  27. LDFLAGS += -static-libstdc++ -static-libgcc
  28. RACK_USER_DIR ?= $(HOME)/.Rack2
  29. endif
  30. ifdef ARCH_MAC
  31. TARGET := $(TARGET).dylib
  32. LDFLAGS += -undefined dynamic_lookup
  33. RACK_USER_DIR ?= $(HOME)/Documents/Rack2
  34. endif
  35. ifdef ARCH_WIN
  36. TARGET := $(TARGET).dll
  37. LDFLAGS += -static-libstdc++
  38. RACK_USER_DIR ?= $(USERPROFILE)/Documents/Rack2
  39. endif
  40. PLUGINS_DIR := $(RACK_USER_DIR)/plugins
  41. ifndef ARCH_X64
  42. # On non-x64, append CPU name to plugins dir
  43. PLUGINS_DIR := $(PLUGINS_DIR)-$(ARCH_CPU)
  44. endif
  45. DEP_FLAGS += -fPIC
  46. include $(RACK_DIR)/dep.mk
  47. all: $(TARGET)
  48. include $(RACK_DIR)/compile.mk
  49. clean:
  50. rm -rfv build $(TARGET) dist
  51. ZSTD_COMPRESSION_LEVEL ?= 19
  52. dist: all
  53. rm -rf dist
  54. mkdir -p dist/$(SLUG)
  55. @# Strip and copy plugin binary
  56. cp $(TARGET) dist/$(SLUG)/
  57. ifdef ARCH_MAC
  58. $(STRIP) -S dist/$(SLUG)/$(TARGET)
  59. $(INSTALL_NAME_TOOL) -change libRack.dylib /tmp/Rack2/libRack.dylib dist/$(SLUG)/$(TARGET)
  60. $(OTOOL) -L dist/$(SLUG)/$(TARGET)
  61. else
  62. $(STRIP) -s dist/$(SLUG)/$(TARGET)
  63. endif
  64. @# Copy distributables
  65. ifdef ARCH_MAC
  66. rsync -rR $(DISTRIBUTABLES) dist/$(SLUG)/
  67. else
  68. cp -r --parents $(DISTRIBUTABLES) dist/$(SLUG)/
  69. endif
  70. @# Create ZIP package
  71. cd dist && tar -c $(SLUG) | zstd -$(ZSTD_COMPRESSION_LEVEL) -o "$(SLUG)"-"$(VERSION)"-$(ARCH_NAME).vcvplugin
  72. install: dist
  73. mkdir -p "$(PLUGINS_DIR)"
  74. cp dist/*.vcvplugin "$(PLUGINS_DIR)"/
  75. .PHONY: clean dist
  76. .DEFAULT_GOAL := all