~ubuntu-branches/ubuntu/hardy/do-plugins/hardy

« back to all changes in this revision

Viewing changes to Launchpad/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2008-03-15 13:06:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080315130635-jg1g6fbllv1sfjsx
Tags: 0.4.0-0ubuntu1
* New upstream release
* debian/watch:
  + Update for new Launchpad address
* debian/rules:
  + Don't build the Banshee plugin - it interferes with the normal running
    of Banshee
* debian/gnome-do-plugins.install:
  + Update for new plugins

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS=src Resources
 
2
 
 
3
ASSEMBLY_NAME=Launchpad
 
4
ASSEMBLY=$(ASSEMBLY_NAME).dll
 
5
 
 
6
CSFLAGS+= -debug+ -debug:full
 
7
 
 
8
CLEANFILES = $(ASSEMBLY){,.mdb}
 
9
 
 
10
launchpad_references = $(DO_ADDINS_LIBS) $(DO_LIBS) -r:Mono.Posix.dll -r:System
 
11
 
 
12
launchpad_sources =  \
 
13
        AssemblyInfo.cs \
 
14
        LaunchpadCodeItem.cs \
 
15
        LaunchpadBugsItem.cs \
 
16
        LaunchpadBlueprintsItem.cs \
 
17
        LaunchpadIcons.cs \
 
18
        LaunchpadRegisterItem.cs \
 
19
        LaunchpadAction.cs \
 
20
        LaunchpadTranslationsItem.cs \
 
21
        LaunchpadAnswersItem.cs \
 
22
        LaunchpadPersonItem.cs \
 
23
        LaunchpadProjectItem.cs
 
24
 
 
25
launchpad_resources = \
 
26
        Resources/LaunchpadBlueprints.png \
 
27
        Resources/LaunchpadBugs.png \
 
28
        Resources/LaunchpadCode.png \
 
29
        Resources/LaunchpadRegister.png \
 
30
        Resources/LaunchpadTranslations.png \
 
31
        Resources/Launchpad.png \
 
32
        Resources/LaunchpadAnswers.png \
 
33
        Resources/LaunchpadUser.png
 
34
 
 
35
plugin_DATA = $(ASSEMBLY)
 
36
 
 
37
launchpad_build_sources = $(addprefix $(srcdir)/src/, $(launchpad_sources))
 
38
 
 
39
all: $(ASSEMBLY)
 
40
 
 
41
 
 
42
launchpad_resource_args = $(addprefix -resource:$(srcdir)/, $(launchpad_resources))
 
43
 
 
44
$(ASSEMBLY): $(launchpad_build_sources)
 
45
        $(CSC) $(CSFLAGS) $(launchpad_references) $(launchpad_resource_args) -target:library -out:$@ $(launchpad_build_sources)