~ken-vandine/ubuntu/precise/telepathy-gabble/ubuntu

« back to all changes in this revision

Viewing changes to lib/ext/telepathy-yell/tools/Makefile.am

  • Committer: Ken VanDine
  • Date: 2012-02-22 19:53:58 UTC
  • mfrom: (1.7.11)
  • Revision ID: ken.vandine@canonical.com-20120222195358-yzb8u3oy48rzcdtj
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
EXTRA_DIST = \
2
 
    c-constants-gen.py \
3
 
    check-coding-style.mk \
4
 
    check-c-style.sh \
5
 
    check-misc.sh \
6
 
    check-whitespace.sh \
7
 
    doc-generator.xsl \
8
 
    glib-client-gen.py \
9
 
    glib-client-marshaller-gen.py \
10
 
    glib-errors-enum-body-gen.py \
11
 
    glib-errors-enum-header-gen.py \
12
 
    glib-ginterface-gen.py \
13
 
    glib-gtypes-generator.py \
14
 
    glib-interfaces-gen.py \
15
 
    glib-signals-marshal-gen.py \
16
 
    gobject-foo.py \
17
 
    identity.xsl \
18
 
    libtpcodegen.py \
19
 
    libglibcodegen.py \
20
 
    make-version-script.py \
21
 
    with-session-bus.sh
22
 
 
23
 
CLEANFILES = libtpcodegen.pyc libtpcodegen.pyo libglibcodegen.pyc libglibcodegen.pyo $(noinst_SCRIPTS)
24
 
 
25
 
all: $(EXTRA_DIST)
26
 
 
27
 
libglibcodegen.py: libtpcodegen.py
28
 
        touch $@
29
 
c-constants-gen.py: libglibcodegen.py
30
 
        touch $@
31
 
glib-client-marshaller-gen.py: libglibcodegen.py
32
 
        touch $@
33
 
glib-errors-enum-body-gen.py: libglibcodegen.py
34
 
        touch $@
35
 
glib-errors-enum-header-gen.py: libglibcodegen.py
36
 
        touch $@
37
 
glib-ginterface-gen.py: libglibcodegen.py
38
 
        touch $@
39
 
glib-gtypes-generator.py: libglibcodegen.py
40
 
        touch $@
41
 
glib-interfaces-gen.py: libglibcodegen.py
42
 
        touch $@
43
 
glib-signals-marshal-gen.py: libglibcodegen.py
44
 
        touch $@
45
 
 
46
 
TELEPATHY_GLIB_SRCDIR = $(top_srcdir)/../telepathy-glib
47
 
maintainer-update-from-telepathy-glib:
48
 
        set -e && cd $(srcdir) && \
49
 
        for x in $(EXTRA_DIST); do \
50
 
                if test -f $(TELEPATHY_GLIB_SRCDIR)/tools/$$x; then \
51
 
                        cp $(TELEPATHY_GLIB_SRCDIR)/tools/$$x $$x; \
52
 
                fi; \
53
 
        done