-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
71 lines (56 loc) · 1.7 KB
/
Makefile
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
RACK_DIR ?= ../..
ifdef BUILD_DEBUG
FLAGS += -O0
else
FLAGS += -O3
FLAGS += -DNDEBUG
endif
SOURCES += src/colors.cpp
SOURCES += src/em_device.cpp
SOURCES += src/em_midi.cpp
SOURCES += src/em_types/em_pedal.cpp
SOURCES += src/em_types/em_rounding.cpp
SOURCES += src/em_types/em_tuning.cpp
SOURCES += src/he_group.cpp
SOURCES += src/misc.cpp
SOURCES += src/module_broker.cpp
SOURCES += src/open_file.cpp
SOURCES += src/plugin.cpp
SOURCES += src/preset_meta.cpp
SOURCES += src/presets.cpp
SOURCES += src/text.cpp
SOURCES += src/widgets/components.cpp
SOURCES += src/widgets/port.cpp
SOURCES += src/widgets/preset_widget.cpp
SOURCES += src/widgets/small_push.cpp
SOURCES += src/widgets/vert_slider.cpp
SOURCES += src/HC-1/midi_input_worker.cpp
SOURCES += src/HC-1/init_phase.cpp
SOURCES += src/HC-1/HC-1.cpp
SOURCES += src/HC-1/HC-1-draw.cpp
SOURCES += src/HC-1/HC-1-menu.cpp
SOURCES += src/HC-1/HC-1-midi.cpp
SOURCES += src/HC-1/HC-1-midi-out.cpp
SOURCES += src/HC-1/HC-1-presets.cpp
SOURCES += src/HC-1/HC-1-process.cpp
SOURCES += src/HC-1/HC-1-ui.cpp
SOURCES += src/HC-2/HC-2.cpp
SOURCES += src/HC-2/HC-2-ui.cpp
SOURCES += src/HC-2/cc_map_widget.cpp
SOURCES += src/Favorites/Favorites.cpp
SOURCES += src/Favorites/Favorites-ui.cpp
#SOURCES += src/HC-4/HC-4.cpp
#SOURCES += src/HC-4/HC-4-ui.cpp
SOURCES += src/Pedals/Pedals.cpp
SOURCES += src/Pedals/Pedals-ui.cpp
SOURCES += src/Round/Round.cpp
SOURCES += src/Round/Round-ui.cpp
SOURCES += src/Compress/Compress.cpp
SOURCES += src/Compress/Compress-ui.cpp
SOURCES += src/Tilt/Tilt.cpp
SOURCES += src/Tilt/Tilt-ui.cpp
DISTRIBUTABLES += res
# DISTRIBUTABLES += presets
# DISTRIBUTABLES += selections
# Include the VCV Rack plugin Makefile framework
include $(RACK_DIR)/plugin.mk