From 1c3a242ec2c468725a061aaa9da095ab5358ad58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Gouget?= Date: Fri, 9 Nov 2001 19:15:51 +0000 Subject: [PATCH] Make out-of-source-tree builds work with Solaris make. --- Make.rules.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Make.rules.in b/Make.rules.in index 6f1104944cf..8c9cab2c13d 100644 --- a/Make.rules.in +++ b/Make.rules.in @@ -98,13 +98,13 @@ LINTS = $(C_SRCS:.c=.ln) .SUFFIXES: .mc .rc .mc.rc .res .spec .spec.c .glue.c .c.o: - $(CC) -c $(ALLCFLAGS) -o $*.o $< + $(CC) -c $(ALLCFLAGS) -o $@ $< .s.o: - $(AS) -o $*.o $< + $(AS) -o $@ $< .S.o: - $(CC) -c -o $*.o $< + $(CC) -c -o $@ $< .mc.mc.rc: $(LDPATH) $(WMC) -i -H /dev/null -o $@ $<