diff options
author | cbdev <cb@cbcdn.com> | 2017-06-01 01:34:25 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2017-06-01 01:34:25 +0200 |
commit | 19fd0404ba636ff5f67cbf218d175ccbef29579a (patch) | |
tree | 7d5483104a0f338b6bf92ca962b5ba61d8310c20 | |
parent | d841f9243c97c1d6fb61946b780c8959897af69b (diff) | |
download | midimonster-19fd0404ba636ff5f67cbf218d175ccbef29579a.tar.gz midimonster-19fd0404ba636ff5f67cbf218d175ccbef29579a.tar.bz2 midimonster-19fd0404ba636ff5f67cbf218d175ccbef29579a.zip |
Add backend files
-rw-r--r-- | artnet.c | 0 | ||||
-rw-r--r-- | artnet.h | 0 | ||||
-rw-r--r-- | makefile | 6 | ||||
-rw-r--r-- | midi.c | 0 | ||||
-rw-r--r-- | midi.h | 0 |
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 @@ -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) |