diff options
author | rcerc <88944439+rcerc@users.noreply.github.com> | 2025-06-19 16:39:47 -0400 |
---|---|---|
committer | rcerc <88944439+rcerc@users.noreply.github.com> | 2025-06-19 18:20:38 -0400 |
commit | 5179ace697f702d7103c9aa6e26478363e0f6a4d (patch) | |
tree | 92c3b9393f3ea2d197400368cf106ffa89f14c6b /Makefile |
Rudimentary streaming of raw MIDI over multicast UDP
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..203d5d0 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +CFLAGS = -Wall -Wextra -Werror + +.PHONY: all install + +all: ${out}/bin/midimcast-client ${out}/bin/midimcast-server + +install: all + +${out}/bin/midimcast-client: ${src}/midimcast-client.c ${src}/midimcast.c + mkdir -p ${out}/bin + ${CC} ${CFLAGS} -o $@ $^ + +${out}/bin/midimcast-server: ${src}/midimcast-server.c ${src}/midimcast.c + mkdir -p ${out}/bin + ${CC} ${CFLAGS} -lasound -o $@ $^ |