To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / Makefile @ 5:7fde3cc109dc

History | View | Annotate | Download (216 Bytes)

1

    
2
all:		midifile libmidireader.a
3

    
4
LIB_OBJECTS	:= MIDIFileReader.o
5
OBJECTS		:= $(LIB_OBJECTS) main.o
6

    
7
midifile:	$(OBJECTS)
8
		$(CXX) -o $@ $^
9

    
10
libmidireader.a:	$(LIB_OBJECTS)
11
		$(AR) cr $@ $^
12

    
13
clean:		
14
		rm $(OBJECTS)
15