-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
rack.mk
89 lines (71 loc) · 2.37 KB
/
rack.mk
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#
# A build file to help using sfizz with the VCV Rack SDK
# ------------------------------------------------------
#
# Usage notes:
#
# 1. In the `dep` subfolder of your plugin folder,
#
# Check out the sfizz source code as a submodule
#
# git submodule add https://github.com/sfztools/sfizz.git
#
# 2. At the root of your plugin folder,
#
# Add the following lines, at the bottom of `Makefile`:
#
# # Include the sfizz library
# include dep/sfizz/rack.mk
# CFLAGS += $(SFIZZ_C_FLAGS)
# CXXFLAGS += $(SFIZZ_CXX_FLAGS)
# LDFLAGS += $(SFIZZ_LINK_FLAGS)
# $(TARGET): $(SFIZZ_TARGET)
#
# 3. In the file `Makefile`,
#
# Above the line `include dep/sfizz/rack.mk`, some configuration variables
# may be customized.
#
# SFIZZ_RACK_PLUGIN_DIR = <the root directory of the Rack plugin>
# SFIZZ_PKG_CONFIG = <a custom pkg-config command>
# SFIZZ_USE_SNDFILE = <0 disabled, 1 enabled (default)>
# SFIZZ_SNDFILE_C_FLAGS = <compiler flags of sndfile for C>
# SFIZZ_SNDFILE_CXX_FLAGS = <compiler flags of sndfile for C++>
# SFIZZ_SNDFILE_LINK_FLAGS = <linker flags of sndfile>
ifndef RACK_DIR
$(error sfizz: We are not invoked from the Rack SDK)
endif
SFIZZ_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
SFIZZ_RACK_PLUGIN_DIR ?= .
ifneq ($(shell test -f $(SFIZZ_RACK_PLUGIN_DIR)/plugin.json && echo 1),1)
$(error sfizz: This is not a Rack plugin directory)
endif
SFIZZ_BUILD_DIR := $(SFIZZ_RACK_PLUGIN_DIR)/build/sfizz
include $(SFIZZ_DIR)/common.mk
###
SFIZZ_TARGET := $(SFIZZ_BUILD_DIR)/libsfizz.a
###
SFIZZ_OBJECTS = $(SFIZZ_SOURCES:%=$(SFIZZ_BUILD_DIR)/%.o)
$(SFIZZ_BUILD_DIR)/libsfizz.a: $(SFIZZ_OBJECTS)
-@mkdir -p $(dir $@)
$(AR) crs $@ $^
###
ifeq ($(SFIZZ_CPU_I386_OR_X86_64),1)
$(SFIZZ_BUILD_DIR)/%SSE.cpp.o: $(SFIZZ_DIR)/%SSE.cpp
-@mkdir -p $(dir $@)
$(CXX) $(CXXFLAGS) $(CXXFLAGS) -msse2 -c -o $@ $<
$(SFIZZ_BUILD_DIR)/%AVX.cpp.o: $(SFIZZ_DIR)/%AVX.cpp
-@mkdir -p $(dir $@)
$(CXX) $(CXXFLAGS) $(CXXFLAGS) -mavx -c -o $@ $<
endif
###
$(SFIZZ_BUILD_DIR)/%.cpp.o: $(SFIZZ_DIR)/%.cpp
-@mkdir -p $(dir $@)
$(CXX) $(CXXFLAGS) $(CXXFLAGS) -c -o $@ $<
$(SFIZZ_BUILD_DIR)/%.cc.o: $(SFIZZ_DIR)/%.cc
-@mkdir -p $(dir $@)
$(CXX) $(CXXFLAGS) $(CXXFLAGS) -c -o $@ $<
$(SFIZZ_BUILD_DIR)/%.c.o: $(SFIZZ_DIR)/%.c
-@mkdir -p $(dir $@)
$(CC) $(CFLAGS) $(CFLAGS) -c -o $@ $<
-include $(SFIZZ_OBJECTS:%.o=%.d)