aboutsummaryrefslogtreecommitdiffhomepage
path: root/makefile
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2017-06-01 01:34:25 +0200
committercbdev <cb@cbcdn.com>2017-06-01 01:34:25 +0200
commit19fd0404ba636ff5f67cbf218d175ccbef29579a (patch)
tree7d5483104a0f338b6bf92ca962b5ba61d8310c20 /makefile
parentd841f9243c97c1d6fb61946b780c8959897af69b (diff)
downloadmidimonster-19fd0404ba636ff5f67cbf218d175ccbef29579a.tar.gz
midimonster-19fd0404ba636ff5f67cbf218d175ccbef29579a.tar.bz2
midimonster-19fd0404ba636ff5f67cbf218d175ccbef29579a.zip
Add backend files
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)