~do-plugins/do-plugins/trunk

« back to all changes in this revision

Viewing changes to Tasque/Makefile.am

  • Committer: Christopher James Halse Rogers
  • Date: 2008-04-03 22:32:04 UTC
  • mto: This revision was merged to the branch mainline in revision 87.
  • Revision ID: chalserogers@gmail.com-20080403223204-yh7zudzdzs3xwi7r
Revert deleted GNOME-Screenshot, GNOME-Terminal, GmailContactItemSource, and Tasque plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
EXTRA_DIST = Tasque.cs \
 
2
             TasqueAction.cs \
 
3
             TasqueCategoryItem.cs \
 
4
             TasqueDBus.cs
 
5
             
 
6
ASSEMBLY_NAME=Tasque
 
7
ASSEMBLY=$(ASSEMBLY_NAME).dll
 
8
 
 
9
CSFLAGS+= -debug+ -debug:full
 
10
 
 
11
CLEANFILES = $(ASSEMBLY){,.mdb}
 
12
 
 
13
tasque_references = $(DO_ADDINS_LIBS) -r:System -r:Mono.Posix $(NDESK_DBUS_LIBS) $(GCONF_SHARP_LIBS)
 
14
 
 
15
tasque_sources  =       Tasque.cs \
 
16
                        TasqueAction.cs \
 
17
                        TasqueCategoryItem.cs \
 
18
                        TasqueDBus.cs
 
19
 
 
20
tasque_build_sources = $(addprefix $(srcdir)/, $(tasque_sources))
 
21
 
 
22
plugin_DATA = $(ASSEMBLY)
 
23
 
 
24
all: $(ASSEMBLY)
 
25
 
 
26
$(ASSEMBLY): $(tasque_build_sources)
 
27
        $(CSC) $(CSFLAGS) $(tasque_references) -target:library -out:$@ $(tasque_build_sources)