blob: e6f33114a5788b980b0fcbe1429f961829930d69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# 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
# SCCS: %Z% $Id: Makefile.in,v 1.3 1998/08/21 10:44:44 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@
TCL_SOURCE = @srcdir@/..
TK_SOURCE = @srcdir@/../../$(TK)
PRO_SOURCE = @srcdir@/../../pro
ITCL_SOURCE = @srcdir@/../../itcl3.0.1
TCL_DOCS = \
$(TCL_SOURCE)/doc/*.[13n]
TK_DOCS = \
$(TK_SOURCE)/doc/*.[13n]
PRO_DOCS = \
$(PRO_SOURCE)/doc/man/*.[13n]
ITCL_DOCS = \
$(ITCL_SOURCE)/itcl/doc/*.[13n] \
$(ITCL_SOURCE)/itk/doc/*.[13n]
# $(ITCL_SOURCE)/iwidgets3.0.0/doc/*.[13n]
DOCS = $(TCL_DOCS) $(TK_DOCS) $(PRO_DOCS) $(ITCL_DOCS)
TCLSH = $(TCL_SOURCE)/unix/tclsh
CC=@CC@
all: winhelp
winhelp: tcl.rtf
html: tcl$(VER).html
man2tcl: man2tcl.c
$(CC) $(CFLAGS) -o man2tcl man2tcl.c
tcl.rtf: man2help.tcl man2tcl $(DOCS)
LD_LIBRARY_PATH=$(TCL_SOURCE)/unix \
$(TCLSH) man2help.tcl tcl "" $(DOCS)
tcl$(VER).html: man2html.tcl man2tcl $(TCL_DOCS) $(TK_DOCS)
$(TCLSH) man2html.tcl tcl$(VER).html \
../.. ${TCL} ${TK}
clean:
-rm -f man2tcl *.o tcl$(VER).cnt tcl$(VER).rtf
helpfile:
hcw /c tcl.hpj
# mv tcl.hlp tcl$(VER).hlp
|