⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.in

📁 tcl是工具命令语言
💻 IN
📖 第 1 页 / 共 4 页
字号:
	$(GENERIC_DIR)/tclFileName.c \	$(GENERIC_DIR)/tclGet.c \	$(GENERIC_DIR)/tclHash.c \	$(GENERIC_DIR)/tclHistory.c \	$(GENERIC_DIR)/tclIndexObj.c \	$(GENERIC_DIR)/tclInterp.c \	$(GENERIC_DIR)/tclIO.c \	$(GENERIC_DIR)/tclIOCmd.c \	$(GENERIC_DIR)/tclIOGT.c \	$(GENERIC_DIR)/tclIOSock.c \	$(GENERIC_DIR)/tclIOUtil.c \	$(GENERIC_DIR)/tclLink.c \	$(GENERIC_DIR)/tclListObj.c \	$(GENERIC_DIR)/tclLiteral.c \	$(GENERIC_DIR)/tclLoad.c \	$(GENERIC_DIR)/tclMain.c \	$(GENERIC_DIR)/tclNamesp.c \	$(GENERIC_DIR)/tclNotify.c \	$(GENERIC_DIR)/tclObj.c \        $(GENERIC_DIR)/tclParse.c \        $(GENERIC_DIR)/tclParseExpr.c \	$(GENERIC_DIR)/tclPipe.c \	$(GENERIC_DIR)/tclPkg.c \	$(GENERIC_DIR)/tclPosixStr.c \	$(GENERIC_DIR)/tclPreserve.c \	$(GENERIC_DIR)/tclProc.c \	$(GENERIC_DIR)/tclRegexp.c \	$(GENERIC_DIR)/tclResolve.c \	$(GENERIC_DIR)/tclResult.c \	$(GENERIC_DIR)/tclScan.c \	$(GENERIC_DIR)/tclStubInit.c \	$(GENERIC_DIR)/tclStubLib.c \	$(GENERIC_DIR)/tclStringObj.c \	$(GENERIC_DIR)/tclTest.c \	$(GENERIC_DIR)/tclTestObj.c \	$(GENERIC_DIR)/tclTestProcBodyObj.c \	$(GENERIC_DIR)/tclThread.c \	$(GENERIC_DIR)/tclThreadAlloc.c \	$(GENERIC_DIR)/tclThreadJoin.c \	$(GENERIC_DIR)/tclTimer.c \	$(GENERIC_DIR)/tclUtil.c \	$(GENERIC_DIR)/tclVar.cSTUB_SRCS = \	$(GENERIC_DIR)/tclStubLib.cUNIX_HDRS = \	$(UNIX_DIR)/tclUnixPort.hUNIX_SRCS = \	$(UNIX_DIR)/tclAppInit.c \	$(UNIX_DIR)/tclUnixChan.c \	$(UNIX_DIR)/tclUnixEvent.c \	$(UNIX_DIR)/tclUnixFCmd.c \	$(UNIX_DIR)/tclUnixFile.c \	$(UNIX_DIR)/tclUnixNotfy.c \	$(UNIX_DIR)/tclUnixPipe.c \	$(UNIX_DIR)/tclUnixSock.c \	$(UNIX_DIR)/tclUnixTest.c \	$(UNIX_DIR)/tclUnixThrd.c \	$(UNIX_DIR)/tclUnixTime.c \	$(UNIX_DIR)/tclUnixInit.cDL_SRCS = \	$(UNIX_DIR)/tclLoadAix.c \	$(UNIX_DIR)/tclLoadAout.c \	$(UNIX_DIR)/tclLoadDl.c \	$(UNIX_DIR)/tclLoadDl2.c \	$(UNIX_DIR)/tclLoadDld.c \	$(UNIX_DIR)/tclLoadDyld.c \	$(GENERIC_DIR)/tclLoadNone.c \	$(UNIX_DIR)/tclLoadOSF.c \	$(UNIX_DIR)/tclLoadShl.cMAC_OSX_SRCS = \	$(MAC_OSX_DIR)/tclMacOSXBundle.c# Note: don't include DL_SRCS or MAC_OSX_SRCS in SRCS: most of those# files won't compile on the current machine, and they will cause# problems for things like "make depend".SRCS = $(GENERIC_SRCS) $(UNIX_SRCS) $(STUB_SRCS)all: binaries libraries docbinaries: ${LIB_FILE} $(STUB_LIB_FILE) $(TCL_BUILD_EXP_FILE) tclshlibraries:doc:# The following target is configured by autoconf to generate either# a shared library or non-shared library for Tcl.${LIB_FILE}: ${OBJS} ${STUB_LIB_FILE}	rm -f $@	@MAKE_LIB@${STUB_LIB_FILE}: ${STUB_LIB_OBJS}	rm -f $@	@MAKE_STUB_LIB@# Make target which outputs the list of the .o contained in the Tcl lib# usefull to build a single big shared library containing Tcl and other# extensions.  used for the Tcl Plugin.  -- dl# The dependency on OBJS is not there because we just want the list# of objects here, not actually building themtclLibObjs:	@echo ${OBJS}# This targets actually build the objects needed for the lib in the above# caseobjs: ${OBJS}tclsh: ${TCLSH_OBJS} ${TCL_LIB_FILE}	${CC} ${LDFLAGS} ${TCLSH_OBJS} @TCL_BUILD_LIB_SPEC@ ${LIBS} \		${CC_SEARCH_FLAGS} -o tclsh# Resetting the LIB_RUNTIME_DIR below is required so that# the generated tcltest executable gets the build directory# burned into its ld search path. This keeps tcltest from# picking up an already installed version of the Tcl library.tcltest: ${TCLTEST_OBJS} ${TCL_LIB_FILE} ${BUILD_DLTEST}	$(MAKE) tcltest-real LIB_RUNTIME_DIR=`pwd`tcltest-real:	${CC} ${LDFLAGS} ${TCLTEST_OBJS} @TCL_BUILD_LIB_SPEC@ ${LIBS} \		${CC_SEARCH_FLAGS} -o tcltest# Note, in the target below TCL_LIBRARY needs to be set or else# "make test" won't work in the case where the compilation directory# isn't the same as the source directory.# Specifying TESTFLAGS on the command line is the standard way to pass# args to tcltest, ie:#	% make test TESTFLAGS="-verbose bps -file fileName.test"test: tcltest	@LD_LIBRARY_PATH_VAR@=`pwd`:${@LD_LIBRARY_PATH_VAR@}; export @LD_LIBRARY_PATH_VAR@; \	TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \	./tcltest $(TOP_DIR)/tests/all.tcl $(TESTFLAGS) $(TCLTESTARGS)# Useful target to launch a built tcltest with the proper path,...runtest: tcltest	@LD_LIBRARY_PATH_VAR@=`pwd`:${@LD_LIBRARY_PATH_VAR@}; export @LD_LIBRARY_PATH_VAR@; \	TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \	./tcltest# Useful target for running the test suite with an unwritable current# directory...ro-test: tcltest	@LD_LIBRARY_PATH_VAR@=`pwd`:${@LD_LIBRARY_PATH_VAR@}; export @LD_LIBRARY_PATH_VAR@; \	TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \	echo 'exec chmod -w .;package require tcltest;tcltest::temporaryDirectory /tmp;source ../tests/all.tcl;exec chmod +w .' | ./tcltest# This target can be used to run tclsh from the build directory# via `make shell SCRIPT=/tmp/foo.tcl`shell: tclsh	@@LD_LIBRARY_PATH_VAR@=`pwd`:${@LD_LIBRARY_PATH_VAR@}; export @LD_LIBRARY_PATH_VAR@; \	TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \	./tclsh $(SCRIPT)# This target can be used to run tclsh inside either gdb or insightgdb: tclsh	@echo "set env @LD_LIBRARY_PATH_VAR@=`pwd`:${@LD_LIBRARY_PATH_VAR@}" > gdb.run	@echo "set env TCL_LIBRARY=${TCL_BUILDTIME_LIBRARY}" >> gdb.run	$(GDB) ./tclsh --command=gdb.run	rm gdb.run# This target can be used to run tclsh inside dddddd: tclsh	@echo "set env @LD_LIBRARY_PATH_VAR@=`pwd`:${@LD_LIBRARY_PATH_VAR@}" > gdb.run	@echo "set env TCL_LIBRARY=${TCL_BUILDTIME_LIBRARY}" >> gdb.run	$(DDD) -command=gdb.run ./tclsh	rm gdb.runvalgrind: tclsh tcltest	@LD_LIBRARY_PATH_VAR@=`pwd`:${@LD_LIBRARY_PATH_VAR@}; export @LD_LIBRARY_PATH_VAR@; \	TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}"; export TCL_LIBRARY; \	valgrind --num-callers=8 --leak-resolution=high -v --leak-check=yes --show-reachable=yes $(VALGRINDARGS) ./tcltest $(TOP_DIR)/tests/all.tcl -singleproc 1 $(TESTFLAGS) $(TCLTESTARGS)# The following target outputs the name of the top-level source directory# for Tcl (it is used by Tk's configure script, for example).  The# .NO_PARALLEL line is needed to avoid problems under Sun's "pmake".# Note: this target is now obsolete (use the autoconf variable# TCL_SRC_DIR from tclConfig.sh instead)..NO_PARALLEL: topDirNametopDirName:	@cd $(TOP_DIR); pwd# The following target generates the file generic/tclDate.c # from the yacc grammar found in generic/tclGetDate.y.  This is# only run by hand as yacc is not available in all environments.# The name of the .c file is different than the name of the .y file# so that make doesn't try to automatically regenerate the .c file.gendate:	yacc -l $(GENERIC_DIR)/tclGetDate.y	sed -e 's/yy/TclDate/g' -e '/^#include <values.h>/d' \	    -e 's?SCCSID?RCS: @(#) ?' \	    -e '/#ifdef __STDC__/,/#endif/d' -e '/TclDateerrlab:/d' \	    -e '/TclDatenewstate:/d' -e '/#pragma/d' \	    -e '/#include <inttypes.h>/d' -e 's/const /CONST /g' \	    <y.tab.c >$(GENERIC_DIR)/tclDate.c	rm y.tab.c# The following target generates the shared libraries in dltest/ that# are used for testing;  they are included as part of the "tcltest"# target (via the BUILD_DLTEST variable) if dynamic loading is supported# on this platform. The Makefile in the dltest subdirectory creates# the dltest.marker file in this directory after a successful build.dltest.marker:	cd dltest ; $(MAKE)install: install-binaries install-libraries install-docinstall-strip:	$(MAKE) install \		INSTALL_PROGRAM="$(INSTALL_PROGRAM) ${INSTALL_STRIP_PROGRAM}" \		INSTALL_LIBRARY="$(INSTALL_LIBRARY) ${INSTALL_STRIP_LIBRARY}"# Note: before running ranlib below, must cd to target directory because# some ranlibs write to current directory, and this might not always be# possible (e.g. if installing as root).install-binaries: binaries	@for i in $(LIB_INSTALL_DIR) $(BIN_INSTALL_DIR) ; \	    do \	    if [ ! -d $$i ] ; then \		echo "Making directory $$i"; \		mkdir -p $$i; \		chmod 755 $$i; \		else true; \		fi; \	    done;	@if test ! -x $(SRC_DIR)/install-sh; then \	    chmod +x $(SRC_DIR)/install-sh; \	    fi	@echo "Installing $(LIB_FILE) to $(LIB_INSTALL_DIR)/"	@@INSTALL_LIB@	@chmod 555 $(LIB_INSTALL_DIR)/$(LIB_FILE)	@if test "$(TCL_BUILD_EXP_FILE)" != ""; then \	    echo "Installing $(TCL_EXP_FILE) to $(LIB_INSTALL_DIR)/"; \	    $(INSTALL_DATA) $(TCL_BUILD_EXP_FILE) \			$(LIB_INSTALL_DIR)/$(TCL_EXP_FILE); \	    fi	@echo "Installing tclsh as $(BIN_INSTALL_DIR)/tclsh$(VERSION)"	@$(INSTALL_PROGRAM) tclsh $(BIN_INSTALL_DIR)/tclsh$(VERSION)	@echo "Installing tclConfig.sh to $(LIB_INSTALL_DIR)/"	@$(INSTALL_DATA) tclConfig.sh $(LIB_INSTALL_DIR)/tclConfig.sh	@if test "$(STUB_LIB_FILE)" != "" ; then \	    echo "Installing $(STUB_LIB_FILE) to $(LIB_INSTALL_DIR)/"; \	    @INSTALL_STUB_LIB@ ; \	fiinstall-libraries: libraries	@for i in $(INCLUDE_INSTALL_DIR) $(SCRIPT_INSTALL_DIR); \	    do \	    if [ ! -d $$i ] ; then \		echo "Making directory $$i"; \		mkdir -p $$i; \		chmod 755 $$i; \		else true; \		fi; \	    done;	@for i in http2.4 http1.0 opt0.4 encoding msgcat1.3 tcltest2.2; \	    do \	    if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \		echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \		mkdir -p $(SCRIPT_INSTALL_DIR)/$$i; \		chmod 755 $(SCRIPT_INSTALL_DIR)/$$i; \		else true; \		fi; \	    done;	@if test ! -x $(SRC_DIR)/install-sh; then \	    chmod +x $(SRC_DIR)/install-sh; \	    fi	@echo "Installing header files";	@for i in $(GENERIC_DIR)/tcl.h $(GENERIC_DIR)/tclDecls.h \		$(GENERIC_DIR)/tclPlatDecls.h ; \	    do \	    $(INSTALL_DATA) $$i $(INCLUDE_INSTALL_DIR); \	    done;	@echo "Installing library files to $(SCRIPT_INSTALL_DIR)";	@for i in $(TOP_DIR)/library/*.tcl $(TOP_DIR)/library/tclIndex $(UNIX_DIR)/tclAppInit.c $(UNIX_DIR)/ldAix; \	    do \	    $(INSTALL_DATA) $$i $(SCRIPT_INSTALL_DIR); \	    done;	@echo "Installing library http1.0 directory";	@for j in $(TOP_DIR)/library/http1.0/*.tcl ; \	    do \	    $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/http1.0; \	    done;	@echo "Installing library http2.4 directory";	@for j in $(TOP_DIR)/library/http/*.tcl ; \	    do \	    $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/http2.4; \	    done;	@echo "Installing library opt0.4 directory";	@for j in $(TOP_DIR)/library/opt/*.tcl ; \	    do \	    $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/opt0.4; \	    done;	@echo "Installing library msgcat1.3 directory";	@for j in $(TOP_DIR)/library/msgcat/*.tcl ; \	    do \	    $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/msgcat1.3; \	    done;	@echo "Installing library tcltest2.2 directory";	@for j in $(TOP_DIR)/library/tcltest/*.tcl ; \	    do \	    $(INSTALL_DATA) $$j $(SCRIPT_INSTALL_DIR)/tcltest2.2; \	    done;	@echo "Installing library encoding directory";	@for i in $(TOP_DIR)/library/encoding/*.enc ; do \		$(INSTALL_DATA) $$i $(SCRIPT_INSTALL_DIR)/encoding; \	done;install-doc: doc	@if test ! -x $(UNIX_DIR)/mkLinks; then \	    chmod +x $(UNIX_DIR)/mkLinks; \	    fi	@for i in $(MAN_INSTALL_DIR) $(MAN1_INSTALL_DIR) $(MAN3_INSTALL_DIR) $(MANN_INSTALL_DIR) ; \	    do \	    if [ ! -d $$i ] ; then \		echo "Making directory $$i"; \		mkdir -p $$i; \		chmod 755 $$i; \		else true; \		fi; \	    done;	@echo "Installing top-level (.1) docs";	@cd $(TOP_DIR)/doc; for i in *.1; \	    do \	    rm -f $(MAN1_INSTALL_DIR)/$$i; \	    sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \		    $$i > $(MAN1_INSTALL_DIR)/$$i; \	    chmod 444 $(MAN1_INSTALL_DIR)/$$i; \	    done;	@echo "Cross-linking top-level (.1) docs";	@$(UNIX_DIR)/mkLinks $(MKLINKS_FLAGS) $(MAN1_INSTALL_DIR)	@echo "Installing C API (.3) docs";	@cd $(TOP_DIR)/doc; for i in *.3; \	    do \	    rm -f $(MAN3_INSTALL_DIR)/$$i; \	    sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \		    $$i > $(MAN3_INSTALL_DIR)/$$i; \	    chmod 444 $(MAN3_INSTALL_DIR)/$$i; \	    done;	@echo "Cross-linking C API (.3) docs";	@$(UNIX_DIR)/mkLinks $(MKLINKS_FLAGS) $(MAN3_INSTALL_DIR)	@echo "Installing command (.n) docs";	@cd $(TOP_DIR)/doc; for i in *.n; \	    do \	    rm -f $(MANN_INSTALL_DIR)/$$i; \	    sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \		    $$i > $(MANN_INSTALL_DIR)/$$i; \	    chmod 444 $(MANN_INSTALL_DIR)/$$i; \	    done;	@echo "Cross-linking command (.n) docs";	@$(UNIX_DIR)/mkLinks $(MKLINKS_FLAGS) $(MANN_INSTALL_DIR)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -