aboutsummaryrefslogtreecommitdiffhomepage
path: root/makefile
blob: dbef918171ab468638e78118f4d5dc97d7f3628f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
LDLIBS = -lasound
CFLAGS = -g -Wall

BACKENDS = artnet.o midi.o
OBJS = $(BACKENDS)

midimonster: midimonster.h $(OBJS)

all: midimonster

clean:
	$(RM) midimonster
	$(RM) $(OBJS)