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 28 29 30
|
SUBDIRS=src
EXTRA_DIST=Rhythmbox.mdp
ASSEMBLY_NAME=Rhythmbox
ASSEMBLY=$(ASSEMBLY_NAME).dll
CSFLAGS+= -debug+ -debug:full
CLEANFILES = $(ASSEMBLY){,.mdb}
rhythmbox_references = $(DO_ADDINS_LIBS)
rhythmbox_sources = \
AssemblyInfo.cs \
Rhythmbox.cs \
RhythmboxItems.cs \
RhythmboxPlayAction.cs \
MusicItems.cs \
RhythmboxEnqueueAction.cs \
RhythmboxItemSource.cs
rhythmbox_build_sources = $(addprefix $(srcdir)/src/, $(rhythmbox_sources))
plugin_DATA = $(ASSEMBLY)
all: $(ASSEMBLY)
$(ASSEMBLY): $(rhythmbox_build_sources)
$(CSC) $(CSFLAGS) $(rhythmbox_references) -target:library -out:$@ $(rhythmbox_build_sources)
|