From 1439f72b48732cbffb2d8e72d21c5dccb6b651eb Mon Sep 17 00:00:00 2001 From: Patrik Stridvall Date: Sun, 11 Oct 1998 17:12:21 +0000 Subject: [PATCH] Use $(AS) instead of $(CC) to compile .s files. --- Make.rules.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Make.rules.in b/Make.rules.in index 37e78c98916..8d0358cd5cc 100644 --- a/Make.rules.in +++ b/Make.rules.in @@ -79,7 +79,7 @@ OBJS = $(C_SRCS:.c=.o) $(GEN_ASM_SRCS:.s=.o) $(ASM_SRCS:.S=.o) \ $(CC) -c $(ALLCFLAGS) -o $*.o $< .s.o: - $(CC) -c -o $*.o $< + $(AS) -o $*.o $< .S.o: $(CC) -c -o $*.o $< -- 2.11.4.GIT