aboutsummaryrefslogtreecommitdiffhomepage
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 6 insertions, 0 deletions
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)