diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,8 +1,8 @@ LDLIBS = -lasound CFLAGS = -g -Wall -BACKENDS = artnet.o midi.o -OBJS = $(BACKENDS) +BACKENDS = artnet.o midi.o osc.o +OBJS = config.o backend.o $(BACKENDS) midimonster: midimonster.h $(OBJS) @@ -11,3 +11,6 @@ all: midimonster clean: $(RM) midimonster $(RM) $(OBJS) + +run: + valgrind --leak-check=full --show-leak-kinds=all ./midimonster |