diff options
-rw-r--r-- | sax/source/expatwrap/makefile.mk | 4 | ||||
-rw-r--r-- | sax/source/fastparser/makefile.mk | 4 | ||||
-rw-r--r-- | sax/source/tools/makefile.mk | 4 |
3 files changed, 12 insertions, 0 deletions
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) \ |