blob: 8ab0f76205897496c51a907eeaec2a2d0ff488c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
include $(top_srcdir)/src/gallium/Automake.inc
noinst_LTLIBRARIES = libfd2xx.la
AM_CFLAGS = \
-Wno-packed-bitfield-compat \
-I$(top_srcdir)/src/gallium/drivers \
-I$(top_srcdir)/src/gallium/drivers/freedreno \
$(GALLIUM_CFLAGS) \
$(FREEDRENO_CFLAGS) \
$(VISIBILITY_CFLAGS)
libfd2xx_la_SOURCES = \
fd2_blend.c \
fd2_compiler.c \
fd2_context.c \
fd2_draw.c \
fd2_emit.c \
fd2_gmem.c \
fd2_program.c \
fd2_rasterizer.c \
fd2_screen.c \
fd2_texture.c \
fd2_util.c \
fd2_zsa.c \
disasm-a2xx.c \
ir-a2xx.c
|