1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
-
+
|
# Visual C++ 2.x and 4.0 makefile
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# Copyright (c) 1995-1996 Sun Microsystems, Inc.
# Copyright (c) 1998-1999 by Scriptics Corporation.
#
# RCS: @(#) $Id: makefile.vc,v 1.26.2.1 1999/04/21 01:56:03 rjohnson Exp $
# RCS: @(#) $Id: makefile.vc,v 1.26.2.2 1999/04/21 18:40:53 surles Exp $
# Does not depend on the presence of any environment variables in
# order to compile tcl; all needed information is derived from
# location of the compiler directories.
#
# Project directories
|
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
|
318
319
320
321
322
323
324
325
326
327
328
329
330
331
|
-
|
release: setup $(TCLSH) dlls
dlls: setup $(TCL16DLL) $(TCLPIPEDLL) $(TCLREGDLL) $(TCLDDEDLL)
all: setup $(TCLSH) dlls $(CAT16) $(CAT32)
tcltest: setup $(TCLTEST) dlls $(CAT16) $(CAT32)
plugin: setup $(TCLPLUGINDLL) $(TCLSHP)
install: install-binaries install-libraries
test: setup $(TCLTEST) dlls $(CAT16) $(CAT32)
copy $(WINDIR)\pkgIndex.tcl $(OUTDIR)
set TCL_LIBRARY=$(ROOT)/library
$(TCLTEST) << "$(TCLREGDLL)"
load [lindex $$argv 0] registry
source $(ROOT)/tests/all.tcl
<<
setup:
|