~ubuntu-branches/ubuntu/jaunty/beagle/jaunty-security

« back to all changes in this revision

Viewing changes to firefox-extension/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-05-04 00:31:32 UTC
  • mfrom: (1.1.21 upstream)
  • Revision ID: james.westby@ubuntu.com-20080504003132-2tkm5o8moo5952ri
Tags: 0.3.7-2ubuntu1
 * Merge from Debian unstable. (LP: #225746) Remaining Ubuntu changes:
  - debian/control:
    + Rename ice{weasel,dove}-beagle to {mozilla,thunderbird}-beagle and
      and update the dependencies accordingly.
    + Change Maintainer to Ubuntu Mono Team.
  - debian/rules:
    + Install the mozilla-beagle and thunderbird-beagle extensions.
  - ice{dove,weasel}.dirs:
    + Renamed to {mozilla,thunderbird}-beagle.dirs.
    + Fixed paths to point to usr/lib/{firefox,thunderbird}

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
PROJECT = beagle
3
 
VERSION = 1.0.1
 
3
VERSION = 1.1.0
 
4
 
 
5
INSTALL_RDF = install.rdf
 
6
INSTALL_RDF_IN = $(INSTALL_RDF).in
 
7
VERSION_SED = sed -e "s|\@VERSION\@|$(VERSION)|g"
 
8
 
 
9
$(INSTALL_RDF) : $(INSTALL_RDF_IN)
 
10
        $(VERSION_SED) < $(srcdir)/$(INSTALL_RDF_IN) > $@
4
11
 
5
12
all: $(PROJECT).xpi
6
13
 
7
14
XPI_FILES =                     \
8
15
        chrome.manifest         \
9
16
        install.rdf             \
 
17
        \
10
18
        chrome/content/contents.rdf             \
11
 
        chrome/content/beagleOverlay.js \
 
19
        chrome/content/beagleOverlay.js         \
12
20
        chrome/content/beagleOverlay.xul        \
13
21
        chrome/content/beaglePrefs.js           \
14
22
        chrome/content/beaglePrefs.xul          \
15
23
        chrome/content/beagleAddFilter.xul      \
16
24
        chrome/content/beagleAddFilter.js       \
17
 
        chrome/content/indexLink.xul    \
18
 
        chrome/content/indexLink.js     \
19
 
        chrome/content/indexBookmark.js \
 
25
        chrome/content/beagleSearch.js          \
 
26
        chrome/content/indexLink.xul            \
 
27
        chrome/content/indexLink.js             \
 
28
        chrome/content/indexBookmark.js         \
 
29
        chrome/content/indexBookmark3.js                \
20
30
        chrome/content/md5.js                   \
21
 
        chrome/content/utils.js \
22
 
        chrome/content/i18n.js  \
23
 
        chrome/content/json.js  \
 
31
        chrome/content/utils.js                 \
 
32
        chrome/content/i18n.js                  \
 
33
        chrome/content/json.js                  \
 
34
        chrome/content/sidebar.xul              \
24
35
        \
25
36
        chrome/content/jslib/jslib.js           \
26
 
        chrome/content/jslib/modules.js \
 
37
        chrome/content/jslib/modules.js         \
27
38
        chrome/content/jslib/debug/debug.js     \
28
39
        chrome/content/jslib/io/dir.js          \
29
40
        chrome/content/jslib/io/dirUtils.js     \
30
 
        chrome/content/jslib/io/file.js \
 
41
        chrome/content/jslib/io/file.js         \
31
42
        chrome/content/jslib/io/fileUtils.js    \
32
43
        chrome/content/jslib/io/filesystem.js   \
33
44
        \
41
52
        \
42
53
        chrome/skin/classic/contents.rdf        \
43
54
        chrome/skin/classic/beagle-big.png      \
44
 
        chrome/skin/classic/beagle-disabled.png\
 
55
        chrome/skin/classic/beagle-disabled.png \
45
56
        chrome/skin/classic/beagle-error.png    \
46
 
        chrome/skin/classic/beagle.png\
47
 
        chrome/skin/classic/overlay.css 
 
57
        chrome/skin/classic/beagle.png          \
 
58
        chrome/skin/classic/overlay.css         \
 
59
        chrome/skin/classic/sidebar.css
48
60
 
49
61
$(PROJECT).xpi: $(XPI_FILES)
50
62
        zip -q9 $@ $^
51
63
 
52
64
 
53
65
EXTRA_DIST =                    \
54
 
        $(XPI_FILES)
 
66
        $(XPI_FILES)            \
 
67
        $(INSTALL_RDF_IN)
55
68
 
56
69
CLEANFILES =                    \
57
 
        $(PROJECT).xpi
 
70
        $(PROJECT).xpi          \
 
71
        $(INSTALL_RDF)