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

« back to all changes in this revision

Viewing changes to Tomboy/Plugins/Makefile.am

Tags: upstream-0.3.1
ImportĀ upstreamĀ versionĀ 0.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
CSC = mcs -g
 
3
 
 
4
CSFLAGS =               \
 
5
        -target:library \
 
6
        -define:DEBUG 
 
7
 
 
8
ASSEMBLIES =                                    \
 
9
        $(TOMBOY_LIBS)                          \
 
10
        -r:Mono.Posix                           \
 
11
        $(DBUS_LIBS)                            \
 
12
        -r:$(top_builddir)/Tomboy/Tomboy.exe
 
13
 
 
14
 
 
15
#
 
16
# Printing plugin
 
17
#
 
18
 
 
19
PRINT_TARGET = PrintNotes.dll
 
20
PRINT_CSFILES = $(srcdir)/PrintNotes.cs
 
21
PRINT_RESOURCES =
 
22
 
 
23
$(PRINT_TARGET): $(PRINT_CSFILES) $(top_builddir)/Tomboy/Tomboy.exe
 
24
        $(CSC) -o $@ $(CSFLAGS) $(ASSEMBLIES) $(PRINT_CSFILES) $(PRINT_RESOURCES)
 
25
 
 
26
 
 
27
#
 
28
# Export to HTML plugin
 
29
#
 
30
 
 
31
EXPORT_TARGET = ExportToHTML.dll
 
32
EXPORT_CSFILES = $(srcdir)/ExportToHTML.cs
 
33
EXPORT_RESOURCES =
 
34
 
 
35
$(EXPORT_TARGET): $(EXPORT_CSFILES) $(top_builddir)/Tomboy/Tomboy.exe
 
36
        $(CSC) -o $@ $(CSFLAGS) $(ASSEMBLIES) $(EXPORT_CSFILES) $(EXPORT_RESOURCES)
 
37
 
 
38
 
 
39
pluginsdir = $(pkglibdir)/Plugins
 
40
plugins_DATA =                  \
 
41
        $(PRINT_TARGET)
 
42
 
 
43
### Not ready yet...
 
44
###     $(EXPORT_TARGET)
 
45
 
 
46
 
 
47
EXTRA_DIST =                    \
 
48
        $(EXPORT_CSFILES)       \
 
49
        $(PRINT_CSFILES)
 
50
 
 
51
CLEANFILES =                    \
 
52
        $(EXPORT_TARGET)        \
 
53
        $(PRINT_TARGET)