From 935221bf22e62d5525f447957853fd248fe1eef5 Mon Sep 17 00:00:00 2001 From: espes Date: Tue, 8 Sep 2015 09:47:57 +1000 Subject: [PATCH] gl should be common --- Makefile.objs | 3 +++ Makefile.target | 7 ------- gl/Makefile.objs | 4 ++++ 3 files changed, 7 insertions(+), 7 deletions(-) create mode 100644 gl/Makefile.objs diff --git a/Makefile.objs b/Makefile.objs index 2b6c1fe2a8..06f8d8f6e1 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -98,6 +98,9 @@ common-obj-y += hw/ common-obj-y += qom/ common-obj-y += disas/ +# OpenGl Support +common-obj-$(CONFIG_OPENGL) += gl/ + ###################################################################### # Resource file for Windows executables version-obj-$(CONFIG_WIN32) += $(BUILD_DIR)/version.o diff --git a/Makefile.target b/Makefile.target index 3c8b733b06..af6ac7eaa1 100644 --- a/Makefile.target +++ b/Makefile.target @@ -130,13 +130,6 @@ else obj-y += hw/$(TARGET_BASE_ARCH)/ endif -# OpenGl Support -obj-gl-y += gl/gloffscreen_common.o gl/glextensions.o -obj-gl-$(CONFIG_WIN32) += gl/gloffscreen_wgl.o -obj-gl-$(CONFIG_DARWIN) += gl/gloffscreen_cgl.o -obj-gl-$(CONFIG_LINUX) += gl/gloffscreen_glx.o -obj-$(CONFIG_OPENGL) += $(obj-gl-y) - main.o: QEMU_CFLAGS+=$(GPROF_CFLAGS) GENERATED_HEADERS += hmp-commands.h qmp-commands-old.h diff --git a/gl/Makefile.objs b/gl/Makefile.objs new file mode 100644 index 0000000000..a7a1e69177 --- /dev/null +++ b/gl/Makefile.objs @@ -0,0 +1,4 @@ +common-obj-y += gloffscreen_common.o glextensions.o +common-obj-$(CONFIG_WIN32) += gloffscreen_wgl.o +common-obj-$(CONFIG_DARWIN) += gloffscreen_cgl.o +common-obj-$(CONFIG_LINUX) += gloffscreen_glx.o