Better way of calling assembler on OS/2

This commit is contained in:
jpierre%netscape.com 2001-10-24 17:35:18 +00:00
parent 4f7d35eb51
commit c9af2c77d7

View File

@ -446,7 +446,7 @@ endif
$(OBJDIR)/$(PROG_PREFIX)%$(OBJ_SUFFIX): %.asm
@$(MAKE_OBJDIR)
ifdef XP_OS2_VACPP
cd $(OBJDIR) ; $(AS) $(ASFLAGS) $(subst /,\\,$(shell pwd)/$<)
$(AS) -Fdo:$(OBJDIR) $(ASFLAGS) $(subst /,\\,$(shell pwd)/$<)
else
$(AS) -Fo$@ $(ASFLAGS) -c $<
endif