[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v12 1/8] ui/Makefile.objs: delete unnecessary cocoa.
From: |
Fam Zheng |
Subject: |
[Qemu-devel] [PATCH v12 1/8] ui/Makefile.objs: delete unnecessary cocoa.o dependency |
Date: |
Thu, 10 Oct 2013 19:26:09 +0800 |
From: Peter Maydell <address@hidden>
Delete an unnecessary dependency for cocoa.o; we already have
a general rule that tells Make that we can build a .o file
from a .m source using an ObjC compiler, so this specific
rule is unnecessary. Further, it is using the dubious construct
"$(SRC_PATH)/$(obj)" to get at the source directory, which will
break when $(obj) is redefined as part of the preparation for
per-object library support.
Signed-off-by: Peter Maydell <address@hidden>
Signed-off-by: Fam Zheng <address@hidden>
---
ui/Makefile.objs | 2 --
1 file changed, 2 deletions(-)
diff --git a/ui/Makefile.objs b/ui/Makefile.objs
index 6ddc0de..f33be47 100644
--- a/ui/Makefile.objs
+++ b/ui/Makefile.objs
@@ -17,6 +17,4 @@ common-obj-$(CONFIG_GTK) += gtk.o x_keymap.o
$(obj)/sdl.o $(obj)/sdl_zoom.o: QEMU_CFLAGS += $(SDL_CFLAGS)
-$(obj)/cocoa.o: $(SRC_PATH)/$(obj)/cocoa.m
-
$(obj)/gtk.o: QEMU_CFLAGS += $(GTK_CFLAGS) $(VTE_CFLAGS)
--
1.8.3.1
- [Qemu-devel] [PATCH v12 0/8] Shared Library Module Support, Fam Zheng, 2013/10/10
- [Qemu-devel] [PATCH v12 1/8] ui/Makefile.objs: delete unnecessary cocoa.o dependency,
Fam Zheng <=
- [Qemu-devel] [PATCH v12 2/8] make.rule: fix $(obj) to a real relative path, Fam Zheng, 2013/10/10
- [Qemu-devel] [PATCH v12 3/8] rule.mak: allow per object cflags and libs, Fam Zheng, 2013/10/10
- [Qemu-devel] [PATCH v12 4/8] build-sys: introduce common-obj-m and block-obj-m for DSO, Fam Zheng, 2013/10/10
- [Qemu-devel] [PATCH v12 6/8] Makefile: install modules with "make install", Fam Zheng, 2013/10/10
- [Qemu-devel] [PATCH v12 5/8] module: implement module loading, Fam Zheng, 2013/10/10
[Qemu-devel] [PATCH v12 7/8] .gitignore: ignore module related files (dll, so, mo), Fam Zheng, 2013/10/10