mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-08 09:18:04 +02:00
... minus test/ttmtest. The latter is not really hooked up with the actual build. This will give us 66 warnings on a distribution build of which - 12 -Wunused-variable - 11 -Wunused-function - 19 -Wmissing-prototypes and a few -Wswitch-enum, -Wtype-limits etc. Adding the CFLAGS gives some exposure to these so that we can fix them. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Reviewed-by: Jan Vesely <jan.vesely@rutgers.edu>
25 lines
459 B
Makefile
25 lines
459 B
Makefile
AM_CFLAGS = \
|
|
$(WARN_CFLAGS)\
|
|
-I $(top_srcdir)/include/drm \
|
|
-I $(top_srcdir)/libkms/ \
|
|
-I $(top_srcdir)/exynos \
|
|
-I $(top_srcdir)
|
|
|
|
if HAVE_LIBKMS
|
|
if HAVE_INSTALL_TESTS
|
|
bin_PROGRAMS = \
|
|
exynos_fimg2d_test
|
|
else
|
|
noinst_PROGRAMS = \
|
|
exynos_fimg2d_test
|
|
endif
|
|
endif
|
|
|
|
exynos_fimg2d_test_LDADD = \
|
|
$(top_builddir)/libdrm.la \
|
|
$(top_builddir)/libkms/libkms.la \
|
|
$(top_builddir)/exynos/libdrm_exynos.la
|
|
|
|
exynos_fimg2d_test_SOURCES = \
|
|
exynos_fimg2d_test.c
|
|
|