~ubuntu-branches/ubuntu/lucid/tomboy/lucid-proposed

« back to all changes in this revision

Viewing changes to Tomboy/Addins/Tasque/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge, Jo Shields, Sebastian Dröge
  • Date: 2009-03-06 11:02:03 UTC
  • mfrom: (1.2.1 upstream)
  • mto: (4.2.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20090306110203-5nbuw7itgo5mn9e0
Tags: 0.12.2-3
[ Jo Shields ]
* debian/control:
  + Add Vcs-* fields

[ Sebastian Dröge ]
* Upload to unstable (Closes: #518414).
* debian/control:
  + Use Gnome# 2.20 for now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(top_srcdir)/Makefile.include
 
2
 
 
3
CSFLAGS =               \
 
4
        -debug          \
 
5
        -define:DEBUG   \
 
6
        -target:library
 
7
 
 
8
ASSEMBLIES =                                    \
 
9
        $(LINK_TOMBOY_EXE)                      \
 
10
        $(TOMBOY_LIBS)                          \
 
11
        $(LINK_MONO_ADDINS)                     \
 
12
        $(DBUS_LIBS)                            \
 
13
        -r:Mono.Posix
 
14
 
 
15
#       -r:/home/boyd/stage/tasque/lib/tasque/Tasque.exe
 
16
 
 
17
ADDIN_NAME = Tasque
 
18
TARGET = $(ADDIN_NAME).Addin.dll
 
19
CSFILES = \
 
20
        $(srcdir)/TasqueNoteAddin.cs \
 
21
        $(srcdir)/RemoteControl.cs
 
22
RESOURCES = \
 
23
        -resource:$(srcdir)/$(ADDIN_NAME).addin.xml \
 
24
        -resource:$(srcdir)/tasque-22.png,tasque.png
 
25
 
 
26
$(TARGET).mdb: $(TARGET)
 
27
 
 
28
$(TARGET): $(CSFILES) $(top_builddir)/Tomboy/Tomboy.exe
 
29
        $(CSC) -out:$@ $(CSFLAGS) $(ASSEMBLIES) $(CSFILES) $(RESOURCES)
 
30
 
 
31
 
 
32
addinsdir = $(pkglibdir)/addins
 
33
addins_DATA =                   \
 
34
        $(TARGET)               \
 
35
        $(TARGET).mdb
 
36
 
 
37
EXTRA_DIST =                    \
 
38
        $(CSFILES) \
 
39
        $(srcdir)/$(ADDIN_NAME).addin.xml \
 
40
        $(srcdir)/tasque-22.png
 
41
 
 
42
CLEANFILES =                            \
 
43
        $(TARGET).mdb \
 
44
        $(TARGET)
 
45