diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-18 01:28:02 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@novell.com> | 2011-06-18 01:28:02 +0300 |
commit | 190ae222e6933eabb7a9a016690619621bea07ad (patch) | |
tree | e285305ca1679d39c1a8f5457807ede792321430 | |
parent | b33ae7fc706c6f9a8130e34d5eafb0ffbf938905 (diff) |
Use the i prefix for the import library only with MSC
-rw-r--r-- | basegfx/util/makefile.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/basegfx/util/makefile.mk b/basegfx/util/makefile.mk index 777f30aba696..cf82c01aa3d3 100644 --- a/basegfx/util/makefile.mk +++ b/basegfx/util/makefile.mk @@ -52,7 +52,11 @@ LIB1FILES=\ $(SLB)$/raster.lib SHL1TARGET= basegfx$(DLLPOSTFIX) +.IF "$(COM)" == "MSC" SHL1IMPLIB= ibasegfx +.ELSE +SHL1IMPLIB= $(SHL1TARGET) +.ENDIF SHL1STDLIBS=\ $(SALLIB) \ |