~online-accounts/ubuntu/quantal/telepathy-mission-control-5/libaccounts

« back to all changes in this revision

Viewing changes to xml/Makefile.am

  • Committer: Ken VanDine
  • Date: 2012-07-24 13:27:12 UTC
  • mfrom: (0.13.3)
  • Revision ID: ken.vandine@canonical.com-20120724132712-gytgqzzg8ry3f0kv
* New upstream release.
* debian/libmission-control-plugins0.symbols
  - new symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
tools_dir = $(top_srcdir)/tools
 
2
 
 
3
XSLTFLAGS = --nonet --novalid
 
4
DROP_NAMESPACE = sed -e 's@xmlns:tp="http://telepathy\.freedesktop\.org/wiki/DbusSpec.extensions-v0"@@g'
 
5
DROP_TPTYPE = sed -e 's@tp:type="[^"]*"@@g'
 
6
 
 
7
SPECS = \
 
8
        Account_Manager_Interface_Hidden.xml \
 
9
        Account_Interface_Addressing.xml \
 
10
        Account_Interface_Conditions.xml \
 
11
        Account_Interface_External_Password_Storage.xml \
 
12
        Account_Interface_Hidden.xml \
 
13
        Connection_Manager_Interface_Account_Storage.xml \
 
14
        Channel_Dispatcher_Interface_Messages_DRAFT.xml
 
15
 
 
16
 
 
17
SPECS_GEN = ${SPECS:%.xml=_gen/introspect-%.xml}
 
18
 
 
19
all-local: $(SPECS_GEN)
 
20
 
 
21
_gen/introspect-%.xml: %.xml $(tools_dir)/spec-to-introspect.xsl
 
22
        $(AM_V_at)$(mkdir_p) _gen
 
23
        $(AM_V_GEN)$(XSLTPROC) $(XSLTFLAGS) $(tools_dir)/spec-to-introspect.xsl $< \
 
24
                | $(DROP_NAMESPACE) > $@
 
25
 
 
26
clean-local:
 
27
        rm -f $(SPECS_GEN)
 
28
 
 
29
EXTRA_DIST = \
 
30
        all.xml \
 
31
        nmc5.xml \
 
32
        generic-types.xml \
 
33
        telepathy-types.xml \
 
34
        $(SPECS)