aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--backends/midi.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 674d42c..cc73718 100644
--- a/Makefile
+++ b/Makefile
@@ -17,7 +17,6 @@ CFLAGS += -fvisibility=hidden
RCCFLAGS += -I./
core/%: CFLAGS += -I./
-midimonster: LDLIBS = -ldl
# Replace version string with current git-describe if possible
ifneq "$(GITVERSION)" ""
CFLAGS += -DMIDIMONSTER_VERSION=\"$(GITVERSION)\"
@@ -56,6 +55,7 @@ backends-full:
$(MAKE) -C backends full
# This rule can not be the default rule because OSX the target prereqs are not exactly the build prereqs
+midimonster: LDLIBS = -ldl
midimonster: midimonster.c portability.h $(CORE_OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $< $(CORE_OBJS) $(LDLIBS) -o $@
diff --git a/backends/midi.md b/backends/midi.md
index 6280205..ae03440 100644
--- a/backends/midi.md
+++ b/backends/midi.md
@@ -27,7 +27,7 @@ Each instance also provides a virtual port, so MIDI devices can also be connecte
The MIDI backend supports mapping different MIDI events to MIDIMonster channels. The currently supported event types are
* `cc` - Control Changes
-* `note` - Note On/Off messages
+* `note` - Note On/Off messages (also known as note velocity)
* `pressure` - Note pressure/aftertouch messages
* `aftertouch` - Channel-wide aftertouch messages
* `pitch` - Channel pitchbend messages