# # Copyright (C) 2011 Texas Instruments # Author: Rob Clark # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 as published by # the Free Software Foundation. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for # more details. # # You should have received a copy of the GNU General Public License along with # this program. If not, see . # noinst_LTLIBRARIES = libutil.la libutil_la_SOURCES = \ display-kms.c \ util.c if ENABLE_X11 libutil_la_SOURCES += display-x11.c endif if ENABLE_V4L2_DMABUF libutil_la_SOURCES += v4l2.c endif if ENABLE_DCE libutil_la_SOURCES += demux.c endif libutil_la_LIBADD = @DRM_LIBS@ @X11_LIBS@ @DCE_LIBS@ libutil_la_CFLAGS = @LIN_CFLAGS@ @DRM_CFLAGS@ @X11_CFLAGS@ @DCE_CFLAGS@ @WARN_CFLAGS@