~ubuntu-branches/ubuntu/trusty/libdrm/trusty-proposed

« back to all changes in this revision

Viewing changes to tests/kmstest/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2011-05-25 10:39:02 UTC
  • mfrom: (2.3.9 sid)
  • Revision ID: james.westby@ubuntu.com-20110525103902-i04oudms2kxklrq4
Tags: 2.4.25-2ubuntu1
* Merge from Debian unstable.  remaining Ubuntu changes:
  - debian/rules
  - debian/control:
    + Build libdrm-intel everywhere rather than just {i386,amd64} for Plymouth
  - debian/rules:
  - debian/control:
  - debian/*.install.in:
  - debian/*.links.in:
    + Multiarchify
* debian/patches/100_intel_remember_named_bo.patch:
  - Drop this cherry-pick; included in 2.4.24

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
subdir = tests/kmstest
39
39
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
40
40
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
41
 
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
 
41
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
 
42
        $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
 
43
        $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
 
44
        $(top_srcdir)/configure.ac
42
45
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
43
46
        $(ACLOCAL_M4)
44
47
mkinstalldirs = $(install_sh) -d
54
57
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
55
58
am__v_lt_0 = --silent
56
59
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
57
 
depcomp = $(SHELL) $(top_srcdir)/depcomp
 
60
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
58
61
am__depfiles_maybe = depfiles
59
62
am__mv = mv -f
60
63
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
128
131
LIPO = @LIPO@
129
132
LN_S = @LN_S@
130
133
LTLIBOBJS = @LTLIBOBJS@
 
134
MAINT = @MAINT@
131
135
MAKEINFO = @MAKEINFO@
132
136
MKDIR_P = @MKDIR_P@
133
137
NM = @NM@
226
230
 
227
231
.SUFFIXES:
228
232
.SUFFIXES: .c .lo .o .obj
229
 
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
233
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
230
234
        @for dep in $?; do \
231
235
          case '$(am__configure_deps)' in \
232
236
            *$$dep*) \
251
255
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
252
256
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
253
257
 
254
 
$(top_srcdir)/configure:  $(am__configure_deps)
 
258
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
255
259
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
256
 
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
260
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
257
261
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
258
262
$(am__aclocal_m4_deps):
259
263