When dubiously reprogramming .SUFFIXES, don't screw up the order of .S

relative to .s.  This fixes wrong sources being preferred after
"gcc -save-temps" creates .s files from .S files.
This commit is contained in:
Bruce Evans 2000-06-08 18:11:15 +00:00
parent 129e169651
commit a8e97da092

View File

@ -59,7 +59,7 @@ STRIP?= -s
# prefer .s to a .c, add .po, remove stuff not used in the BSD libraries
# .So used for PIC object files
.SUFFIXES:
.SUFFIXES: .out .o .po .So .s .S .c .cc .cpp .cxx .m .C .f .y .l
.SUFFIXES: .out .o .po .So .S .s .c .cc .cpp .cxx .m .C .f .y .l
.c.o:
${CC} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}