makefile.vc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:27k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #------------------------------------------------------------------------------
  2. # makefile.vc --
  3. #
  4. # Microsoft Visual C++ makefile for use with nmake.exe v1.62+ (VC++ 5.0+)
  5. #
  6. # See the file "license.terms" for information on usage and redistribution
  7. # of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  8. # Copyright (c) 1995-1996 Sun Microsystems, Inc.
  9. # Copyright (c) 1998-2000 Ajuba Solutions.
  10. # Copyright (c) 2001-2005 ActiveState Corporation.
  11. # Copyright (c) 2001-2002 David Gravereaux.
  12. #
  13. #------------------------------------------------------------------------------
  14. # RCS: @(#) $Id: makefile.vc,v 1.67.2.18 2007/09/11 00:13:07 patthoyts Exp $
  15. #------------------------------------------------------------------------------
  16. # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR)
  17. # or with the MS Platform SDK (MSSDK). Visual Studio .NET 2003 and 2005 define
  18. # VCINSTALLDIR instead.
  19. !if !defined(MSDEVDIR) && !defined(MSVCDIR) && !defined(MSSDK) && !defined(VCINSTALLDIR)
  20. MSG = ^
  21. You need to run vcvars32.bat from Developer Studio or setenv.bat from the^
  22. Platform SDK first to setup the environment.  Jump to this line to read^
  23. the build instructions.
  24. !error $(MSG)
  25. !endif
  26. #------------------------------------------------------------------------------
  27. # HOW TO USE this makefile:
  28. #
  29. # 1)  It is now necessary to have MSVCDir, MSDevDir or MSSDK set in the
  30. #     environment.  This is used as a check to see if vcvars32.bat had been
  31. #     run prior to running nmake or during the installation of Microsoft
  32. #     Visual C++, MSVCDir had been set globally and the PATH adjusted.
  33. #     Either way is valid.
  34. #
  35. #     You'll need to run vcvars32.bat contained in the MsDev's vc(98)/bin
  36. #     directory to setup the proper environment, if needed, for your
  37. #     current setup.  This is a needed bootstrap requirement and allows the
  38. #     swapping of different environments to be easier.
  39. #
  40. # 2)  To use the Platform SDK (not expressly needed), run setenv.bat after
  41. #     vcvars32.bat according to the instructions for it.  This can also
  42. #     turn on the 64-bit compiler, if your SDK has it.
  43. #
  44. # 3)  Targets are:
  45. # release  -- builds the core, the shell. (default)
  46. # core     -- Only builds the core.
  47. # all      -- builds everything.
  48. # test     -- builds and runs the test suite.
  49. # tktest   -- just builds the binaries for the test suite.
  50. # install  -- installs the built binaries and libraries to $(INSTALLDIR)
  51. #     as the root of the install tree.
  52. # cwish    -- builds a console version of wish.
  53. # clean    -- removes the contents of $(TMP_DIR)
  54. # hose     -- removes the contents of $(TMP_DIR) and $(OUT_DIR)
  55. # genstubs -- rebuilds the Stubs table and support files (dev only).
  56. # depend   -- Generates an accurate set of source dependancies for this
  57. #     makefile.  Helpful to avoid problems when the sources are
  58. #     refreshed and you rebuild, but can "overbuild" when common
  59. #     headers like tkInt.h just get small changes.
  60. # winhelp  -- builds the windows .hlp file for Tcl from the troff man
  61. #     files.
  62. #
  63. # 4)  Macros usable on the commandline:
  64. # TCLDIR=<path>
  65. # Sets the location for where to find the Tcl headers and
  66. # libraries.  The install point is assumed when not specified.
  67. # Tk does need the source directory, though.  Tk comes very close
  68. # to not needing the sources, but does, in fact, require them.
  69. #
  70. # INSTALLDIR=<path>
  71. # Sets where to install Tcl from the built binaries.
  72. # C:Progra~1Tcl is assumed when not specified.
  73. #
  74. # OPTS=static,msvcrt,linkexten,threads,symbols,profile,none
  75. # Sets special options for the core.  The default is for none.
  76. # Any combination of the above may be used (comma separated).
  77. # 'none' will over-ride everything to nothing.
  78. #
  79. # static  =  Builds a static library of the core instead of a
  80. #    dll.  The shell will be static (and large), as well.
  81. # msvcrt  =  Effects the static option only to switch it from
  82. #    using libcmt(d) as the C runtime [by default] to
  83. #    msvcrt(d). This is useful for static embedding
  84. #    support.
  85. # staticpkg = Affects the static option only to switch wishXX.exe
  86. #    to have the dde and reg extension linked inside it.
  87. # threads =  Turns on full multithreading support.
  88. # thrdalloc = Use the thread allocator (shared global free pool).
  89. # symbols =  Adds symbols for step debugging.
  90. # profile =  Adds profiling hooks.  Map file is assumed.
  91. # loimpact =  Adds a flag for how NT treats the heap to keep memory
  92. #    in use, low.  This is said to impact alloc performance.
  93. #
  94. # STATS=memdbg,compdbg,none
  95. # Sets optional memory and bytecode compiler debugging code added
  96. # to the core.  The default is for none.  Any combination of the
  97. # above may be used (comma separated).  'none' will over-ride
  98. # everything to nothing.
  99. #
  100. # memdbg   = Enables the debugging memory allocator.
  101. # compdbg  = Enables byte compilation logging.
  102. #
  103. # MACHINE=(IX86|IA64|AMD64|ALPHA)
  104. # Set the machine type used for the compiler, linker, and
  105. # resource compiler.  This hook is needed to tell the tools
  106. # when alternate platforms are requested.  IX86 is the default
  107. # when not specified.
  108. #
  109. # TMP_DIR=<path>
  110. # OUT_DIR=<path>
  111. # Hooks to allow the intermediate and output directories to be
  112. # changed.  $(OUT_DIR) is assumed to be 
  113. # $(BINROOT)(Release|Debug) based on if symbols are requested.
  114. # $(TMP_DIR) will de $(OUT_DIR)<buildtype> by default.
  115. #
  116. # TESTPAT=<file>
  117. # Reads the tests requested to be run from this file.
  118. #
  119. # 5)  Examples:
  120. #
  121. # Basic syntax of calling nmake looks like this:
  122. # nmake [-nologo] -f makefile.vc [target|macrodef [target|macrodef] [...]]
  123. #
  124. #                        Standard (no frills)
  125. #       c:tk_srcwin>c:progra~1micros~1vc98binvcvars32.bat
  126. #       Setting environment for using Microsoft Visual C++ tools.
  127. #       c:tk_srcwin>nmake -f makefile.vc release
  128. #       c:tk_srcwin>nmake -f makefile.vc install INSTALLDIR=c:progra~1tcl
  129. #
  130. #                         Building for Win64
  131. #       c:tk_srcwin>c:progra~1micros~1vc98binvcvars32.bat
  132. #       Setting environment for using Microsoft Visual C++ tools.
  133. #       c:tk_srcwin>c:progra~1platfo~1setenv.bat /pre64 /RETAIL
  134. #       Targeting Windows pre64 RETAIL
  135. #       c:tk_srcwin>nmake -f makefile.vc MACHINE=IA64
  136. #
  137. #------------------------------------------------------------------------------
  138. #==============================================================================
  139. ###############################################################################
  140. #    //==================================================================\
  141. #   >>[               -> Do not modify below this line. <-               ]<<
  142. #   >>[  Please, use the commandline macros to modify how Tcl is built.  ]<<
  143. #   >>[  If you need more features, send us a patch for more macros.     ]<<
  144. #    \==================================================================//
  145. ###############################################################################
  146. #==============================================================================
  147. #------------------------------------------------------------------------------
  148. !if !exist("makefile.vc")
  149. MSG = ^
  150. You must run this makefile only from the directory it is in.^
  151. Please `cd` to its location first.
  152. !error $(MSG)
  153. !endif
  154. PROJECT = tk
  155. !include "rules.vc"
  156. !if $(TCLINSTALL)
  157. !message *** Warning: Tk requires the source distribution of Tcl to build from,
  158. !message ***    at this time, sorry.  Please set the TCLDIR macro to point to the
  159. !message ***    Tcl sources.
  160. !endif
  161. STUBPREFIX = $(PROJECT)stub
  162. DOTVERSION = 8.4
  163. VERSION = $(DOTVERSION:.=)
  164. WISHNAMEPREFIX = wish
  165. BINROOT = .
  166. ROOT = ..
  167. TK_LIBRARY = $(ROOT)library
  168. TKIMPLIB = "$(OUT_DIR)$(PROJECT)$(VERSION)$(SUFX).lib"
  169. TKLIBNAME = $(PROJECT)$(VERSION)$(SUFX).$(EXT)
  170. TKLIB = "$(OUT_DIR)$(TKLIBNAME)"
  171. TKSTUBLIBNAME = $(STUBPREFIX)$(VERSION).lib
  172. TKSTUBLIB = "$(OUT_DIR)$(TKSTUBLIBNAME)"
  173. WISH  = "$(OUT_DIR)$(WISHNAMEPREFIX)$(VERSION)$(SUFX).exe"
  174. WISHC  = "$(OUT_DIR)$(WISHNAMEPREFIX)c$(VERSION)$(SUFX).exe"
  175. TKTEST = "$(OUT_DIR)$(PROJECT)test.exe"
  176. CAT32 = "$(OUT_DIR)cat32.exe"
  177. LIB_INSTALL_DIR = $(_INSTALLDIR)lib
  178. BIN_INSTALL_DIR = $(_INSTALLDIR)bin
  179. DOC_INSTALL_DIR = $(_INSTALLDIR)doc
  180. SCRIPT_INSTALL_DIR = $(_INSTALLDIR)lib$(PROJECT)$(DOTVERSION)
  181. INCLUDE_INSTALL_DIR = $(_INSTALLDIR)include
  182. WISHOBJS = 
  183. $(TMP_DIR)winMain.obj 
  184. !if $(TCL_USE_STATIC_PACKAGES)
  185. $(TCLDDELIB) 
  186. $(TCLREGLIB) 
  187. !endif
  188. $(TMP_DIR)wish.res
  189. TKTESTOBJS = 
  190. $(TMP_DIR)tkTest.obj 
  191. $(TMP_DIR)tkSquare.obj 
  192. $(TMP_DIR)testMain.obj 
  193. $(TMP_DIR)tkWinTest.obj 
  194.         $(TMP_DIR)wish.res
  195. XLIBOBJS = 
  196. $(TMP_DIR)xcolors.obj 
  197. $(TMP_DIR)xdraw.obj 
  198. $(TMP_DIR)xgc.obj 
  199. $(TMP_DIR)ximage.obj 
  200. $(TMP_DIR)xutil.obj
  201. TKOBJS = 
  202. $(TMP_DIR)tkConsole.obj 
  203. $(TMP_DIR)tkUnixMenubu.obj 
  204. $(TMP_DIR)tkUnixScale.obj 
  205. $(XLIBOBJS) 
  206. $(TMP_DIR)tkWin3d.obj 
  207. $(TMP_DIR)tkWin32Dll.obj 
  208. $(TMP_DIR)tkWinButton.obj 
  209. $(TMP_DIR)tkWinClipboard.obj 
  210. $(TMP_DIR)tkWinColor.obj 
  211. $(TMP_DIR)tkWinConfig.obj 
  212. $(TMP_DIR)tkWinCursor.obj 
  213. $(TMP_DIR)tkWinDialog.obj 
  214. $(TMP_DIR)tkWinDraw.obj 
  215. $(TMP_DIR)tkWinEmbed.obj 
  216. $(TMP_DIR)tkWinFont.obj 
  217. $(TMP_DIR)tkWinImage.obj 
  218. $(TMP_DIR)tkWinInit.obj 
  219. $(TMP_DIR)tkWinKey.obj 
  220. $(TMP_DIR)tkWinMenu.obj 
  221. $(TMP_DIR)tkWinPixmap.obj 
  222. $(TMP_DIR)tkWinPointer.obj 
  223. $(TMP_DIR)tkWinRegion.obj 
  224. $(TMP_DIR)tkWinScrlbr.obj 
  225. $(TMP_DIR)tkWinSend.obj 
  226. $(TMP_DIR)tkWinWindow.obj 
  227. $(TMP_DIR)tkWinWm.obj 
  228. $(TMP_DIR)tkWinX.obj 
  229. $(TMP_DIR)stubs.obj 
  230. $(TMP_DIR)tk3d.obj 
  231. $(TMP_DIR)tkArgv.obj 
  232. $(TMP_DIR)tkAtom.obj 
  233. $(TMP_DIR)tkBind.obj 
  234. $(TMP_DIR)tkBitmap.obj 
  235. $(TMP_DIR)tkButton.obj 
  236. $(TMP_DIR)tkCanvArc.obj 
  237. $(TMP_DIR)tkCanvBmap.obj 
  238. $(TMP_DIR)tkCanvImg.obj 
  239. $(TMP_DIR)tkCanvLine.obj 
  240. $(TMP_DIR)tkCanvPoly.obj 
  241. $(TMP_DIR)tkCanvPs.obj 
  242. $(TMP_DIR)tkCanvText.obj 
  243. $(TMP_DIR)tkCanvUtil.obj 
  244. $(TMP_DIR)tkCanvWind.obj 
  245. $(TMP_DIR)tkCanvas.obj 
  246. $(TMP_DIR)tkClipboard.obj 
  247. $(TMP_DIR)tkCmds.obj 
  248. $(TMP_DIR)tkColor.obj 
  249. $(TMP_DIR)tkConfig.obj 
  250. $(TMP_DIR)tkCursor.obj 
  251. $(TMP_DIR)tkEntry.obj 
  252. $(TMP_DIR)tkError.obj 
  253. $(TMP_DIR)tkEvent.obj 
  254. $(TMP_DIR)tkFileFilter.obj 
  255. $(TMP_DIR)tkFocus.obj 
  256. $(TMP_DIR)tkFont.obj 
  257. $(TMP_DIR)tkFrame.obj 
  258. $(TMP_DIR)tkGC.obj 
  259. $(TMP_DIR)tkGeometry.obj 
  260. $(TMP_DIR)tkGet.obj 
  261. $(TMP_DIR)tkGrab.obj 
  262. $(TMP_DIR)tkGrid.obj 
  263. $(TMP_DIR)tkImage.obj 
  264. $(TMP_DIR)tkImgBmap.obj 
  265. $(TMP_DIR)tkImgGIF.obj 
  266. $(TMP_DIR)tkImgPPM.obj 
  267. $(TMP_DIR)tkImgPhoto.obj 
  268. $(TMP_DIR)tkImgUtil.obj 
  269. $(TMP_DIR)tkListbox.obj 
  270. $(TMP_DIR)tkMacWinMenu.obj 
  271. $(TMP_DIR)tkMain.obj 
  272. $(TMP_DIR)tkMenu.obj 
  273. $(TMP_DIR)tkMenubutton.obj 
  274. $(TMP_DIR)tkMenuDraw.obj 
  275. $(TMP_DIR)tkMessage.obj 
  276. $(TMP_DIR)tkPanedWindow.obj 
  277. $(TMP_DIR)tkObj.obj 
  278. $(TMP_DIR)tkOldConfig.obj 
  279. $(TMP_DIR)tkOption.obj 
  280. $(TMP_DIR)tkPack.obj 
  281. $(TMP_DIR)tkPlace.obj 
  282. $(TMP_DIR)tkPointer.obj 
  283. $(TMP_DIR)tkRectOval.obj 
  284. $(TMP_DIR)tkScale.obj 
  285. $(TMP_DIR)tkScrollbar.obj 
  286. $(TMP_DIR)tkSelect.obj 
  287. $(TMP_DIR)tkStyle.obj 
  288. $(TMP_DIR)tkText.obj 
  289. $(TMP_DIR)tkTextBTree.obj 
  290. $(TMP_DIR)tkTextDisp.obj 
  291. $(TMP_DIR)tkTextImage.obj 
  292. $(TMP_DIR)tkTextIndex.obj 
  293. $(TMP_DIR)tkTextMark.obj 
  294. $(TMP_DIR)tkTextTag.obj 
  295. $(TMP_DIR)tkTextWind.obj 
  296. $(TMP_DIR)tkTrig.obj 
  297. $(TMP_DIR)tkUndo.obj 
  298. $(TMP_DIR)tkUtil.obj 
  299. $(TMP_DIR)tkVisual.obj 
  300. $(TMP_DIR)tkStubInit.obj 
  301. $(TMP_DIR)tkStubLib.obj 
  302. $(TMP_DIR)tkWindow.obj 
  303. !if !$(STATIC_BUILD)
  304. $(TMP_DIR)tk.res
  305. !endif
  306. TKSTUBOBJS = 
  307. $(TMP_DIR)tkStubLib.obj 
  308. $(TMP_DIR)tkStubImg.obj
  309. WINDIR          = $(ROOT)win
  310. GENERICDIR = $(ROOT)generic
  311. XLIBDIR = $(ROOT)xlib
  312. BITMAPDIR = $(ROOT)bitmaps
  313. DOCDIR = $(ROOT)doc
  314. RCDIR = $(WINDIR)rc
  315. !if $(TCLINSTALL)
  316. TCL_INCLUDES = -I "$(_TCLDIR)include"
  317. !else
  318. TCL_INCLUDES = -I "$(_TCLDIR)win" -I "$(_TCLDIR)generic"
  319. !endif
  320. TK_INCLUDES = -I"$(WINDIR)" -I"$(GENERICDIR)" -I"$(BITMAPDIR)" -I"$(XLIBDIR)" 
  321. $(TCL_INCLUDES)
  322. TK_DEFINES = $(OPTDEFINES)
  323. #---------------------------------------------------------------------
  324. # Compile flags
  325. #---------------------------------------------------------------------
  326. !if !$(DEBUG)
  327. !if $(OPTIMIZING)
  328. ### This cranks the optimization level to maximize speed
  329. cdebug = -O2 $(OPTIMIZATIONS)
  330. !else
  331. cdebug =
  332. !endif
  333. !else if "$(MACHINE)" == "IA64" || "$(MACHINE)" == "AMD64"
  334. ### Warnings are too many, can't support warnings into errors.
  335. cdebug = -Zi -Od $(DEBUGFLAGS)
  336. !else
  337. cdebug = -Zi -WX $(DEBUGFLAGS)
  338. !endif
  339. ### Declarations common to all compiler options
  340. cwarn = -D _CRT_SECURE_NO_DEPRECATE -D _CRT_NONSTDC_NO_DEPRECATE
  341. cflags = -nologo -c $(COMPILERFLAGS) $(cwarn) -Fp$(TMP_DIR)^
  342. !if $(FULLWARNINGS)
  343. cflags = $(cflags) -W4
  344. !else
  345. cflags = $(cflags) -W3
  346. !endif
  347. !if $(MSVCRT)
  348. !if "$(DBGX)" == ""
  349. crt = -MD
  350. !else
  351. crt = -MDd
  352. !endif
  353. !else
  354. !if "$(DBGX)" == ""
  355. crt = -MT
  356. !else
  357. crt = -MTd
  358. !endif
  359. !endif
  360. BASE_CFLAGS = $(cdebug) $(cflags) $(crt) $(TK_INCLUDES)
  361. TK_CFLAGS = $(BASE_CFLAGS) $(TK_DEFINES) -DUSE_TCL_STUBS
  362. CON_CFLAGS = $(cdebug) $(cflags) $(crt) -DCONSOLE
  363. WISH_CFLAGS = $(BASE_CFLAGS) $(TK_DEFINES)
  364. #---------------------------------------------------------------------
  365. # Link flags
  366. #---------------------------------------------------------------------
  367. !if $(DEBUG)
  368. ldebug = -debug:full -debugtype:cv
  369. !else
  370. ldebug = -release -opt:ref -opt:icf,3
  371. !endif
  372. ### Declarations common to all linker options
  373. lflags = -nologo -machine:$(MACHINE) $(LINKERFLAGS) $(ldebug)
  374. !if $(FULLWARNINGS)
  375. lflags = $(lflags) -warn:3
  376. !endif
  377. !if $(PROFILE)
  378. lflags = $(lflags) -profile
  379. !endif
  380. !if $(ALIGN98_HACK) && !$(STATIC_BUILD)
  381. ### Align sections for PE size savings.
  382. lflags = $(lflags) -opt:nowin98
  383. !else if !$(ALIGN98_HACK) && $(STATIC_BUILD)
  384. ### Align sections for speed in loading by choosing the virtual page size.
  385. lflags = $(lflags) -align:4096
  386. !endif
  387. !if $(LOIMPACT)
  388. lflags = $(lflags) -ws:aggressive
  389. !endif
  390. dlllflags = $(lflags) -dll
  391. conlflags = $(lflags) -subsystem:console
  392. guilflags = $(lflags) -subsystem:windows
  393. baselibs  = kernel32.lib advapi32.lib user32.lib
  394. # Avoid 'unresolved external symbol __security_cookie' errors.
  395. # c.f. http://support.microsoft.com/?id=894573
  396. !if "$(MACHINE)" == "IA64" || "$(MACHINE)" == "AMD64"
  397. baselibs   = $(baselibs) bufferoverflowU.lib
  398. !endif
  399. guilibs   = $(baselibs) shell32.lib gdi32.lib comdlg32.lib winspool.lib imm32.lib comctl32.lib
  400. #---------------------------------------------------------------------
  401. # TkTest flags
  402. #---------------------------------------------------------------------
  403. !if "$(TESTPAT)" != ""
  404. TESTFLAGS = $(TESTFLAGS) -file $(TESTPAT)
  405. !endif
  406. #---------------------------------------------------------------------
  407. # Project specific targets
  408. #---------------------------------------------------------------------
  409. release:  setup $(TKSTUBLIB) $(WISH)
  410. all:   release $(CAT32)
  411. core:   setup $(TKSTUBLIB) $(TKLIB)
  412. cwish:   $(WISHC)
  413. install:  install-binaries install-libraries install-docs
  414. tktest:   setup $(TKTEST) $(CAT32)
  415. test: setup $(TKTEST) $(TKLIB) $(CAT32)
  416. set TCL_LIBRARY=$(TCL_LIBRARY)
  417. set TK_LIBRARY=$(TK_LIBRARY)
  418. !if $(TCLINSTALL)
  419. set PATH=$(_TCLDIR)bin;$(PATH)
  420. !else
  421. set PATH=$(_TCLDIR)win$(BUILDDIRTOP);$(PATH)
  422. !endif
  423. !if "$(OS)" == "Windows_NT"  || "$(MSVCDIR)" == "IDE"
  424. $(TKTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS) | $(CAT32)
  425. !else
  426. $(TKTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS) > tests.log
  427. type tests.log | more
  428. !endif
  429. runtest: setup $(TKTEST) $(TKLIB) $(CAT32)
  430. set TCL_LIBRARY=$(TCL_LIBRARY)
  431. set TK_LIBRARY=$(TK_LIBRARY)
  432. !if $(TCLINSTALL)
  433. set PATH=$(_TCLDIR)bin;$(PATH)
  434. !else
  435. set PATH=$(_TCLDIR)win$(BUILDDIRTOP);$(PATH)
  436. !endif
  437. $(TKTEST) 
  438. rundemo: setup $(TKTEST) $(TKLIB) $(CAT32)
  439. set TCL_LIBRARY=$(TCL_LIBRARY)
  440. !if $(TCLINSTALL)
  441. set PATH=$(_TCLDIR)bin;$(PATH)
  442. !else
  443. set PATH=$(_TCLDIR)win$(BUILDDIRTOP);$(PATH)
  444. !endif
  445. $(TKTEST) $(ROOT)librarydemoswidget
  446. setup:
  447. @if not exist $(OUT_DIR)nul mkdir $(OUT_DIR)
  448. @if not exist $(TMP_DIR)nul mkdir $(TMP_DIR)
  449. !if !$(STATIC_BUILD)
  450. $(TKIMPLIB): $(TKLIB)
  451. !endif
  452. $(TKLIB): $(TKOBJS)
  453. !if $(STATIC_BUILD)
  454. $(lib32) -nologo -out:$@ @<<
  455. $**
  456. <<
  457. !else
  458. $(link32) $(dlllflags) -base:@$(COFFBASE),tk -out:$@ $(guilibs) 
  459. $(TCLSTUBLIB) @<<
  460. $**
  461. <<
  462. $(_VC_MANIFEST_EMBED_DLL)
  463. -@del $*.exp
  464. !endif
  465. $(TKSTUBLIB): $(TKSTUBOBJS)
  466. $(lib32) -nologo -out:$@ $**
  467. $(WISH): $(WISHOBJS) $(TKIMPLIB)
  468. $(link32) $(guilflags) -out:$@ $(guilibs) $(TCLIMPLIB) $**
  469. $(_VC_MANIFEST_EMBED_EXE)
  470. $(WISHC): $(WISHOBJS) $(TKIMPLIB)
  471. $(link32) $(conlflags) -out:$@ $(guilibs) $(TCLIMPLIB) $**
  472. $(_VC_MANIFEST_EMBED_EXE)
  473. $(TKTEST): $(TKTESTOBJS) $(TKIMPLIB)
  474. $(link32) $(guilflags) -out:$@ $(guilibs) $(TCLIMPLIB) $**
  475. $(_VC_MANIFEST_EMBED_EXE)
  476. $(CAT32): $(_TCLDIR)wincat.c
  477. $(cc32) $(CON_CFLAGS) -Fo$(TMP_DIR) $?
  478. $(link32) $(conlflags) -out:$@ -stack:16384 $(TMP_DIR)cat.obj $(baselibs)
  479. $(_VC_MANIFEST_EMBED_EXE)
  480. install-binaries:
  481.         @echo installing binaries in "$(BIN_INSTALL_DIR)"
  482. @$(CPY) "$(WISH)" "$(BIN_INSTALL_DIR)"
  483. !if $(TKLIB) != $(TKIMPLIB)
  484. @$(CPY) "$(TKLIB)" "$(BIN_INSTALL_DIR)"
  485. !endif
  486. @$(CPY) "$(TKIMPLIB)" "$(LIB_INSTALL_DIR)"
  487. @$(CPY) "$(TKSTUBLIB)" "$(LIB_INSTALL_DIR)"
  488. !if !$(STATIC_BUILD)
  489. @-del "$(SCRIPT_INSTALL_DIR)pkgIndex.tcl"
  490. @echo if {[package vcompare [package provide Tcl] $(TCL_DOTVERSION)] != 0} { return } > "$(OUT_DIR)pkgIndex.tcl"
  491. @echo package ifneeded Tk $(DOTVERSION) [list load [file join $$dir .. .. bin $(TKLIBNAME)] Tk] >>"$(OUT_DIR)pkgIndex.tcl"
  492. @$(CPY) "$(OUT_DIR)pkgIndex.tcl" "$(SCRIPT_INSTALL_DIR)"
  493. !endif
  494. install-libraries:
  495.         @echo installing headers in "$(INCLUDE_INSTALL_DIR)"
  496. @$(CPY) "$(GENERICDIR)tk.h" "$(INCLUDE_INSTALL_DIR)"
  497. @$(CPY) "$(GENERICDIR)tkDecls.h" "$(INCLUDE_INSTALL_DIR)"
  498. @$(CPY) "$(GENERICDIR)tkPlatDecls.h" "$(INCLUDE_INSTALL_DIR)"
  499. @$(CPY) "$(GENERICDIR)tkIntXlibDecls.h" "$(INCLUDE_INSTALL_DIR)"
  500. @$(CPY) "$(XLIBDIR)X11*.h" "$(INCLUDE_INSTALL_DIR)X11"
  501.         @echo installing library files in "$(SCRIPT_INSTALL_DIR)"
  502. @$(CPY) "$(ROOT)library*" "$(SCRIPT_INSTALL_DIR)"
  503. @$(CPY) "$(ROOT)libraryimages*" "$(SCRIPT_INSTALL_DIR)images"
  504. @$(CPY) "$(ROOT)librarymsgs*" "$(SCRIPT_INSTALL_DIR)msgs"
  505.         @echo installing demo files in "$(SCRIPT_INSTALL_DIR)demos"
  506. @$(CPY) "$(ROOT)librarydemos*" "$(SCRIPT_INSTALL_DIR)demos"
  507. @$(CPY) "$(ROOT)librarydemosimages*" "$(SCRIPT_INSTALL_DIR)demosimages"
  508. #---------------------------------------------------------------------
  509. # Regenerate the stubs files.
  510. #---------------------------------------------------------------------
  511. genstubs:
  512. set TCL_LIBRARY=$(TCL_LIBRARY)
  513. $(TCLSH) $(_TCLDIR)toolsgenStubs.tcl $(GENERICDIR) 
  514. $(GENERICDIR)$(PROJECT).decls $(GENERICDIR)$(PROJECT)Int.decls
  515. #---------------------------------------------------------------------
  516. # Generate the makefile depedancies.
  517. #---------------------------------------------------------------------
  518. depend:
  519. !if !exist($(TCLSH))
  520. @echo Build tclsh first!
  521. !else
  522. set TCL_LIBRARY=$(TCL_LIBRARY)
  523. $(TCLSH) $(TOOLSDIR:=/)/mkdepend.tcl -vc32 -out:"$(OUT_DIR)depend.mk" 
  524. -passthru:"-DBUILD_tcl $(TK_INCLUDES:"="")" $(GENERICDIR) 
  525. $(COMPATDIR) $(WINDIR) @<<
  526. $(TKOBJS)
  527. <<
  528. !endif
  529. #---------------------------------------------------------------------
  530. # Regenerate the windows help files.
  531. #---------------------------------------------------------------------
  532. HLPBASE = $(PROJECT)$(VERSION)
  533. HELPFILE = $(OUT_DIR)$(HLPBASE).hlp
  534. HELPCNT = $(OUT_DIR)$(HLPBASE).cnt
  535. DOCTMP_DIR = $(OUT_DIR)$(PROJECT)_docs
  536. HELPRTF = $(DOCTMP_DIR)$(PROJECT).rtf
  537. MAN2HELP = $(DOCTMP_DIR)man2help.tcl
  538. MAN2HELP2 = $(DOCTMP_DIR)man2help2.tcl
  539. INDEX = $(DOCTMP_DIR)index.tcl
  540. BMP = $(DOCTMP_DIR)lamp.bmp
  541. BMP_NOPATH = lamp.bmp
  542. MAN2TCL = $(DOCTMP_DIR)man2tcl.exe
  543. winhelp: docsetup $(HELPFILE)
  544. docsetup:
  545. @if not exist $(DOCTMP_DIR)nul mkdir $(DOCTMP_DIR)
  546. $(MAN2HELP) $(MAN2HELP2) $(INDEX): $(TCLTOOLSDIR)$$(@F)
  547. $(CPY) $(TCLTOOLSDIR)$(@F) $(@D)
  548. $(BMP):
  549. $(CPY) $(WINDIR)$(@F) $(@D)
  550. $(HELPFILE): $(HELPRTF) $(BMP)
  551. cd $(DOCTMP_DIR)
  552. start /wait hcrtf.exe -x <<$(PROJECT).hpj
  553. [OPTIONS]
  554. COMPRESS=12 Hall Zeck
  555. LCID=0x409 0x0 0x0 ; English (United States)
  556. TITLE=Tk Reference Manual
  557. BMROOT=.
  558. CNT=$(@B).cnt
  559. HLP=$(@B).hlp
  560. [FILES]
  561. $(PROJECT).rtf
  562. [WINDOWS]
  563. main="Tcl/Tk Reference Manual",,27648,(r15263976),(r4227327)
  564. [CONFIG]
  565. BrowseButtons()
  566. CreateButton(1, "Web", ExecFile("http://www.tcl.tk"))
  567. CreateButton(2, "SF", ExecFile("http://sf.net/projects/tcl"))
  568. CreateButton(3, "Wiki", ExecFile("http://wiki.tcl.tk"))
  569. CreateButton(4, "FAQ", ExecFile("http://www.purl.org/NET/Tcl-FAQ/"))
  570. <<
  571. cd $(MAKEDIR)
  572. $(CPY) "$(DOCTMP_DIR)$(@B).hlp" "$(OUT_DIR)"
  573. $(CPY) "$(DOCTMP_DIR)$(@B).cnt" "$(OUT_DIR)"
  574. $(MAN2TCL): $(TCLTOOLSDIR)$$(@B).c
  575. $(cc32) -nologo -G4 -ML -O2 -Fo$(@D) $(TCLTOOLSDIR)$(@B).c -link -out:$@
  576. $(HELPRTF): $(MAN2TCL) $(MAN2HELP) $(MAN2HELP2) $(INDEX)
  577. $(TCLSH) $(MAN2HELP) -bitmap $(BMP_NOPATH) $(PROJECT) $(VERSION) $(DOCDIR:=/)
  578. install-docs:
  579. !if exist($(HELPFILE))
  580. $(CPY) "$(HELPFILE)" "$(DOC_INSTALL_DIR)"
  581. $(CPY) "$(HELPCNT)" "$(DOC_INSTALL_DIR)"
  582. $(TCLSH) <<
  583. puts "Installing $(PROJECT)'s helpfile contents into Tcl's ..."
  584. set f [open "$(DOC_INSTALL_DIR:=/)/tcl$(VERSION).cnt" r]
  585. while {![eof $$f]} {
  586.     if {[regexp {:Include $(PROJECT)([0-9]{2}).cnt} [gets $$f] dummy ver]} {
  587. if {$$ver == $(VERSION)} {
  588.     puts "Already installed."
  589.     exit
  590. } else {
  591.     # do something here logical to remove (or replace) it.
  592.     puts "$$ver != $(VERSION), unfinished code path, die, die!"
  593.     exit 1
  594. }
  595.     }
  596. }
  597. close $$f
  598. set f [open "$(DOC_INSTALL_DIR:=/)/tcl$(VERSION).cnt" a]
  599. puts $$f {:Include $(HLPBASE).cnt}
  600. close $$f
  601. <<
  602. start /wait winhlp32 -g $(DOC_INSTALL_DIR)tcl$(VERSION).hlp
  603. !endif
  604. #---------------------------------------------------------------------
  605. # Special case object file targets
  606. #---------------------------------------------------------------------
  607. $(TMP_DIR)testMain.obj: $(WINDIR)winMain.c
  608. !if $(TCL_USE_STATIC_PACKAGES)
  609. $(cc32) $(WISH_CFLAGS) -DTK_TEST -DTCL_USE_STATIC_PACKAGES -Fo$@ $?
  610. !else
  611. $(cc32) $(WISH_CFLAGS) -DTK_TEST -Fo$@ $?
  612. !endif
  613. $(TMP_DIR)tkTest.obj: $(GENERICDIR)tkTest.c
  614. $(cc32) $(WISH_CFLAGS) -Fo$@ $?
  615. $(TMP_DIR)tkWinTest.obj: $(WINDIR)tkWinTest.c
  616. $(cc32) $(WISH_CFLAGS) -Fo$@ $?
  617. $(TMP_DIR)tkSquare.obj: $(GENERICDIR)tkSquare.c
  618. $(cc32) $(WISH_CFLAGS) -Fo$@ $?
  619. $(TMP_DIR)winMain.obj: $(WINDIR)winMain.c
  620. !if $(TCL_USE_STATIC_PACKAGES)
  621. $(cc32) $(WISH_CFLAGS) -DTCL_USE_STATIC_PACKAGES -Fo$@ $?
  622. !else
  623. $(cc32) $(WISH_CFLAGS) -Fo$@ $?
  624. !endif
  625. # The following objects are part of the stub library and should not
  626. # be built as DLL objects but none of the symbols should be exported
  627. # and no reference made to a C runtime.
  628. $(TMP_DIR)tkStubLib.obj : $(GENERICDIR)tkStubLib.c
  629. $(cc32) $(cdebug) $(cflags) $(TK_INCLUDES) -Zl -DSTATIC_BUILD -Fo$@ $?
  630. $(TMP_DIR)tkStubImg.obj : $(GENERICDIR)tkStubImg.c
  631. $(cc32) $(cdebug) $(cflags) $(TK_INCLUDES) -Zl -DSTATIC_BUILD -Fo$@ $?
  632. #---------------------------------------------------------------------
  633. # Dedependency rules
  634. #---------------------------------------------------------------------
  635. $(TMP_DIR)wish.exe.manifest: $(WINDIR)wish.exe.manifest.in
  636. !if ![sed "1d" < NUL > NUL]
  637.         sed -f << $** > $@
  638. s/@MACHINE@/$(MACHINE:IX86=X86)/
  639. s/@TK_WIN_VERSION@/$(DOTVERSION).0.0/
  640. <<
  641. !else
  642. $(TCLSH) <<
  643. set f [open {$(WINDIR:=/)/wish.exe.manifest.in} r]
  644. set data [read $$f]
  645. close $$f
  646. set mach {$(MACHINE)}
  647. if {[regexp -nocase {$(IX86)$$} $mach ]} {set mach X86}
  648. set winver "$(DOTVERSION).0.0"
  649. set data [string map [list @MACHINE@ $$mach @TK_WIN_VERSION@ $$winver] $$data]
  650. puts {Creating $(TMP_DIR:=/)/wish.exe.manifest}
  651. set f [open {$(TMP_DIR:=/)/wish.exe.manifest} w]
  652. puts -nonewline $$f $$data
  653. close $$f
  654. exit
  655. <<
  656. !endif
  657. $(TMP_DIR)tk.res: 
  658.     $(RCDIR)buttons.bmp 
  659.     $(RCDIR)cursor*.cur 
  660.     $(RCDIR)tk.ico
  661. $(GENERICDIR)/default.h: $(WINDIR)/tkWinDefault.h
  662. $(GENERICDIR)/tkButton.c: $(GENERICDIR)/default.h
  663. $(GENERICDIR)/tkCanvas.c: $(GENERICDIR)/default.h
  664. $(GENERICDIR)/tkEntry.c: $(GENERICDIR)/default.h
  665. $(GENERICDIR)/tkFrame.c: $(GENERICDIR)/default.h
  666. $(GENERICDIR)/tkListbox.c: $(GENERICDIR)/default.h
  667. $(GENERICDIR)/tkMenu.c: $(GENERICDIR)/default.h
  668. $(GENERICDIR)/tkMenubutton.c: $(GENERICDIR)/default.h
  669. $(GENERICDIR)/tkMessage.c: $(GENERICDIR)/default.h
  670. $(GENERICDIR)/tkPanedWindow.c: $(GENERICDIR)/default.h
  671. $(GENERICDIR)/tkScale.c: $(GENERICDIR)/default.h
  672. $(GENERICDIR)/tkScrollbar.c: $(GENERICDIR)/default.h
  673. $(GENERICDIR)/tkText.c: $(GENERICDIR)/default.h
  674. $(GENERICDIR)/tkTextIndex.c: $(GENERICDIR)/default.h
  675. $(GENERICDIR)/tkTextTag.c: $(GENERICDIR)/default.h
  676. $(GENERICDIR)/tkUndo.c: $(GENERICDIR)/tkUndo.h
  677. $(GENERICDIR)/tkText.c: $(GENERICDIR)/tkText.h
  678. $(GENERICDIR)/tkTextBTree.c: $(GENERICDIR)/tkText.h
  679. $(GENERICDIR)/tkTextDisp.c: $(GENERICDIR)/tkText.h
  680. $(GENERICDIR)/tkTextDisp.c: $(GENERICDIR)/tkText.h
  681. $(GENERICDIR)/tkTextImage.c: $(GENERICDIR)/tkText.h
  682. $(GENERICDIR)/tkTextIndex.c: $(GENERICDIR)/tkText.h
  683. $(GENERICDIR)/tkTextMark.c: $(GENERICDIR)/tkText.h
  684. $(GENERICDIR)/tkTextTag.c: $(GENERICDIR)/tkText.h
  685. $(GENERICDIR)/tkTextWind.c: $(GENERICDIR)/tkText.h
  686. $(GENERICDIR)/tkMacWinMenu.c: $(GENERICDIR)/tkMenu.h
  687. $(GENERICDIR)/tkMenu.c: $(GENERICDIR)/tkMenu.h
  688. $(GENERICDIR)/tkMenuDraw.c: $(GENERICDIR)/tkMenu.h
  689. $(WINDIR)/tkWinMenu.c: $(GENERICDIR)/tkMenu.h
  690. !if exist("$(OUT_DIR)depend.mk")
  691. !include "$(OUT_DIR)depend.mk"
  692. !message *** Dependency rules in effect.
  693. !else
  694. !message *** Dependency rules are not being used.
  695. !endif
  696. ### add a spacer in the output
  697. !message
  698. #---------------------------------------------------------------------
  699. # Implicit rules
  700. #---------------------------------------------------------------------
  701. {$(XLIBDIR)}.c{$(TMP_DIR)}.obj::
  702. $(cc32) -DBUILD_tk $(TK_CFLAGS) -Fo$(TMP_DIR) @<<
  703. $<
  704. <<
  705. {$(GENERICDIR)}.c{$(TMP_DIR)}.obj::
  706. $(cc32) -DBUILD_tk $(TK_CFLAGS) -Fo$(TMP_DIR) @<<
  707. $<
  708. <<
  709. {$(WINDIR)}.c{$(TMP_DIR)}.obj::
  710. $(cc32) -DBUILD_tk $(TK_CFLAGS) -Fo$(TMP_DIR) @<<
  711. $<
  712. <<
  713. {$(ROOT)unix}.c{$(TMP_DIR)}.obj::
  714. $(cc32) -DBUILD_tk $(TK_CFLAGS) -Fo$(TMP_DIR) @<<
  715. $<
  716. <<
  717. !if $(DEBUG)
  718. RCDEBUG = -d DEBUG
  719. !else
  720. RCDEBUG = 
  721. !endif
  722. !if $(TCL_THREADS)
  723. RCTHREADS = -d TCL_THREADS
  724. !else
  725. RCTHREADS =
  726. !endif
  727. !if $(STATIC_BUILD)
  728. RCSTATIC = -d STATIC_BUILD
  729. !else
  730. RCSTATIC =
  731. !endif
  732. {$(RCDIR)}.rc{$(TMP_DIR)}.res:
  733. $(rc32) -fo $@ -r -i "$(GENERICDIR)" -i "$(TMP_DIR)" $(TCL_INCLUDES) 
  734. $(RCDEBUG) $(RCTHREADS) $(RCSTATIC) 
  735. $<
  736. $(TMP_DIR)tk.res: $(TMP_DIR)wish.exe.manifest
  737. $(TMP_DIR)wish.res: $(TMP_DIR)wish.exe.manifest
  738. #---------------------------------------------------------------------
  739. # Clean up
  740. #---------------------------------------------------------------------
  741. clean:
  742. -@$(RMDIR) $(TMP_DIR)
  743. hose: clean
  744. -@$(RMDIR) $(OUT_DIR)
  745. .SUFFIXES:
  746. .SUFFIXES:.c .rc