1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
include $(top_srcdir)/build.rules.mk
ASSEMBLY=Rhythmbox
FILES = \
src/MusicItems.cs \
src/Rhythmbox.cs \
src/EnqueueAction.cs \
src/RhythmboxItems.cs \
src/PlayAction.cs \
src/MusicItemSource.cs \
src/AbstractPlaybackAction.cs \
src/NextAction.cs \
src/PauseAction.cs \
src/PreviousAction.cs \
src/PlayItemAction.cs
RESOURCES = \
Resources/Rhythmbox.addin.xml
REFERENCES = \
System \
System.Core \
System.Xml \
$(GTK_SHARP_20_LIBS) \
$(DO_PLATFORM_LIBS) \
$(DO_UNIVERSE_LIBS)
|