summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authordavygrvy <davygrvy@noemail.net>2004-01-15 21:46:21 (GMT)
committerdavygrvy <davygrvy@noemail.net>2004-01-15 21:46:21 (GMT)
commit59a3f5e838a16b83bf0f2a290aa953e063cb082d (patch)
treee638f5cd3b23a83e0619b59902ea1745a45cf6e1 /win/makefile.vc
parent251341e6e97dc56a162aade4674a62266f75ca92 (diff)
downloadtk-59a3f5e838a16b83bf0f2a290aa953e063cb082d.zip
tk-59a3f5e838a16b83bf0f2a290aa953e063cb082d.tar.gz
tk-59a3f5e838a16b83bf0f2a290aa953e063cb082d.tar.bz2
* win/tkWinSendCom.c: Placed the requirement for the special COM
libraries into the object file itself with #paragma comment (lib, ...) when built with VC++. This will simplify linking for users of the static library. uuid.lib is required for VC5.2, but is implicit with VC6. * win/makefile.vc: Removed 'ole32.lib oleaut32.lib uuid.lib' from $(baselibs). FossilOrigin-Name: 7d58561259d813bbc42d03b105c473d3afe232ea
Diffstat (limited to 'win/makefile.vc')
-rw-r--r--win/makefile.vc8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 27bad09..3ea888d 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -12,7 +12,7 @@
# Copyright (c) 2001-2003 David Gravereaux.
#
#------------------------------------------------------------------------------
-# RCS: @(#) $Id: makefile.vc,v 1.79 2004/01/13 13:43:36 vincentdarley Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.80 2004/01/15 21:46:22 davygrvy Exp $
#------------------------------------------------------------------------------
!if "$(MSVCDIR)" == ""
@@ -433,7 +433,7 @@ dlllflags = $(lflags) -dll
conlflags = $(lflags) -subsystem:console
guilflags = $(lflags) -subsystem:windows
-baselibs = kernel32.lib user32.lib ole32.lib oleaut32.lib uuid.lib
+baselibs = kernel32.lib user32.lib
guilibs = $(baselibs) gdi32.lib
@@ -799,10 +799,10 @@ $<
#---------------------------------------------------------------------
clean:
- -@$(RMDIR) $(TMP_DIR)
+ -$(RMDIR) $(TMP_DIR)
hose: clean
- -@$(RMDIR) $(OUT_DIR)
+ -$(RMDIR) $(OUT_DIR)
.SUFFIXES: