diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-11-04 05:25:10 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-11-04 05:25:10 +0100 |
commit | f5e8f70a7aaab571e1136e2eb789e3c1ebdc26f6 (patch) | |
tree | 827abc2ccf52626a418d271c32fbac802667f85b /Makefile | |
parent | 4f800f22dcf18830a53bc8e736c51e4e7707b4a2 (diff) | |
download | applause2-f5e8f70a7aaab571e1136e2eb789e3c1ebdc26f6.tar.gz |
added simple support for MIDI CC commands
* MIDICCStream provides a stream of CC values as if
polled from the controller (this is emulated in
applause.c)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -19,7 +19,8 @@ JACK_CFLAGS := $(shell pkg-config --cflags jack) JACK_LDFLAGS := $(shell pkg-config --libs jack) CFLAGS += $(LUA_CFLAGS) $(READLINE_CFLAGS) $(JACK_CFLAGS) -LDFLAGS += $(LUA_LDFLAGS) $(READLINE_LDFLAGS) $(JACK_LDFLAGS) +LDFLAGS += $(LUA_LDFLAGS) $(READLINE_LDFLAGS) $(JACK_LDFLAGS) \ + -lpthread all : applause |