diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-03-26 13:33:34 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-03-26 13:33:34 +0000 |
commit | 132ade80d14e26ab1b5a4b346ce76f9654192a66 (patch) | |
tree | 5982c52d08cb7b6d93ac26a31b9217bcea733cf2 /sysui | |
parent | 2bbfee84f46fd04b5cd4be968e81822966226910 (diff) |
INTEGRATION: CWS mingwport03 (1.3.100); FILE MERGED
2006/09/07 15:00:18 vg 1.3.100.1: #i53572# MinGW port
Diffstat (limited to 'sysui')
-rw-r--r-- | sysui/source/win32/QuickStart/so/makefile.mk | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/sysui/source/win32/QuickStart/so/makefile.mk b/sysui/source/win32/QuickStart/so/makefile.mk index 6d3f03e99c6f..25907863a2b5 100644 --- a/sysui/source/win32/QuickStart/so/makefile.mk +++ b/sysui/source/win32/QuickStart/so/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.3 $ +# $Revision: 1.4 $ # -# last change: $Author: rt $ $Date: 2005-09-09 11:52:22 $ +# last change: $Author: vg $ $Date: 2007-03-26 14:33:34 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -57,14 +57,19 @@ OBJFILES=$(OBJ)$/QuickStart.obj APP1OBJS=$(OBJFILES) APP1NOSAL=TRUE APP1TARGET=$(TARGET) -APP1STDLIBS=shell32.lib\ - ole32.lib\ - gdi32.lib\ - oleaut32.lib\ - comdlg32.lib\ - kernel32.lib\ - comsupp.lib\ - oleaut32.lib +.IF "$(COM)"=="GCC" +APP1STDLIBS=-luuid +.ELSE +APP1STDLIBS=comsupp.lib +.ENDIF + +APP1STDLIBS+=$(SHELL32LIB)\ + $(OLE32LIB)\ + $(GDI32LIB)\ + $(OLEAUT32LIB)\ + $(COMDLG32LIB)\ + $(KERNEL32LIB)\ + $(OLEAUT32LIB) APP1NOSVRES=$(RES)$/$(TARGET).res |