~ubuntu-branches/debian/sid/ember/sid

« back to all changes in this revision

Viewing changes to src/components/ogre/sounddefinitions/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2009-07-23 07:46:40 UTC
  • Revision ID: james.westby@ubuntu.com-20090723074640-wh0ukzis0kda36qv
Tags: upstream-0.5.6
ImportĀ upstreamĀ versionĀ 0.5.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES = -I$(top_srcdir)/src
 
2
METASOURCES = AUTO
 
3
current = $(PWD)
 
4
 
 
5
dist-hook:
 
6
        mkdir -p $(distdir)
 
7
        (cd $(top_srcdir)/src/components/ogre/sounddefinitions && tar cf - `find . -name \*.sounddef` | ( cd $(current) && cd $(distdir) && tar xf -))
 
8
#       (cd $(top_srcdir)/src/components/ogre/sounddefinitions && tar cf - `find . -name \*.sounddef.xml` | ( cd $(current) && cd $(distdir) && tar xf -))
 
9
 
 
10
install-data-local:
 
11
        mkdir -p $(DESTDIR)$(datadir)/ember/media/shared/sounddefinitions 
 
12
 
 
13
uninstall-local:
 
14
        find $(DESTDIR)$(datadir)/ember/media/shared/sounddefinitions -name  \*.sounddef | xargs rm -f
 
15
#       find $(DESTDIR)$(datadir)/ember/media/shared/sounddefinitions -name  \*.sounddef.xml | xargs rm -f
 
16
 
 
17
check-local:
 
18
        @for rule in `find $(top_srcdir)/src/components/ogre/sounddefinitions \*.sounddef -or -name \*.sounddef.xml` ; do \
 
19
                echo $(XMLLINT) -noout $$rule; \
 
20
                $(XMLLINT) -noout $$rule; \
 
21
        done;