Use $(AS) instead of $(CC) to compile .s files.

oldstable
Patrik Stridvall 1998-10-11 17:12:21 +00:00 committed by Alexandre Julliard
parent 8295c862dc
commit 1439f72b48
1 changed files with 1 additions and 1 deletions

View File

@ -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 $<