From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50288) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwVKE-0004d0-Qw for qemu-devel@nongnu.org; Sat, 19 Jan 2013 05:06:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TwVKD-0005va-EO for qemu-devel@nongnu.org; Sat, 19 Jan 2013 05:06:58 -0500 Received: from mail-ee0-f42.google.com ([74.125.83.42]:56252) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TwVKD-0005vU-6e for qemu-devel@nongnu.org; Sat, 19 Jan 2013 05:06:57 -0500 Received: by mail-ee0-f42.google.com with SMTP id b47so2088759eek.15 for ; Sat, 19 Jan 2013 02:06:56 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Sat, 19 Jan 2013 11:06:44 +0100 Message-Id: <1358590008-1681-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH for 1.4 0/4] Simplify Makefile.objs some more List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, afaerber@suse.de This small series makes some more simplifications to Makefile.objs, removing two more variables: universal-obj-y and extra-obj-y, all unified into common-obj-y. It also removes what remains of user-obj-y, unifying that into common-obj-y as well. To achieve this, the CONFIG_SOFTMMU and CONFIG_USER_ONLY symbols are defined in the toplevel Makefile like we do with devices and disassemblers. Another symbol, CONFIG_ALL, is defined only in the toplevel Makefile and takes the place of extra-obj-y. With this change the structure of Makefile.objs is finally reduced to only six recursive variables (stub-obj-y, util-obj-y, qga-obj-y, block-obj-y, common-obj-y, obj-y). More important, the simpler structure should help people modifying the build system, avoiding future proliferation of variables as well. The patches are mostly mechanical substitutions, and there is no user-visible change---neither in total build time, nor in the files that are linked into the executables. Please apply, thanks! Paolo Paolo Bonzini (4): build: move around libcacard-y definition build: use -$(CONFIG_SECCOMP) instead of ifeq build: remove universal-obj-y build: remove extra-obj-y Makefile | 9 ++++----- Makefile.objs | 43 ++++++++++++++++++------------------------- Makefile.target | 3 +-- disas/Makefile.objs | 30 +++++++++++++++--------------- fsdev/Makefile.objs | 8 ++++---- hw/Makefile.objs | 10 +++++----- hw/pci/Makefile.objs | 2 +- qom/Makefile.objs | 4 ++-- 8 files changed, 50 insertions(+), 59 deletions(-)