summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/Makefile.am22
-rw-r--r--etnaviv/Makefile.am16
-rw-r--r--src/Makefile.am14
3 files changed, 45 insertions, 7 deletions
diff --git a/common/Makefile.am b/common/Makefile.am
index 57d3d1b..1e8bf51 100644
--- a/common/Makefile.am
+++ b/common/Makefile.am
@@ -20,19 +20,39 @@ AM_CFLAGS = $(filter-out -Wnested-externs -Wcast-qual -Wredundant-decls \
noinst_LTLIBRARIES = libcommon.la
libcommon_la_SOURCES = \
bo-cache.c \
+ bo-cache.h \
boxutil.c \
+ boxutil.h \
+ compat-api.h \
+ compat-list.h \
+ cpu_access.h \
drawable_desc.c \
+ fbutil.h \
+ gal_extension.h \
get_first_pixel.c \
glyph_assemble.c \
+ glyph_assemble.h \
glyph_cache.c \
+ glyph_cache.h \
glyph_extents.c \
+ glyph_extents.h \
mark.c \
+ mark.h \
pamdump.c \
+ pamdump.h \
+ pictureutil.h \
picture_desc.c \
picture_solid.c \
pixmaputil.c \
+ pixmaputil.h \
+ prefetch.h \
transform.c \
unaccel.c \
+ unaccel.h \
unaccel_render.c \
+ utils.h \
xv_attribute.c \
- xv_image_format.c
+ xv_attribute.h \
+ xv_image_format.c \
+ xv_image_format.h \
+ xvbo.h
diff --git a/etnaviv/Makefile.am b/etnaviv/Makefile.am
index f12c685..5fb6ad5 100644
--- a/etnaviv/Makefile.am
+++ b/etnaviv/Makefile.am
@@ -21,16 +21,24 @@ AM_CFLAGS = $(filter-out -Wnested-externs -Wcast-qual -Wredundant-decls \
ETNA_COMMON_SOURCES = \
etnaviv.c \
etnaviv_accel.c \
+ etnaviv_accel.h \
+ etnaviv_compat.h \
etnaviv_op.c \
+ etnaviv_op.h \
etnaviv_render.c \
+ etnaviv_render.h \
etnaviv_utils.c \
- etnaviv_xv.c
+ etnaviv_utils.h \
+ etnaviv_xv.c \
+ etnaviv_xv.h
ETNA_COMMON_LIBADD = \
$(DRMARMADA_LIBS) \
$(top_builddir)/common/libcommon.la
if HAVE_DRI2
-ETNA_COMMON_SOURCES += etnaviv_dri2.c
+ETNA_COMMON_SOURCES += \
+ etnaviv_dri2.c \
+ etnaviv_dri2.h
ETNA_COMMON_LIBADD += $(DRI_LIBS)
endif
@@ -58,5 +66,7 @@ etnadrm_gpu_la_SOURCES = \
$(ETNA_COMMON_SOURCES) \
etnadrm_emit.c \
etnadrm_module.c \
- etnadrm.c
+ etnadrm.c \
+ etnadrm.h \
+ etnaviv_drm.h
endif
diff --git a/src/Makefile.am b/src/Makefile.am
index b1c465b..82dd108 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -23,10 +23,18 @@ armada_drv_la_LDFLAGS = -module -avoid-version
armada_drv_la_LIBADD = $(DRMARMADA_LIBS) $(UDEV_LIBS) \
$(top_builddir)/common/libcommon.la
armada_drv_ladir = @moduledir@/drivers
-armada_drv_la_SOURCES = armada_module.c \
+armada_drv_la_SOURCES = armada_accel.h \
+ armada_module.c \
armada_drm.c \
+ armada_drm.h \
armada_drm_xv.c \
- common_drm.c
+ armada_fourcc.h \
+ armada_ioctl.h \
+ common_drm.c \
+ common_drm.h \
+ common_drm_helper.h
if HAVE_DRI2
-armada_drv_la_SOURCES += common_drm_dri2.c
+armada_drv_la_SOURCES += \
+ common_drm_dri2.c \
+ common_drm_dri2.h
endif