Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| SHA1 Hash: | 8a18e7fb7f0a7e2590f06bf16374ad0d4429a35e |
|---|---|
| Date: | 2012-06-29 19:35:44 |
| User: | mistachkin |
| Comment: | Remove redundant include argument from the compilation steps of several source files. |
Tags And Properties
- branch=trunk inherited from [bf1c21ba16]
- sym-trunk inherited from [bf1c21ba16]
Changes
Changes to src/main.mk
1063 $(OBJDIR)/sqlite3.o: $(SRCDIR)/sqlite3.c 1063 $(OBJDIR)/sqlite3.o: $(SRCDIR)/sqlite3.c 1064 $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DE 1064 $(XTCC) -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DE 1065 1065 1066 $(OBJDIR)/shell.o: $(SRCDIR)/shell.c $(SRCDIR)/sqlite3.h 1066 $(OBJDIR)/shell.o: $(SRCDIR)/shell.c $(SRCDIR)/sqlite3.h 1067 $(XTCC) -Dmain=sqlite3_shell -DSQLITE_OMIT_LOAD_EXTENSION=1 -c $(SRCDIR) 1067 $(XTCC) -Dmain=sqlite3_shell -DSQLITE_OMIT_LOAD_EXTENSION=1 -c $(SRCDIR) 1068 1068 1069 $(OBJDIR)/th.o: $(SRCDIR)/th.c 1069 $(OBJDIR)/th.o: $(SRCDIR)/th.c 1070 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/th.c -o $(OBJDIR)/th.o | 1070 $(XTCC) -c $(SRCDIR)/th.c -o $(OBJDIR)/th.o 1071 1071 1072 $(OBJDIR)/th_lang.o: $(SRCDIR)/th_lang.c 1072 $(OBJDIR)/th_lang.o: $(SRCDIR)/th_lang.c 1073 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/th_lang.c -o $(OBJDIR)/th_lang.o | 1073 $(XTCC) -c $(SRCDIR)/th_lang.c -o $(OBJDIR)/th_lang.o 1074 1074 1075 $(OBJDIR)/th_tcl.o: $(SRCDIR)/th_tcl.c 1075 $(OBJDIR)/th_tcl.o: $(SRCDIR)/th_tcl.c 1076 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/th_tcl.c -o $(OBJDIR)/th_tcl.o | 1076 $(XTCC) -c $(SRCDIR)/th_tcl.c -o $(OBJDIR)/th_tcl.o 1077 1077 1078 1078 1079 $(OBJDIR)/cson_amalgamation.o: $(SRCDIR)/cson_amalgamation.c 1079 $(OBJDIR)/cson_amalgamation.o: $(SRCDIR)/cson_amalgamation.c 1080 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/cson_amalgamation.c -o $(OBJDIR)/cson_a | 1080 $(XTCC) -c $(SRCDIR)/cson_amalgamation.c -o $(OBJDIR)/cson_amalgamation. 1081 1081
Changes to src/makemake.tcl
287 287 288 writeln "\$(OBJDIR)/shell.o:\t\$(SRCDIR)/shell.c \$(SRCDIR)/sqlite3.h" 288 writeln "\$(OBJDIR)/shell.o:\t\$(SRCDIR)/shell.c \$(SRCDIR)/sqlite3.h" 289 set opt {-Dmain=sqlite3_shell} 289 set opt {-Dmain=sqlite3_shell} 290 append opt " -DSQLITE_OMIT_LOAD_EXTENSION=1" 290 append opt " -DSQLITE_OMIT_LOAD_EXTENSION=1" 291 writeln "\t\$(XTCC) $opt -c \$(SRCDIR)/shell.c -o \$(OBJDIR)/shell.o\n" 291 writeln "\t\$(XTCC) $opt -c \$(SRCDIR)/shell.c -o \$(OBJDIR)/shell.o\n" 292 292 293 writeln "\$(OBJDIR)/th.o:\t\$(SRCDIR)/th.c" 293 writeln "\$(OBJDIR)/th.o:\t\$(SRCDIR)/th.c" 294 writeln "\t\$(XTCC) -I\$(SRCDIR) -c \$(SRCDIR)/th.c -o \$(OBJDIR)/th.o\n" | 294 writeln "\t\$(XTCC) -c \$(SRCDIR)/th.c -o \$(OBJDIR)/th.o\n" 295 295 296 writeln "\$(OBJDIR)/th_lang.o:\t\$(SRCDIR)/th_lang.c" 296 writeln "\$(OBJDIR)/th_lang.o:\t\$(SRCDIR)/th_lang.c" 297 writeln "\t\$(XTCC) -I\$(SRCDIR) -c \$(SRCDIR)/th_lang.c -o \$(OBJDIR)/th_lang.o | 297 writeln "\t\$(XTCC) -c \$(SRCDIR)/th_lang.c -o \$(OBJDIR)/th_lang.o\n" 298 298 299 writeln "\$(OBJDIR)/th_tcl.o:\t\$(SRCDIR)/th_tcl.c" 299 writeln "\$(OBJDIR)/th_tcl.o:\t\$(SRCDIR)/th_tcl.c" 300 writeln "\t\$(XTCC) -I\$(SRCDIR) -c \$(SRCDIR)/th_tcl.c -o \$(OBJDIR)/th_tcl.o\n | 300 writeln "\t\$(XTCC) -c \$(SRCDIR)/th_tcl.c -o \$(OBJDIR)/th_tcl.o\n" 301 301 302 set opt {} 302 set opt {} 303 writeln { 303 writeln { 304 $(OBJDIR)/cson_amalgamation.o: $(SRCDIR)/cson_amalgamation.c 304 $(OBJDIR)/cson_amalgamation.o: $(SRCDIR)/cson_amalgamation.c 305 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/cson_amalgamation.c -o $(OBJDIR)/cson_a | 305 $(XTCC) -c $(SRCDIR)/cson_amalgamation.c -o $(OBJDIR)/cson_amalgamation. 306 } 306 } 307 307 308 close $output_file 308 close $output_file 309 # 309 # 310 # End of the main.mk output 310 # End of the main.mk output 311 ############################################################################## 311 ############################################################################## 312 ############################################################################## 312 ############################################################################## ................................................................................................................................................................................ 617 617 618 writeln "\$(OBJDIR)/shell.o:\t\$(SRCDIR)/shell.c \$(SRCDIR)/sqlite3.h" 618 writeln "\$(OBJDIR)/shell.o:\t\$(SRCDIR)/shell.c \$(SRCDIR)/sqlite3.h" 619 set opt {-Dmain=sqlite3_shell} 619 set opt {-Dmain=sqlite3_shell} 620 append opt " -DSQLITE_OMIT_LOAD_EXTENSION=1" 620 append opt " -DSQLITE_OMIT_LOAD_EXTENSION=1" 621 writeln "\t\$(XTCC) $opt -c \$(SRCDIR)/shell.c -o \$(OBJDIR)/shell.o\n" 621 writeln "\t\$(XTCC) $opt -c \$(SRCDIR)/shell.c -o \$(OBJDIR)/shell.o\n" 622 622 623 writeln "\$(OBJDIR)/th.o:\t\$(SRCDIR)/th.c" 623 writeln "\$(OBJDIR)/th.o:\t\$(SRCDIR)/th.c" 624 writeln "\t\$(XTCC) -I\$(SRCDIR) -c \$(SRCDIR)/th.c -o \$(OBJDIR)/th.o\n" | 624 writeln "\t\$(XTCC) -c \$(SRCDIR)/th.c -o \$(OBJDIR)/th.o\n" 625 625 626 writeln "\$(OBJDIR)/th_lang.o:\t\$(SRCDIR)/th_lang.c" 626 writeln "\$(OBJDIR)/th_lang.o:\t\$(SRCDIR)/th_lang.c" 627 writeln "\t\$(XTCC) -I\$(SRCDIR) -c \$(SRCDIR)/th_lang.c -o \$(OBJDIR)/th_lang.o | 627 writeln "\t\$(XTCC) -c \$(SRCDIR)/th_lang.c -o \$(OBJDIR)/th_lang.o\n" 628 628 629 writeln {ifdef FOSSIL_ENABLE_TCL 629 writeln {ifdef FOSSIL_ENABLE_TCL 630 $(OBJDIR)/th_tcl.o: $(SRCDIR)/th_tcl.c 630 $(OBJDIR)/th_tcl.o: $(SRCDIR)/th_tcl.c 631 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/th_tcl.c -o $(OBJDIR)/th_tcl.o | 631 $(XTCC) -c $(SRCDIR)/th_tcl.c -o $(OBJDIR)/th_tcl.o 632 endif 632 endif 633 } 633 } 634 634 635 close $output_file 635 close $output_file 636 # 636 # 637 # End of the main.mk output 637 # End of the main.mk output 638 ############################################################################## 638 ##############################################################################
Changes to win/Makefile.mingw
1230 1230 1231 $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/jso 1231 $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/jso 1232 1232 1233 $(OBJDIR)/shell.o: $(SRCDIR)/shell.c $(SRCDIR)/sqlite3.h 1233 $(OBJDIR)/shell.o: $(SRCDIR)/shell.c $(SRCDIR)/sqlite3.h 1234 $(XTCC) -Dmain=sqlite3_shell -DSQLITE_OMIT_LOAD_EXTENSION=1 -c $(SRCDIR) 1234 $(XTCC) -Dmain=sqlite3_shell -DSQLITE_OMIT_LOAD_EXTENSION=1 -c $(SRCDIR) 1235 1235 1236 $(OBJDIR)/th.o: $(SRCDIR)/th.c 1236 $(OBJDIR)/th.o: $(SRCDIR)/th.c 1237 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/th.c -o $(OBJDIR)/th.o | 1237 $(XTCC) -c $(SRCDIR)/th.c -o $(OBJDIR)/th.o 1238 1238 1239 $(OBJDIR)/th_lang.o: $(SRCDIR)/th_lang.c 1239 $(OBJDIR)/th_lang.o: $(SRCDIR)/th_lang.c 1240 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/th_lang.c -o $(OBJDIR)/th_lang.o | 1240 $(XTCC) -c $(SRCDIR)/th_lang.c -o $(OBJDIR)/th_lang.o 1241 1241 1242 ifdef FOSSIL_ENABLE_TCL 1242 ifdef FOSSIL_ENABLE_TCL 1243 $(OBJDIR)/th_tcl.o: $(SRCDIR)/th_tcl.c 1243 $(OBJDIR)/th_tcl.o: $(SRCDIR)/th_tcl.c 1244 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/th_tcl.c -o $(OBJDIR)/th_tcl.o | 1244 $(XTCC) -c $(SRCDIR)/th_tcl.c -o $(OBJDIR)/th_tcl.o 1245 endif 1245 endif 1246 1246
Changes to win/Makefile.mingw.mistachkin
1230 1230 1231 $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/jso 1231 $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/jso 1232 1232 1233 $(OBJDIR)/shell.o: $(SRCDIR)/shell.c $(SRCDIR)/sqlite3.h 1233 $(OBJDIR)/shell.o: $(SRCDIR)/shell.c $(SRCDIR)/sqlite3.h 1234 $(XTCC) -Dmain=sqlite3_shell -DSQLITE_OMIT_LOAD_EXTENSION=1 -c $(SRCDIR) 1234 $(XTCC) -Dmain=sqlite3_shell -DSQLITE_OMIT_LOAD_EXTENSION=1 -c $(SRCDIR) 1235 1235 1236 $(OBJDIR)/th.o: $(SRCDIR)/th.c 1236 $(OBJDIR)/th.o: $(SRCDIR)/th.c 1237 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/th.c -o $(OBJDIR)/th.o | 1237 $(XTCC) -c $(SRCDIR)/th.c -o $(OBJDIR)/th.o 1238 1238 1239 $(OBJDIR)/th_lang.o: $(SRCDIR)/th_lang.c 1239 $(OBJDIR)/th_lang.o: $(SRCDIR)/th_lang.c 1240 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/th_lang.c -o $(OBJDIR)/th_lang.o | 1240 $(XTCC) -c $(SRCDIR)/th_lang.c -o $(OBJDIR)/th_lang.o 1241 1241 1242 ifdef FOSSIL_ENABLE_TCL 1242 ifdef FOSSIL_ENABLE_TCL 1243 $(OBJDIR)/th_tcl.o: $(SRCDIR)/th_tcl.c 1243 $(OBJDIR)/th_tcl.o: $(SRCDIR)/th_tcl.c 1244 $(XTCC) -I$(SRCDIR) -c $(SRCDIR)/th_tcl.c -o $(OBJDIR)/th_tcl.o | 1244 $(XTCC) -c $(SRCDIR)/th_tcl.c -o $(OBJDIR)/th_tcl.o 1245 endif 1245 endif 1246 1246