diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-03-26 13:33:23 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-03-26 13:33:23 +0000 |
commit | 2bbfee84f46fd04b5cd4be968e81822966226910 (patch) | |
tree | 50d5b0b6fd385c769e09ab51d10fb5b86bb5e9e2 /sysui/source | |
parent | c42ecd21c51eebe3f3dc183567c424cb95020e00 (diff) |
INTEGRATION: CWS mingwport03 (1.6.100); FILE MERGED
2006/09/07 15:00:18 vg 1.6.100.1: #i53572# MinGW port
Diffstat (limited to 'sysui/source')
-rw-r--r-- | sysui/source/win32/QuickStart/makefile.mk | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/sysui/source/win32/QuickStart/makefile.mk b/sysui/source/win32/QuickStart/makefile.mk index c8228105ec60..38e8ccd3645f 100644 --- a/sysui/source/win32/QuickStart/makefile.mk +++ b/sysui/source/win32/QuickStart/makefile.mk @@ -4,9 +4,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.6 $ +# $Revision: 1.7 $ # -# last change: $Author: rt $ $Date: 2005-09-09 11:52:05 $ +# last change: $Author: vg $ $Date: 2007-03-26 14:33:23 $ # # The Contents of this file are made available subject to # the terms of GNU Lesser General Public License Version 2.1. @@ -56,14 +56,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 |