From f4a1d6e36eb2e9a92894ea42276f9e1087c4bd57 Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Wed, 10 Mar 2010 16:40:22 +0200 Subject: Makefile: fix %.S rule (broke loader build on x86) The rule merged from svn used "ASFLAGS" which was set for FFmpeg only. Change it to use CFLAGS instead (ASFLAGS is the same in svn). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6d804f38a0..2f1ef50364 100644 --- a/Makefile +++ b/Makefile @@ -756,7 +756,7 @@ all: $(ALL_PRG-yes) $(CC) $(CFLAGS) -Wno-unused -c -o $@ -x c $< %.o: %.S - $(CC) $(ASFLAGS) -c -o $@ $< + $(CC) $(CFLAGS) -c -o $@ $< %-rc.o: %.rc $(WINDRES) -I. $< $@ -- cgit v1.2.3