summaryrefslogtreecommitdiff
path: root/hw/vigs/Makefile.objs
blob: b227b1c913bf733d7179ef2b1954d7ced22666bf (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
# VIGS
QEMU_CFLAGS += -I$(SRC_PATH)/hw/vigs/vigs_inc

obj-y += vigs_log.o
obj-y += vigs_device.o
obj-y += vigs_comm.o
obj-y += vigs_server.o
obj-y += vigs_backend.o
obj-y += vigs_surface.o
obj-y += vigs_utils.o
obj-y += vigs_vector.o
obj-y += vigs_ref.o
obj-y += vigs_fenceman.o
obj-y += vigs_gl_backend.o
obj-y += vigs_sw_backend.o
# GL GLX backend
ifdef CONFIG_LINUX
obj-y += vigs_gl_backend_glx.o
endif
# GL WGL backend
ifdef CONFIG_WIN32
obj-y += vigs_gl_backend_wgl.o
endif
# GL AGL backend
ifdef CONFIG_DARWIN
obj-y += vigs_gl_backend_agl.o
endif