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.2 1998/09/24 23:59:40 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.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@
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
$(MAKE) PRODOCS="$(PRODOCS)" VER="" rtf
core:
$(MAKE) DOCS="$(COREDOCS)" rtf
rtf: man2help.tcl man2tcl $(DOCS)
LD_LIBRARY_PATH=$(TCL_SOURCE)/unix \
$(TCLSH) man2help.tcl tcl "$(VER)" $(DOCS)
winhelp: tcl.rtf
man2tcl: man2tcl.c
$(CC) $(CFLAGS) -o man2tcl man2tcl.c
|
>
|
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
$(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 \
$(TCLSH) man2help.tcl tcl "$(VER)" $(DOCS)
winhelp: tcl.rtf
man2tcl: man2tcl.c
$(CC) $(CFLAGS) -o man2tcl man2tcl.c
|