aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--artnet.c0
-rw-r--r--artnet.h0
-rw-r--r--makefile6
-rw-r--r--midi.c0
-rw-r--r--midi.h0
5 files changed, 6 insertions, 0 deletions
diff --git a/artnet.c b/artnet.c
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/artnet.c
diff --git a/artnet.h b/artnet.h
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/artnet.h
diff --git a/makefile b/makefile
index 81ab1d3..dbef918 100644
--- a/makefile
+++ b/makefile
@@ -1,7 +1,13 @@
LDLIBS = -lasound
CFLAGS = -g -Wall
+BACKENDS = artnet.o midi.o
+OBJS = $(BACKENDS)
+
+midimonster: midimonster.h $(OBJS)
+
all: midimonster
clean:
$(RM) midimonster
+ $(RM) $(OBJS)
diff --git a/midi.c b/midi.c
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/midi.c
diff --git a/midi.h b/midi.h
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/midi.h