~ubuntu-branches/ubuntu/lucid/ming/lucid

« back to all changes in this revision

Viewing changes to test/SoundStream/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Ilya Barygin
  • Date: 2010-02-11 10:57:41 UTC
  • mfrom: (2.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100211105741-lzpmxc0703c4bo1w
Tags: 1:0.4.3-1ubuntu1
* Merge from Debian unstable (LP: #192664), remaining changes:
  - Python 2.6 transition:
    - debian/rules:
      + Include /usr/share/python/python.mk.
      + Add py_setup_install_args macro to setup.py install.
      + Installed modules differ between python versions and can't be shared,
        use DH_PYCENTRAL=nomove.
    - Remove unnecessary debian/python-ming.{dirs,files}, Python 2.3 is not
      supported anymore.
* debian/control: separate dependencies by commas.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS = 
 
2
 
 
3
AM_CPPFLAGS = \
 
4
        -I$(top_srcdir) \
 
5
        -I$(top_srcdir)/src \
 
6
        -I$(top_srcdir)/test \
 
7
        -DMEDIADIR='"$(srcdir)/../Media/"'
 
8
 
 
9
LDADD = $(top_builddir)/src/libming.la
 
10
 
 
11
TESTS = dotests
 
12
 
 
13
C_PROGS =               \
 
14
        test01          \
 
15
        test02          \
 
16
        test03
 
17
 
 
18
if USE_CXX
 
19
CXX_PROGS =             \
 
20
        test01-cxx      \
 
21
        test02-cxx      \
 
22
        test03-cxx
 
23
 
 
24
test01_cxx_SOURCES = test01-cxx.C
 
25
test02_cxx_SOURCES = test02-cxx.C
 
26
test03_cxx_SOURCES = test03-cxx.C
 
27
endif
 
28
 
 
29
TEST_PROGS = $(C_PROGS) $(CXX_PROGS)
 
30
 
 
31
EXTRA_DIST =    \
 
32
        test01.ref \
 
33
        test02.ref \
 
34
        test03.ref \
 
35
        test01.php \
 
36
        test02.php \
 
37
        TestList
 
38
 
 
39
check_PROGRAMS = \
 
40
        $(TEST_PROGS)
 
41
 
 
42
CLEANFILES = dotests php.ini \
 
43
        test01.swf      \
 
44
        test02.swf      \
 
45
        test03.swf
 
46
 
 
47
include ../Makefile.inc