You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
virglrenderer/src/Makefile.am

54 lines
1.4 KiB

SUBDIRS := gallium/auxiliary
AM_LDFLAGS = -lgbm -lm -ldl -I./gallium/include \
$(EPOXY_LIBS) \
$(GL_LIBS) \
$(CODE_COVERAGE_LDFLAGS)
AM_CFLAGS = \
-I$(top_srcdir)/src/gallium/drivers/virgl \
-I$(top_srcdir)/src/gallium/include \
-I$(top_srcdir)/src/gallium/auxiliary \
-I$(top_srcdir)/src/gallium/drivers \
-I$(top_srcdir)/include \
$(DEFINES) \
$(PIC_FLAGS) \
$(LIBDRM_CFLAGS) \
$(EPOXY_CFLAGS) \
$(VISIBILITY_CFLAGS) \
$(CODE_COVERAGE_CFLAGS)
libvrend_la_SOURCES = \
virgl_hw.h \
virgl_protocol.h \
vrend_iov.h \
vrend_renderer.c \
vrend_renderer.h \
vrend_shader.c \
vrend_shader.h \
vrend_object.c \
vrend_object.h \
vrend_decode.c \
vrend_formats.c \
vrend_blitter.c \
vrend_blitter.h \
iov.c \
vrend_renderer_helper.c \
virgl_egl_context.c
lib_LTLIBRARIES = libvirglrenderer.la
noinst_LTLIBRARIES = libvrend.la
GM_LDFLAGS = -Wl,-Bsymbolic -version-number 0:1 -no-undefined
libvirglrenderer_la_SOURCES = virglrenderer.c
libvirglrenderer_ladir = $(libdir)
libvirglrenderer_la_LIBADD = libvrend.la gallium/auxiliary/libgallium.la
libvirglrenderer_la_LDFLAGS = $(GM_LDFLAGS) $(EPOXY_LDFLAGS)
libvirglrendererincludedir = ${includedir}/virgl
libvirglrendererinclude_HEADERS = virglrenderer.h virgl_helper.h virgl_egl.h
EXTRA_DIST = gallium/include
-include $(top_srcdir)/git.mk