File: Makefile.am

package info (click to toggle)
gnome-do-plugins 0.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,272 kB
  • ctags: 868
  • sloc: cs: 4,634; sh: 632; makefile: 379
file content (30 lines) | stat: -rw-r--r-- 657 bytes parent folder | download
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)