mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 02:20:15 +01:00
Some of the helpers, such as the pattern drawing helpers or the format lookup helpers, have potential to be reused. Move them into a separate library to make it easier to share them. Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Thierry Reding <treding@nvidia.com> Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
18 lines
280 B
Makefile
18 lines
280 B
Makefile
AM_CFLAGS = \
|
|
$(WARN_CFLAGS)\
|
|
-I$(top_srcdir)/include/drm \
|
|
-I$(top_srcdir)/tests \
|
|
-I$(top_srcdir)
|
|
|
|
if HAVE_INSTALL_TESTS
|
|
bin_PROGRAMS = \
|
|
modeprint
|
|
else
|
|
noinst_PROGRAMS = \
|
|
modeprint
|
|
endif
|
|
|
|
modeprint_SOURCES = \
|
|
modeprint.c
|
|
modeprint_LDADD = \
|
|
$(top_builddir)/libdrm.la
|