49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
core:
$(MAKE) DOCS="$(COREDOCS)" rtf
rtf: $(TCL_SOURCE)/tools/man2help.tcl man2tcl $(DOCS)
LD_LIBRARY_PATH=$(TCL_BIN_DIR) \
TCL_LIBRARY=$(TCL_SOURCE)/library \
$(TCLSH) $(TCL_SOURCE)/tools/man2help.tcl tcl "$(VER)" $(DOCS)
winhelp: tcl.rtf
man2tcl: $(TCL_SOURCE)/tools/man2tcl.c
$(CC) $(CFLAGS) -o man2tcl $(TCL_SOURCE)/tools/man2tcl.c
clean:
|
|
|
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
core:
$(MAKE) DOCS="$(COREDOCS)" rtf
rtf: $(TCL_SOURCE)/tools/man2help.tcl man2tcl $(DOCS)
LD_LIBRARY_PATH=$(TCL_BIN_DIR) \
TCL_LIBRARY=$(TCL_SOURCE)/library \
$(TCLSH) -encoding utf-8 $(TCL_SOURCE)/tools/man2help.tcl tcl "$(VER)" $(DOCS)
winhelp: tcl.rtf
man2tcl: $(TCL_SOURCE)/tools/man2tcl.c
$(CC) $(CFLAGS) -o man2tcl $(TCL_SOURCE)/tools/man2tcl.c
clean:
|