blob: ec5238e518550c339f0f4f6b08d72b46fee23ee4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
LDLIBS = -lasound
CFLAGS = -g -Wall
BACKENDS = artnet.o midi.o osc.o
OBJS = config.o backend.o $(BACKENDS)
midimonster: midimonster.h $(OBJS)
all: midimonster
clean:
$(RM) midimonster
$(RM) $(OBJS)
run:
valgrind --leak-check=full --show-leak-kinds=all ./midimonster
|