~ubuntu-branches/ubuntu/precise/libdrm/precise-proposed

« back to all changes in this revision

Viewing changes to tests/Makefile.am

Tags: 2.4.17-0ubuntu1
* Merge with Debian unstable, remaining changes:
  + control, rules, libdrm-nouveau1.symbols: Enable libdrm_nouveau.
* Update libdrm-nouveau1.symbols and shlibs.
* Drop 02_silent_master.diff, applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
NULL:=#
 
2
 
1
3
AM_CPPFLAGS = \
2
 
        -I $(top_srcdir)/shared-core \
3
 
        -I $(top_srcdir)/libdrm
 
4
        -I $(top_srcdir)/include/drm \
 
5
        -I $(top_srcdir)
4
6
 
5
 
LDADD = $(top_builddir)/libdrm/libdrm.la
 
7
LDADD = $(top_builddir)/libdrm.la
6
8
 
7
9
noinst_PROGRAMS = \
8
10
        dristat \
9
11
        drmstat
10
12
 
11
 
SUBDIRS = \
12
 
        modeprint \
13
 
        modetest
 
13
SUBDIRS =
 
14
 
 
15
if HAVE_INTEL
 
16
endif
14
17
 
15
18
if HAVE_LIBUDEV
16
19
 
21
24
        drmtest.h
22
25
 
23
26
libdrmtest_la_LIBADD = \
24
 
        $(top_builddir)/libdrm/libdrm.la \
 
27
        $(top_builddir)/libdrm.la \
25
28
        $(LIBUDEV_LIBS)
26
29
 
27
30
LDADD += libdrmtest.la
37
40
        getstats                                \
38
41
        setversion                              \
39
42
        updatedraw                              \
 
43
        name_from_fd                            \
 
44
        $(NULL)
 
45
 
 
46
if HAVE_INTEL
 
47
SUBDIRS += \
 
48
        modeprint                               \
 
49
        modetest                                \
 
50
        $(NULL)
 
51
 
 
52
TESTS +=                                        \
40
53
        gem_basic                               \
41
54
        gem_flink                               \
42
55
        gem_readwrite                           \
43
 
        gem_mmap
 
56
        gem_mmap                                \
 
57
        $(NULL)
 
58
endif
44
59
 
45
60
EXTRA_PROGRAMS = $(TESTS)
46
61
 
47
62
endif
48
63
 
49
64
CLEANFILES = $(EXTRA_PROGRAMS) $(EXTRA_LTLIBRARIES)
50