~ubuntu-branches/ubuntu/maverick/libvirt/maverick

« back to all changes in this revision

Viewing changes to docs/examples/index.py

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2009-02-11 01:01:42 UTC
  • mto: (3.4.1 sid) (1.2.1 upstream) (0.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090211010142-wk9mgtbw8bmp3zcb
Tags: upstream-0.6.0
ImportĀ upstreamĀ versionĀ 0.6.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
218
218
def dump_Makefile():
219
219
    for file in glob.glob('*.xml'):
220
220
        extras.append(file)
221
 
    for file in glob.glob('*.res'):
222
 
        extras.append(file)
223
221
    Makefile="""# -*- buffer-read-only: t -*- vi: set ro:
224
222
# Beware this is autogenerated by index.py
225
223
SUBDIRS=python
243
241
install-data-local:
244
242
        $(mkinstalldirs) $(DESTDIR)$(HTML_DIR)
245
243
        -@INSTALL@ -m 0644 $(srcdir)/*.html $(srcdir)/*.c $(srcdir)/*.xml \\
246
 
          $(srcdir)/*.xsl $(srcdir)/*.res $(DESTDIR)$(HTML_DIR)
 
244
          $(srcdir)/*.xsl $(DESTDIR)$(HTML_DIR)
247
245
 
248
246
"""
249
247
    EXTRA_DIST= string.join(extras, ' ')