-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (34 loc) · 1.38 KB
/
Makefile
File metadata and controls
41 lines (34 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# If RACK_DIR is not defined when calling the Makefile, default to two directories above
RACK_DIR ?= ../Rack-SDK
# FLAGS will be passed to both the C and C++ compiler
FLAGS +=
CFLAGS +=
CXXFLAGS +=
# Careful about linking to shared libraries, since you can't assume much about the user's environment and library search path.
# Static libraries are fine, but they should be added to this plugin's build system.
LDFLAGS +=
# Add .cpp files to the build
SOURCES += $(wildcard src/*.cpp)
# Add files to the ZIP package when running `make dist`
# The compiled plugin and "plugin.json" are automatically added.
DISTRIBUTABLES += res
DISTRIBUTABLES += $(wildcard LICENSE*)
DISTRIBUTABLES += $(wildcard presets)
DISTRIBUTABLES += README.md
# Include the Rack plugin Makefile framework
include $(RACK_DIR)/plugin.mk
# Installation directories for VCV Rack 2
PLUGIN_SLUG := $(shell jq -r .slug plugin.json)
ifeq ($(ARCH_OS),mac)
RACK_PLUGINS_DIR ?= $(HOME)/Library/Application Support/Rack2/plugins-mac-$(ARCH_CPU)
else ifeq ($(ARCH_OS),win)
RACK_PLUGINS_DIR ?= $(USERPROFILE)/Documents/Rack2/plugins-win-$(ARCH_CPU)
else
RACK_PLUGINS_DIR ?= $(HOME)/.Rack2/plugins-lin-$(ARCH_CPU)
endif
.PHONY: install
install: dist
mkdir -p "$(RACK_PLUGINS_DIR)"
rm -rf "$(RACK_PLUGINS_DIR)/$(PLUGIN_SLUG)"
cp -r dist/$(PLUGIN_SLUG) "$(RACK_PLUGINS_DIR)/"
@echo "Installed $(PLUGIN_SLUG) to $(RACK_PLUGINS_DIR)"