Make out-of-source-tree builds work with Solaris make.

This commit is contained in:
François Gouget 2001-11-09 19:15:51 +00:00 committed by Alexandre Julliard
parent 9f3cdd19bc
commit 1c3a242ec2
1 changed files with 3 additions and 3 deletions

View File

@ -98,13 +98,13 @@ LINTS = $(C_SRCS:.c=.ln)
.SUFFIXES: .mc .rc .mc.rc .res .spec .spec.c .glue.c .SUFFIXES: .mc .rc .mc.rc .res .spec .spec.c .glue.c
.c.o: .c.o:
$(CC) -c $(ALLCFLAGS) -o $*.o $< $(CC) -c $(ALLCFLAGS) -o $@ $<
.s.o: .s.o:
$(AS) -o $*.o $< $(AS) -o $@ $<
.S.o: .S.o:
$(CC) -c -o $*.o $< $(CC) -c -o $@ $<
.mc.mc.rc: .mc.mc.rc:
$(LDPATH) $(WMC) -i -H /dev/null -o $@ $< $(LDPATH) $(WMC) -i -H /dev/null -o $@ $<