~do-plugins/do-plugins/trunk

« back to all changes in this revision

Viewing changes to Vinagre/Makefile.am

Merge non-b0rked GCal & Vinagre plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
EXTRA_DIST =    \
 
2
                        VNCHost.cs \
 
3
                        Vinagre.cs \
 
4
                        VNCHostSource.cs
 
5
 
 
6
 
 
7
ASSEMBLY_NAME=Vinagre
 
8
ASSEMBLY=$(ASSEMBLY_NAME).dll
 
9
 
 
10
CSFLAGS+= -debug+ -debug:full
 
11
 
 
12
CLEANFILES = $(ASSEMBLY){,.mdb}
 
13
 
 
14
vinagre_references = $(DO_ADDINS_LIBS) $(DO_LIBS) -r:System $(NDESK_DBUS_LIBS)
 
15
 
 
16
vinagre_sources  =      \
 
17
                        VNCHost.cs Vinagre.cs VNCHostSource.cs
 
18
 
 
19
vinagre_build_sources = $(addprefix $(srcdir)/, $(vinagre_sources))
 
20
 
 
21
plugin_DATA = $(ASSEMBLY)
 
22
 
 
23
all: $(ASSEMBLY)
 
24
 
 
25
$(ASSEMBLY): $(vinagre_sources)
 
26
        $(CSC) $(CSFLAGS) $(vinagre_references) -target:library -out:$@ $(vinagre_build_sources)