~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to Pidgin/Makefile.am

  • Committer: Jacob Andreas
  • Date: 2008-03-22 08:57:20 UTC
  • mfrom: (72.1.1 do-plugins)
  • Revision ID: jacob@ada-20080322085720-4e201gtyw90unrtp
added Twitter plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS=src
 
2
 
 
3
ASSEMBLY_NAME=Pidgin
 
4
 
 
5
EXTRA_DIST=$(ASSEMBLY_NAME).mdp
 
6
 
 
7
ASSEMBLY=$(ASSEMBLY_NAME).dll
 
8
 
 
9
CSFLAGS+= -debug+ -debug:full
 
10
 
 
11
CLEANFILES = $(ASSEMBLY){,.mdb}
 
12
 
 
13
pidgin_references = $(DO_ADDINS_LIBS)
 
14
 
 
15
pidgin_sources  =       \
 
16
                        AssemblyInfo.cs \
 
17
                        PidginChatAction.cs \
 
18
                        PidginContactItemSource.cs \
 
19
                        PidginHandleContactDetailItem.cs \
 
20
                        Pidgin.cs
 
21
 
 
22
pidgin_build_sources = $(addprefix $(srcdir)/src/, $(pidgin_sources))
 
23
 
 
24
plugin_DATA = $(ASSEMBLY)
 
25
 
 
26
all: $(ASSEMBLY)
 
27
 
 
28
$(ASSEMBLY): $(pidgin_build_sources)
 
29
        $(CSC) $(CSFLAGS) $(pidgin_references) -pkg:gtk-sharp-2.0 -pkg:ndesk-dbus-1.0 -target:library -out:$@ $(pidgin_build_sources)