1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# This makefile is used to convert Tcl manual pages into various
# alternate formats:
#
# Windows help file: 1. Build the winhelp target on Unix
# 2. Build the helpfile target on Windows
#
# HTML: 1. Build the html target on Unix
# RCS: @(#) $Id: Makefile.in,v 1.1.2.3 1998/12/10 00:49:46 stanton Exp $
#TCL = tcl@TCL_VERSION@@TCL_PATCH_LEVEL@
#TK = tk@TCL_VERSION@@TCL_PATCH_LEVEL@
TCL = tcl@TCL_VERSION@
TK = tk@TCL_VERSION@
VER=@TCL_WIN_VERSION@
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# This makefile is used to convert Tcl manual pages into various
# alternate formats:
#
# Windows help file: 1. Build the winhelp target on Unix
# 2. Build the helpfile target on Windows
#
# HTML: 1. Build the html target on Unix
# RCS: @(#) $Id: Makefile.in,v 1.1.2.4 1999/02/10 23:31:25 stanton Exp $
#TCL = tcl@TCL_VERSION@@TCL_PATCH_LEVEL@
#TK = tk@TCL_VERSION@@TCL_PATCH_LEVEL@
TCL = tcl@TCL_VERSION@
TK = tk@TCL_VERSION@
VER=@TCL_WIN_VERSION@
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
PRODOCS = $(COREDOCS) $(PRO_DOCS) $(ITCL_DOCS)
TCLSH = $(TCL_SOURCE)/unix/tclsh
CC=@CC@
all: core
pro:
$(MAKE) PRODOCS="$(PRODOCS)" VER="" rtf
core:
$(MAKE) DOCS="$(COREDOCS)" rtf
rtf: man2help.tcl man2tcl $(DOCS)
LD_LIBRARY_PATH=$(TCL_SOURCE)/unix \
TCL_LIBRARY=$(TCL_SOURCE)/library \
|
|
|
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
PRODOCS = $(COREDOCS) $(PRO_DOCS) $(ITCL_DOCS)
TCLSH = $(TCL_SOURCE)/unix/tclsh
CC=@CC@
all: core
pro:
$(MAKE) DOCS="$(PRODOCS)" VER="" rtf
core:
$(MAKE) DOCS="$(COREDOCS)" rtf
rtf: man2help.tcl man2tcl $(DOCS)
LD_LIBRARY_PATH=$(TCL_SOURCE)/unix \
TCL_LIBRARY=$(TCL_SOURCE)/library \
|