From 2c744bc1e8e858209ef8787c9a76fdcefa8739bb Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Wed, 15 May 2013 11:18:18 +0200 Subject: [PATCH] generalize .S compilation target flags --- Makefile.base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.base b/Makefile.base index 392c07baf..3f5ceb542 100644 --- a/Makefile.base +++ b/Makefile.base @@ -26,7 +26,7 @@ $(BINDIR)%.o: %.s @$(AS) $(ASFLAGS) $*.s -o $(BINDIR)$*.o $(BINDIR)%.o: %.S - @gcc -c -m32 $*.S -o $(BINDIR)$*.o + @gcc -c $(CFLAGS) $*.S -o $(BINDIR)$*.o # remove compilation products clean::