From 83664d664bc8593008d7e8ee5fad3de8cf1c06ed Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 9 Dec 1997 23:39:10 +0000 Subject: [PATCH] (compile.S, COMPILE.S, COMPILE.s): Use $(ASFLAGS-*) variable as well. --- Makerules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makerules b/Makerules index f4333a2f039..b839a9a9a79 100644 --- a/Makerules +++ b/Makerules @@ -278,9 +278,9 @@ endif # GCC can grok options after the file name, and it looks nicer that way. compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS) -compile.S = $(CC) $< -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) -COMPILE.S = $(CC) -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) -COMPILE.s = $(filter-out -pipe,$(CC)) -c $(ASFLAGS) +compile.S = $(CC) $< -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) $(ASFLAGS-$(suffix $@)) +COMPILE.S = $(CC) -c $(CPPFLAGS) -DASSEMBLER $(asm-CPPFLAGS) $(ASFLAGS-$(suffix $@)) +COMPILE.s = $(filter-out -pipe,$(CC)) -c $(ASFLAGS) $(ASFLAGS-$(suffix $@)) # We need this for the output to go in the right place. It will default to # empty if make was configured to work with a cc that can't grok -c and -o -- 2.47.2