forked from jjbbllkk/Acid-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (19 loc) · 895 Bytes
/
Copy pathMakefile
File metadata and controls
28 lines (19 loc) · 895 Bytes
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
# The path to the Rack SDK (defaults to two levels up)
RACK_DIR ?= ../..
# FLAGS -----------------------------------------------------------------------
# Add the 'src/open303' folder to the include path so we can find headers
CXXFLAGS += -I./src/open303
# SOURCES ---------------------------------------------------------------------
# 1. The new standard plugin file (handles registration & versioning)
SOURCES += src/plugin.cpp
# 2. Your module logic
SOURCES += src/AcidusVersio.cpp
# 3. All the synth engine files
SOURCES += $(wildcard src/open303/*.cpp)
# DISTRIBUTABLES --------------------------------------------------------------
# Files to include in the final plugin package
DISTRIBUTABLES += res
DISTRIBUTABLES += $(wildcard LICENSE*)
DISTRIBUTABLES += plugin.json
# INCLUDE RACK FRAMEWORK ------------------------------------------------------
include $(RACK_DIR)/plugin.mk