qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1/5] move cc-option definition to rules.mak


From: quintela
Subject: [Qemu-devel] [PATCH 1/5] move cc-option definition to rules.mak
Date: Tue, 21 Jul 2009 14:11:18 +0200

From: Juan Quintela <address@hidden>


Signed-off-by: Juan Quintela <address@hidden>
---
 Makefile.target |    6 ------
 rules.mak       |    6 ++++++
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Makefile.target b/Makefile.target
index f9cd42a..4c807df 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -21,12 +21,6 @@ endif

 PROGS=$(QEMU_PROG)

-# cc-option
-# Usage: CFLAGS+=$(call cc-option, $(CFLAGS), -falign-functions=0, 
-malign-functions=0)
-
-cc-option = $(shell if $(CC) $(1) $(2) -S -o /dev/null -xc /dev/null \
-              > /dev/null 2>&1; then echo "$(2)"; else echo "$(3)"; fi ;)
-
 HELPER_CFLAGS=

 ifeq ($(ARCH),i386)
diff --git a/rules.mak b/rules.mak
index 8d6d96e..f9d0ca0 100644
--- a/rules.mak
+++ b/rules.mak
@@ -17,3 +17,9 @@ LINK = $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $(1) 
$(ARLIBS_BEGIN) $(ARLIBS
        $(call quiet-command,rm -f $@ && $(AR) rcs $@ $^,"  AR    
$(TARGET_DIR)$@")

 quiet-command = $(if $(V),$1,$(if $(2),@echo $2 && $1, @$1))
+
+# cc-option
+# Usage: CFLAGS+=$(call cc-option, $(CFLAGS), -falign-functions=0, 
-malign-functions=0)
+
+cc-option = $(shell if $(CC) $(1) $(2) -S -o /dev/null -xc /dev/null \
+              > /dev/null 2>&1; then echo "$(2)"; else echo "$(3)"; fi ;)
-- 
1.6.2.5





reply via email to

[Prev in Thread] Current Thread [Next in Thread]