diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-12-01 15:16:37 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-12-01 15:16:37 (GMT) |
commit | 01f2b842e88b7eafd634eb9616770d28c339e176 (patch) | |
tree | af8ab7b0e5976046ffd9f173fc6f58298fc87cf0 /unix/Makefile.in | |
parent | b22a59093e5c260f6e1bf30b7f93fafc06048812 (diff) | |
parent | 36c94773b45337052801cf689d1c2a3ab1ea790b (diff) | |
download | tcl-01f2b842e88b7eafd634eb9616770d28c339e176.zip tcl-01f2b842e88b7eafd634eb9616770d28c339e176.tar.gz tcl-01f2b842e88b7eafd634eb9616770d28c339e176.tar.bz2 |
Merge 9.0. Fix Windows build (testcases need tcl::test package). Modify TCL_OBJTYPE_V1() macro, so it checks for the number of arguments
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 4ce2906..888edb7 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -299,9 +299,8 @@ XTTEST_OBJS = xtTestInit.o tclTest.o tclTestObj.o tclTestProcBodyObj.o \ tclThreadTest.o tclUnixTest.o tclXtNotify.o tclXtTest.o \ tclTestABSList.o -GENERIC_OBJS = regcomp.o regexec.o regfree.o regerror.o \ - tclArithSeries.o tclAlloc.o \ - tclAssembly.o tclAsync.o tclBasic.o tclBinary.o \ +GENERIC_OBJS = regcomp.o regexec.o regfree.o regerror.o tclAlloc.o \ + tclArithSeries.o tclAssembly.o tclAsync.o tclBasic.o tclBinary.o \ tclCkalloc.o tclClock.o tclCmdAH.o tclCmdIL.o tclCmdMZ.o \ tclCompCmds.o tclCompCmdsGR.o tclCompCmdsSZ.o tclCompExpr.o \ tclCompile.o tclConfig.o tclDate.o tclDictObj.o tclDisassemble.o \ @@ -384,7 +383,6 @@ TCL_DECLS = \ GENERIC_HDRS = \ $(GENERIC_DIR)/tcl.h \ - $(GENERIC_DIR)/tclArithSeries.h \ $(GENERIC_DIR)/tclDecls.h \ $(GENERIC_DIR)/tclInt.h \ $(GENERIC_DIR)/tclIntDecls.h \ @@ -398,15 +396,16 @@ GENERIC_HDRS = \ $(GENERIC_DIR)/tclPatch.h \ $(GENERIC_DIR)/tclPlatDecls.h \ $(GENERIC_DIR)/tclPort.h \ - $(GENERIC_DIR)/tclRegexp.h + $(GENERIC_DIR)/tclRegexp.h \ + $(GENERIC_DIR)/tclArithSeries.h GENERIC_SRCS = \ $(GENERIC_DIR)/regcomp.c \ $(GENERIC_DIR)/regexec.c \ $(GENERIC_DIR)/regfree.c \ $(GENERIC_DIR)/regerror.c \ - $(GENERIC_DIR)/tclArithSeries.c \ $(GENERIC_DIR)/tclAlloc.c \ + $(GENERIC_DIR)/tclArithSeries.c \ $(GENERIC_DIR)/tclAssembly.c \ $(GENERIC_DIR)/tclAsync.c \ $(GENERIC_DIR)/tclBasic.c \ @@ -1253,15 +1252,15 @@ regfree.o: $(REGHDRS) $(GENERIC_DIR)/regfree.c regerror.o: $(REGHDRS) $(GENERIC_DIR)/regerrs.h $(GENERIC_DIR)/regerror.c $(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/regerror.c -tclArithSeries.o: $(GENERIC_DIR)/tclArithSeries.c $(COMPILEHDR) - $(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/tclArithSeries.c - tclAppInit.o: $(UNIX_DIR)/tclAppInit.c $(CC) -c $(APP_CC_SWITCHES) $(UNIX_DIR)/tclAppInit.c tclAlloc.o: $(GENERIC_DIR)/tclAlloc.c $(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/tclAlloc.c +tclArithSeries.o: $(GENERIC_DIR)/tclArithSeries.c $(COMPILEHDR) + $(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/tclArithSeries.c + tclAssembly.o: $(GENERIC_DIR)/tclAssembly.c $(COMPILEHDR) $(CC) -c $(CC_SWITCHES) $(GENERIC_DIR)/tclAssembly.c |