Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch stephan Excluding Merge-Ins
This is equivalent to a diff from 2955cece33 to 0918d1f04a
2012-06-22
| ||
13:03 | Minor Makefile hack to allow "make clean" to work from ./src/. check-in: 4e4b6cc35f user: stephan tags: trunk | |
12:58 | MSC makefile fix for missing cson_amalgamation. Leaf check-in: 0918d1f04a user: stephan tags: stephan | |
2012-06-20
| ||
17:26 | Remove an unused variable. check-in: 2955cece33 user: drh tags: trunk | |
17:24 | Add the ability for an administrator to run raw SQL commands via the web interface. check-in: ca0faa88a4 user: drh tags: trunk | |
Changes to src/makemake.tcl.
922 923 924 925 926 927 928 929 930 931 932 933 934 935 |
$(OBJDIR)\json_login$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_query$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_report$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_tag$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_timeline$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_user$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_wiki$O : $(SRCDIR)\json_detail.h } foreach s [lsort $src] { writeln "\$(OX)\\$s\$O : ${s}_.c ${s}.h" writeln "\t\$(TCC) /Fo\$@ -c ${s}_.c\n" writeln "${s}_.c : \$(SRCDIR)\\$s.c" writeln "\ttranslate\$E \$** > \$@\n" |
> > > |
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 |
$(OBJDIR)\json_login$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_query$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_report$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_tag$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_timeline$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_user$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_wiki$O : $(SRCDIR)\json_detail.h $(OBJDIR)\cson_amalgamation$O : $(SRCDIR)\cson_amalgamation.h $(OBJDIR)\cson_amalgamation$(O): $(SRCDIR)\cson_amalgamation.c $(TCC) -c $(SRCDIR)\cson_amalgamation.c -o $(OBJDIR)\cson_amalgamation$(O) -DCSON_FOSSIL_MODE } foreach s [lsort $src] { writeln "\$(OX)\\$s\$O : ${s}_.c ${s}.h" writeln "\t\$(TCC) /Fo\$@ -c ${s}_.c\n" writeln "${s}_.c : \$(SRCDIR)\\$s.c" writeln "\ttranslate\$E \$** > \$@\n" |
Changes to win/Makefile.msc.
215 216 217 218 219 220 221 222 223 224 225 226 227 228 |
$(OBJDIR)\json_login$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_query$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_report$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_tag$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_timeline$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_user$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_wiki$O : $(SRCDIR)\json_detail.h $(OX)\add$O : add_.c add.h $(TCC) /Fo$@ -c add_.c add_.c : $(SRCDIR)\add.c translate$E $** > $@ |
> > > |
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
$(OBJDIR)\json_login$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_query$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_report$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_tag$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_timeline$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_user$O : $(SRCDIR)\json_detail.h $(OBJDIR)\json_wiki$O : $(SRCDIR)\json_detail.h $(OBJDIR)\cson_amalgamation$O : $(SRCDIR)\cson_amalgamation.h $(OBJDIR)\cson_amalgamation$(O): $(SRCDIR)\cson_amalgamation.c $(TCC) -c $(SRCDIR)\cson_amalgamation.c -o $(OBJDIR)\cson_amalgamation$(O) -DCSON_FOSSIL_MODE $(OX)\add$O : add_.c add.h $(TCC) /Fo$@ -c add_.c add_.c : $(SRCDIR)\add.c translate$E $** > $@ |