769
770
771
772
773
774
775
776
777
778
779
780
781
782
|
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
# This target can be used to run tclsh inside either gdb or insight
gdb: binaries
@echo "set env TCL_LIBRARY=$(LIBRARY_DIR)" > gdb.run
gdb ./$(TCLSH) --command=gdb.run
rm gdb.run
depend:
#----------------------------------------------------------------------------------------------
# Dependencies:
#
# Usage: make ?target? depend=1
#
# Additionally configure script may be extended to set variable TCL_MAKE_DEPEND resp.
# setting of this variable in environment may be used to force dependencies check.
#
# The include file with dependencies could be (re)built using `tclsh ../tools/depend.tcl`
#----------------------------------------------------------------------------------------------
ifdef depend
TCL_MAKE_DEPEND = $depend
ifeq ($(filter $(depend),1 on yes true),)
TCL_MAKE_DEPEND =
endif
endif
ifdef TCL_MAKE_DEPEND
$(info make: Check dependencies ...)
include $(WIN_DIR)/depend.mk
endif
depend.mk:
$(NATIVE_TCLSH) $(TOOL_DIR)/depend.tcl -source $(TOP_DIR) $(WIN_DIR)/depend.mk
Makefile: $(SRC_DIR)/Makefile.in
./config.status
cleanhelp:
$(RM) *.hlp *.cnt *.GID *.rtf man2tcl.exe
|