~cszikszoy/do-plugins/google-map

« back to all changes in this revision

Viewing changes to Vinagre/Makefile.am

  • Committer: Alex Launi
  • Date: 2008-04-03 16:42:36 UTC
  • mfrom: (85 do-plugins)
  • mto: This revision was merged to the branch mainline in revision 87.
  • Revision ID: alex.launi@gmail.com-20080403164236-6ut2l710phmv92o5
clean up

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)