From fc9e0ee821a57cb504659da300901dbe68447b8f Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 20 Jun 2011 22:45:09 +0300 Subject: Don't use the i prefix for import libraries with WNTGCC --- sax/source/expatwrap/makefile.mk | 4 ++++ sax/source/fastparser/makefile.mk | 4 ++++ sax/source/tools/makefile.mk | 4 ++++ 3 files changed, 12 insertions(+) (limited to 'sax') diff --git a/sax/source/expatwrap/makefile.mk b/sax/source/expatwrap/makefile.mk index 6e1348c0d403..a0f177178004 100644 --- a/sax/source/expatwrap/makefile.mk +++ b/sax/source/expatwrap/makefile.mk @@ -54,7 +54,11 @@ SLOFILES =\ $(SLO)$/saxwriter.obj SHL1TARGET= $(TARGET) +.IF "$(COM)" == "MSC" SHL1IMPLIB= i$(TARGET) +.ELSE +SHL1IMPLIB= $(TARGET) +.ENDIF SHL1STDLIBS= \ $(SALLIB) \ diff --git a/sax/source/fastparser/makefile.mk b/sax/source/fastparser/makefile.mk index d8f9378c19b9..9690ffab326e 100644 --- a/sax/source/fastparser/makefile.mk +++ b/sax/source/fastparser/makefile.mk @@ -51,7 +51,11 @@ SLOFILES =\ $(SLO)$/xml2utf.obj SHL1TARGET= $(TARGET) +.IF "$(COM)" == "MSC" SHL1IMPLIB= i$(TARGET) +.ELSE +SHL1IMPLIB= $(TARGET) +.ENDIF SHL1STDLIBS= \ $(SALLIB) \ diff --git a/sax/source/tools/makefile.mk b/sax/source/tools/makefile.mk index 5923fc5a7785..abece06312ba 100644 --- a/sax/source/tools/makefile.mk +++ b/sax/source/tools/makefile.mk @@ -45,7 +45,11 @@ SLOFILES = \ $(SLO)$/fshelper.obj SHL1TARGET= $(TARGET)$(DLLPOSTFIX) +.IF "$(COM)" == "MSC" SHL1IMPLIB= i$(TARGET) +.ELSE +SHL1IMPLIB= $(TARGET)$(DLLPOSTFIX) +.ENDIF SHL1STDLIBS= \ $(CPPULIB) \ -- cgit v1.2.3