From 5179ace697f702d7103c9aa6e26478363e0f6a4d Mon Sep 17 00:00:00 2001 From: rcerc <88944439+rcerc@users.noreply.github.com> Date: Thu, 19 Jun 2025 16:39:47 -0400 Subject: Rudimentary streaming of raw MIDI over multicast UDP --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 $@ $^ -- cgit v1.2.3