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=Banshee.mdp
ASSEMBLY_NAME=Banshee
ASSEMBLY=$(ASSEMBLY_NAME).dll
CSFLAGS+= -debug+ -debug:full
CLEANFILES = $(ASSEMBLY){,.mdb}
banshee_references = $(DO_ADDINS_LIBS) $(NDESK_DBUS_LIBS) -r:Mono.Data.Sqlite \
-r:System.Data
banshee_sources = \
AssemblyInfo.cs \
Banshee.cs \
BansheeItems.cs \
BansheeAction.cs \
BansheeDBus.cs \
BansheeItemSource.cs
banshee_build_sources = $(addprefix $(srcdir)/src/, $(banshee_sources))
plugin_DATA = $(ASSEMBLY)
all: $(ASSEMBLY)
$(ASSEMBLY): $(banshee_build_sources)
$(CSC) $(CSFLAGS) $(banshee_references) -target:library -out:$@ $(banshee_build_sources)
|