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

« back to all changes in this revision

Viewing changes to tests/modetest/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/modetest
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
50
53
modetest_OBJECTS = $(am_modetest_OBJECTS)
51
54
am__DEPENDENCIES_1 =
52
55
modetest_DEPENDENCIES = $(top_builddir)/libdrm.la \
53
 
        $(top_builddir)/intel/libdrm_intel.la $(am__DEPENDENCIES_1)
 
56
        $(top_builddir)/libkms/libkms.la $(am__DEPENDENCIES_1)
54
57
AM_V_lt = $(am__v_lt_$(V))
55
58
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
56
59
am__v_lt_0 = --silent
57
60
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
58
 
depcomp = $(SHELL) $(top_srcdir)/depcomp
 
61
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
59
62
am__depfiles_maybe = depfiles
60
63
am__mv = mv -f
61
64
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
129
132
LIPO = @LIPO@
130
133
LN_S = @LN_S@
131
134
LTLIBOBJS = @LTLIBOBJS@
 
135
MAINT = @MAINT@
132
136
MAKEINFO = @MAKEINFO@
133
137
MKDIR_P = @MKDIR_P@
134
138
NM = @NM@
213
217
top_srcdir = @top_srcdir@
214
218
AM_CFLAGS = \
215
219
        -I$(top_srcdir)/include/drm \
216
 
        -I$(top_srcdir)/intel/ \
 
220
        -I$(top_srcdir)/libkms/ \
217
221
        -I$(top_srcdir) \
218
222
        $(CAIRO_CFLAGS)
219
223
 
222
226
 
223
227
modetest_LDADD = \
224
228
        $(top_builddir)/libdrm.la \
225
 
        $(top_builddir)/intel/libdrm_intel.la \
 
229
        $(top_builddir)/libkms/libkms.la \
226
230
        $(CAIRO_LIBS)
227
231
 
228
232
all: all-am
229
233
 
230
234
.SUFFIXES:
231
235
.SUFFIXES: .c .lo .o .obj
232
 
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
 
236
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  $(am__configure_deps)
233
237
        @for dep in $?; do \
234
238
          case '$(am__configure_deps)' in \
235
239
            *$$dep*) \
254
258
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
255
259
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
256
260
 
257
 
$(top_srcdir)/configure:  $(am__configure_deps)
 
261
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
258
262
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
259
 
$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
 
263
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
260
264
        cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
261
265
$(am__aclocal_m4_deps):
262
266