Bug 181913: disable the makefile rule for .s for OS/2 so that .asm files

are used when there are same-named .s files in the same directory.  The
patch is contributed by Javier Pedemonte <pedemont@us.ibm.com>.
This commit is contained in:
wtc%netscape.com 2002-12-02 22:57:21 +00:00
parent 80b0ad6676
commit f64d594319

View File

@ -418,11 +418,13 @@ else
$(CC) -o $@ -c $(CFLAGS) $<
endif
ifndef XP_OS2_VACPP
ifneq (,$(filter-out WIN%,$(OS_TARGET)))
$(OBJDIR)/$(PROG_PREFIX)%$(OBJ_SUFFIX): %.s
@$(MAKE_OBJDIR)
$(AS) -o $@ $(ASFLAGS) -c $<
endif
endif
$(OBJDIR)/$(PROG_PREFIX)%$(OBJ_SUFFIX): %.asm
@$(MAKE_OBJDIR)