Fossil SCM
Add the regular expression matching library and the "test-grep" command for testing it.
Commit
e2552de8c636fe97c621ba6506133b544a2e7ec2
Parent
808e3d6e75e5c65…
8 files changed
+2
-1
+11
-1
+1
+12
+1
+10
-4
+12
+10
M
src/db.c
+2
-1
| --- src/db.c | ||
| +++ src/db.c | ||
| @@ -1604,11 +1604,11 @@ | ||
| 1604 | 1604 | |
| 1605 | 1605 | /* |
| 1606 | 1606 | ** This function registers auxiliary functions when the SQLite |
| 1607 | 1607 | ** database connection is first established. |
| 1608 | 1608 | */ |
| 1609 | -LOCAL void db_connection_init(void){ | |
| 1609 | +void db_connection_init(void){ | |
| 1610 | 1610 | sqlite3_exec(g.db, "PRAGMA foreign_keys=OFF;", 0, 0, 0); |
| 1611 | 1611 | sqlite3_create_function(g.db, "user", 0, SQLITE_ANY, 0, db_sql_user, 0, 0); |
| 1612 | 1612 | sqlite3_create_function(g.db, "cgi", 1, SQLITE_ANY, 0, db_sql_cgi, 0, 0); |
| 1613 | 1613 | sqlite3_create_function(g.db, "cgi", 2, SQLITE_ANY, 0, db_sql_cgi, 0, 0); |
| 1614 | 1614 | sqlite3_create_function(g.db, "print", -1, SQLITE_UTF8, 0,db_sql_print,0,0); |
| @@ -1619,10 +1619,11 @@ | ||
| 1619 | 1619 | g.db, "if_selected", 3, SQLITE_UTF8, 0, file_is_selected,0,0 |
| 1620 | 1620 | ); |
| 1621 | 1621 | if( g.fSqlTrace ){ |
| 1622 | 1622 | sqlite3_trace(g.db, db_sql_trace, 0); |
| 1623 | 1623 | } |
| 1624 | + re_add_sql_func(g.db); | |
| 1624 | 1625 | } |
| 1625 | 1626 | |
| 1626 | 1627 | /* |
| 1627 | 1628 | ** Return true if the string zVal represents "true" (or "false"). |
| 1628 | 1629 | */ |
| 1629 | 1630 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -1604,11 +1604,11 @@ | |
| 1604 | |
| 1605 | /* |
| 1606 | ** This function registers auxiliary functions when the SQLite |
| 1607 | ** database connection is first established. |
| 1608 | */ |
| 1609 | LOCAL void db_connection_init(void){ |
| 1610 | sqlite3_exec(g.db, "PRAGMA foreign_keys=OFF;", 0, 0, 0); |
| 1611 | sqlite3_create_function(g.db, "user", 0, SQLITE_ANY, 0, db_sql_user, 0, 0); |
| 1612 | sqlite3_create_function(g.db, "cgi", 1, SQLITE_ANY, 0, db_sql_cgi, 0, 0); |
| 1613 | sqlite3_create_function(g.db, "cgi", 2, SQLITE_ANY, 0, db_sql_cgi, 0, 0); |
| 1614 | sqlite3_create_function(g.db, "print", -1, SQLITE_UTF8, 0,db_sql_print,0,0); |
| @@ -1619,10 +1619,11 @@ | |
| 1619 | g.db, "if_selected", 3, SQLITE_UTF8, 0, file_is_selected,0,0 |
| 1620 | ); |
| 1621 | if( g.fSqlTrace ){ |
| 1622 | sqlite3_trace(g.db, db_sql_trace, 0); |
| 1623 | } |
| 1624 | } |
| 1625 | |
| 1626 | /* |
| 1627 | ** Return true if the string zVal represents "true" (or "false"). |
| 1628 | */ |
| 1629 |
| --- src/db.c | |
| +++ src/db.c | |
| @@ -1604,11 +1604,11 @@ | |
| 1604 | |
| 1605 | /* |
| 1606 | ** This function registers auxiliary functions when the SQLite |
| 1607 | ** database connection is first established. |
| 1608 | */ |
| 1609 | void db_connection_init(void){ |
| 1610 | sqlite3_exec(g.db, "PRAGMA foreign_keys=OFF;", 0, 0, 0); |
| 1611 | sqlite3_create_function(g.db, "user", 0, SQLITE_ANY, 0, db_sql_user, 0, 0); |
| 1612 | sqlite3_create_function(g.db, "cgi", 1, SQLITE_ANY, 0, db_sql_cgi, 0, 0); |
| 1613 | sqlite3_create_function(g.db, "cgi", 2, SQLITE_ANY, 0, db_sql_cgi, 0, 0); |
| 1614 | sqlite3_create_function(g.db, "print", -1, SQLITE_UTF8, 0,db_sql_print,0,0); |
| @@ -1619,10 +1619,11 @@ | |
| 1619 | g.db, "if_selected", 3, SQLITE_UTF8, 0, file_is_selected,0,0 |
| 1620 | ); |
| 1621 | if( g.fSqlTrace ){ |
| 1622 | sqlite3_trace(g.db, db_sql_trace, 0); |
| 1623 | } |
| 1624 | re_add_sql_func(g.db); |
| 1625 | } |
| 1626 | |
| 1627 | /* |
| 1628 | ** Return true if the string zVal represents "true" (or "false"). |
| 1629 | */ |
| 1630 |
+11
-1
| --- src/main.mk | ||
| +++ src/main.mk | ||
| @@ -81,10 +81,11 @@ | ||
| 81 | 81 | $(SRCDIR)/pivot.c \ |
| 82 | 82 | $(SRCDIR)/popen.c \ |
| 83 | 83 | $(SRCDIR)/pqueue.c \ |
| 84 | 84 | $(SRCDIR)/printf.c \ |
| 85 | 85 | $(SRCDIR)/rebuild.c \ |
| 86 | + $(SRCDIR)/regexp.c \ | |
| 86 | 87 | $(SRCDIR)/report.c \ |
| 87 | 88 | $(SRCDIR)/rss.c \ |
| 88 | 89 | $(SRCDIR)/schema.c \ |
| 89 | 90 | $(SRCDIR)/search.c \ |
| 90 | 91 | $(SRCDIR)/setup.c \ |
| @@ -185,10 +186,11 @@ | ||
| 185 | 186 | $(OBJDIR)/pivot_.c \ |
| 186 | 187 | $(OBJDIR)/popen_.c \ |
| 187 | 188 | $(OBJDIR)/pqueue_.c \ |
| 188 | 189 | $(OBJDIR)/printf_.c \ |
| 189 | 190 | $(OBJDIR)/rebuild_.c \ |
| 191 | + $(OBJDIR)/regexp_.c \ | |
| 190 | 192 | $(OBJDIR)/report_.c \ |
| 191 | 193 | $(OBJDIR)/rss_.c \ |
| 192 | 194 | $(OBJDIR)/schema_.c \ |
| 193 | 195 | $(OBJDIR)/search_.c \ |
| 194 | 196 | $(OBJDIR)/setup_.c \ |
| @@ -289,10 +291,11 @@ | ||
| 289 | 291 | $(OBJDIR)/pivot.o \ |
| 290 | 292 | $(OBJDIR)/popen.o \ |
| 291 | 293 | $(OBJDIR)/pqueue.o \ |
| 292 | 294 | $(OBJDIR)/printf.o \ |
| 293 | 295 | $(OBJDIR)/rebuild.o \ |
| 296 | + $(OBJDIR)/regexp.o \ | |
| 294 | 297 | $(OBJDIR)/report.o \ |
| 295 | 298 | $(OBJDIR)/rss.o \ |
| 296 | 299 | $(OBJDIR)/schema.o \ |
| 297 | 300 | $(OBJDIR)/search.o \ |
| 298 | 301 | $(OBJDIR)/setup.o \ |
| @@ -390,11 +393,11 @@ | ||
| 390 | 393 | |
| 391 | 394 | |
| 392 | 395 | $(OBJDIR)/page_index.h: $(TRANS_SRC) $(OBJDIR)/mkindex |
| 393 | 396 | $(OBJDIR)/mkindex $(TRANS_SRC) >$@ |
| 394 | 397 | $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/makeheaders $(OBJDIR)/VERSION.h |
| 395 | - $(OBJDIR)/makeheaders $(OBJDIR)/add_.c:$(OBJDIR)/add.h $(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h $(OBJDIR)/attach_.c:$(OBJDIR)/attach.h $(OBJDIR)/bag_.c:$(OBJDIR)/bag.h $(OBJDIR)/bisect_.c:$(OBJDIR)/bisect.h $(OBJDIR)/blob_.c:$(OBJDIR)/blob.h $(OBJDIR)/branch_.c:$(OBJDIR)/branch.h $(OBJDIR)/browse_.c:$(OBJDIR)/browse.h $(OBJDIR)/captcha_.c:$(OBJDIR)/captcha.h $(OBJDIR)/cgi_.c:$(OBJDIR)/cgi.h $(OBJDIR)/checkin_.c:$(OBJDIR)/checkin.h $(OBJDIR)/checkout_.c:$(OBJDIR)/checkout.h $(OBJDIR)/clearsign_.c:$(OBJDIR)/clearsign.h $(OBJDIR)/clone_.c:$(OBJDIR)/clone.h $(OBJDIR)/comformat_.c:$(OBJDIR)/comformat.h $(OBJDIR)/configure_.c:$(OBJDIR)/configure.h $(OBJDIR)/content_.c:$(OBJDIR)/content.h $(OBJDIR)/db_.c:$(OBJDIR)/db.h $(OBJDIR)/delta_.c:$(OBJDIR)/delta.h $(OBJDIR)/deltacmd_.c:$(OBJDIR)/deltacmd.h $(OBJDIR)/descendants_.c:$(OBJDIR)/descendants.h $(OBJDIR)/diff_.c:$(OBJDIR)/diff.h $(OBJDIR)/diffcmd_.c:$(OBJDIR)/diffcmd.h $(OBJDIR)/doc_.c:$(OBJDIR)/doc.h $(OBJDIR)/encode_.c:$(OBJDIR)/encode.h $(OBJDIR)/event_.c:$(OBJDIR)/event.h $(OBJDIR)/export_.c:$(OBJDIR)/export.h $(OBJDIR)/file_.c:$(OBJDIR)/file.h $(OBJDIR)/finfo_.c:$(OBJDIR)/finfo.h $(OBJDIR)/glob_.c:$(OBJDIR)/glob.h $(OBJDIR)/graph_.c:$(OBJDIR)/graph.h $(OBJDIR)/gzip_.c:$(OBJDIR)/gzip.h $(OBJDIR)/http_.c:$(OBJDIR)/http.h $(OBJDIR)/http_socket_.c:$(OBJDIR)/http_socket.h $(OBJDIR)/http_ssl_.c:$(OBJDIR)/http_ssl.h $(OBJDIR)/http_transport_.c:$(OBJDIR)/http_transport.h $(OBJDIR)/import_.c:$(OBJDIR)/import.h $(OBJDIR)/info_.c:$(OBJDIR)/info.h $(OBJDIR)/json_.c:$(OBJDIR)/json.h $(OBJDIR)/json_artifact_.c:$(OBJDIR)/json_artifact.h $(OBJDIR)/json_branch_.c:$(OBJDIR)/json_branch.h $(OBJDIR)/json_config_.c:$(OBJDIR)/json_config.h $(OBJDIR)/json_diff_.c:$(OBJDIR)/json_diff.h $(OBJDIR)/json_dir_.c:$(OBJDIR)/json_dir.h $(OBJDIR)/json_finfo_.c:$(OBJDIR)/json_finfo.h $(OBJDIR)/json_login_.c:$(OBJDIR)/json_login.h $(OBJDIR)/json_query_.c:$(OBJDIR)/json_query.h $(OBJDIR)/json_report_.c:$(OBJDIR)/json_report.h $(OBJDIR)/json_tag_.c:$(OBJDIR)/json_tag.h $(OBJDIR)/json_timeline_.c:$(OBJDIR)/json_timeline.h $(OBJDIR)/json_user_.c:$(OBJDIR)/json_user.h $(OBJDIR)/json_wiki_.c:$(OBJDIR)/json_wiki.h $(OBJDIR)/leaf_.c:$(OBJDIR)/leaf.h $(OBJDIR)/login_.c:$(OBJDIR)/login.h $(OBJDIR)/main_.c:$(OBJDIR)/main.h $(OBJDIR)/manifest_.c:$(OBJDIR)/manifest.h $(OBJDIR)/markdown_.c:$(OBJDIR)/markdown.h $(OBJDIR)/markdown_html_.c:$(OBJDIR)/markdown_html.h $(OBJDIR)/md5_.c:$(OBJDIR)/md5.h $(OBJDIR)/merge_.c:$(OBJDIR)/merge.h $(OBJDIR)/merge3_.c:$(OBJDIR)/merge3.h $(OBJDIR)/moderate_.c:$(OBJDIR)/moderate.h $(OBJDIR)/name_.c:$(OBJDIR)/name.h $(OBJDIR)/path_.c:$(OBJDIR)/path.h $(OBJDIR)/pivot_.c:$(OBJDIR)/pivot.h $(OBJDIR)/popen_.c:$(OBJDIR)/popen.h $(OBJDIR)/pqueue_.c:$(OBJDIR)/pqueue.h $(OBJDIR)/printf_.c:$(OBJDIR)/printf.h $(OBJDIR)/rebuild_.c:$(OBJDIR)/rebuild.h $(OBJDIR)/report_.c:$(OBJDIR)/report.h $(OBJDIR)/rss_.c:$(OBJDIR)/rss.h $(OBJDIR)/schema_.c:$(OBJDIR)/schema.h $(OBJDIR)/search_.c:$(OBJDIR)/search.h $(OBJDIR)/setup_.c:$(OBJDIR)/setup.h $(OBJDIR)/sha1_.c:$(OBJDIR)/sha1.h $(OBJDIR)/shun_.c:$(OBJDIR)/shun.h $(OBJDIR)/skins_.c:$(OBJDIR)/skins.h $(OBJDIR)/sqlcmd_.c:$(OBJDIR)/sqlcmd.h $(OBJDIR)/stash_.c:$(OBJDIR)/stash.h $(OBJDIR)/stat_.c:$(OBJDIR)/stat.h $(OBJDIR)/style_.c:$(OBJDIR)/style.h $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h $(OBJDIR)/update_.c:$(OBJDIR)/update.h $(OBJDIR)/url_.c:$(OBJDIR)/url.h $(OBJDIR)/user_.c:$(OBJDIR)/user.h $(OBJDIR)/utf8_.c:$(OBJDIR)/utf8.h $(OBJDIR)/verify_.c:$(OBJDIR)/verify.h $(OBJDIR)/vfile_.c:$(OBJDIR)/vfile.h $(OBJDIR)/wiki_.c:$(OBJDIR)/wiki.h $(OBJDIR)/wikiformat_.c:$(OBJDIR)/wikiformat.h $(OBJDIR)/winhttp_.c:$(OBJDIR)/winhttp.h $(OBJDIR)/wysiwyg_.c:$(OBJDIR)/wysiwyg.h $(OBJDIR)/xfer_.c:$(OBJDIR)/xfer.h $(OBJDIR)/xfersetup_.c:$(OBJDIR)/xfersetup.h $(OBJDIR)/zip_.c:$(OBJDIR)/zip.h $(SRCDIR)/sqlite3.h $(SRCDIR)/th.h $(OBJDIR)/VERSION.h | |
| 398 | + $(OBJDIR)/makeheaders $(OBJDIR)/add_.c:$(OBJDIR)/add.h $(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h $(OBJDIR)/attach_.c:$(OBJDIR)/attach.h $(OBJDIR)/bag_.c:$(OBJDIR)/bag.h $(OBJDIR)/bisect_.c:$(OBJDIR)/bisect.h $(OBJDIR)/blob_.c:$(OBJDIR)/blob.h $(OBJDIR)/branch_.c:$(OBJDIR)/branch.h $(OBJDIR)/browse_.c:$(OBJDIR)/browse.h $(OBJDIR)/captcha_.c:$(OBJDIR)/captcha.h $(OBJDIR)/cgi_.c:$(OBJDIR)/cgi.h $(OBJDIR)/checkin_.c:$(OBJDIR)/checkin.h $(OBJDIR)/checkout_.c:$(OBJDIR)/checkout.h $(OBJDIR)/clearsign_.c:$(OBJDIR)/clearsign.h $(OBJDIR)/clone_.c:$(OBJDIR)/clone.h $(OBJDIR)/comformat_.c:$(OBJDIR)/comformat.h $(OBJDIR)/configure_.c:$(OBJDIR)/configure.h $(OBJDIR)/content_.c:$(OBJDIR)/content.h $(OBJDIR)/db_.c:$(OBJDIR)/db.h $(OBJDIR)/delta_.c:$(OBJDIR)/delta.h $(OBJDIR)/deltacmd_.c:$(OBJDIR)/deltacmd.h $(OBJDIR)/descendants_.c:$(OBJDIR)/descendants.h $(OBJDIR)/diff_.c:$(OBJDIR)/diff.h $(OBJDIR)/diffcmd_.c:$(OBJDIR)/diffcmd.h $(OBJDIR)/doc_.c:$(OBJDIR)/doc.h $(OBJDIR)/encode_.c:$(OBJDIR)/encode.h $(OBJDIR)/event_.c:$(OBJDIR)/event.h $(OBJDIR)/export_.c:$(OBJDIR)/export.h $(OBJDIR)/file_.c:$(OBJDIR)/file.h $(OBJDIR)/finfo_.c:$(OBJDIR)/finfo.h $(OBJDIR)/glob_.c:$(OBJDIR)/glob.h $(OBJDIR)/graph_.c:$(OBJDIR)/graph.h $(OBJDIR)/gzip_.c:$(OBJDIR)/gzip.h $(OBJDIR)/http_.c:$(OBJDIR)/http.h $(OBJDIR)/http_socket_.c:$(OBJDIR)/http_socket.h $(OBJDIR)/http_ssl_.c:$(OBJDIR)/http_ssl.h $(OBJDIR)/http_transport_.c:$(OBJDIR)/http_transport.h $(OBJDIR)/import_.c:$(OBJDIR)/import.h $(OBJDIR)/info_.c:$(OBJDIR)/info.h $(OBJDIR)/json_.c:$(OBJDIR)/json.h $(OBJDIR)/json_artifact_.c:$(OBJDIR)/json_artifact.h $(OBJDIR)/json_branch_.c:$(OBJDIR)/json_branch.h $(OBJDIR)/json_config_.c:$(OBJDIR)/json_config.h $(OBJDIR)/json_diff_.c:$(OBJDIR)/json_diff.h $(OBJDIR)/json_dir_.c:$(OBJDIR)/json_dir.h $(OBJDIR)/json_finfo_.c:$(OBJDIR)/json_finfo.h $(OBJDIR)/json_login_.c:$(OBJDIR)/json_login.h $(OBJDIR)/json_query_.c:$(OBJDIR)/json_query.h $(OBJDIR)/json_report_.c:$(OBJDIR)/json_report.h $(OBJDIR)/json_tag_.c:$(OBJDIR)/json_tag.h $(OBJDIR)/json_timeline_.c:$(OBJDIR)/json_timeline.h $(OBJDIR)/json_user_.c:$(OBJDIR)/json_user.h $(OBJDIR)/json_wiki_.c:$(OBJDIR)/json_wiki.h $(OBJDIR)/leaf_.c:$(OBJDIR)/leaf.h $(OBJDIR)/login_.c:$(OBJDIR)/login.h $(OBJDIR)/main_.c:$(OBJDIR)/main.h $(OBJDIR)/manifest_.c:$(OBJDIR)/manifest.h $(OBJDIR)/markdown_.c:$(OBJDIR)/markdown.h $(OBJDIR)/markdown_html_.c:$(OBJDIR)/markdown_html.h $(OBJDIR)/md5_.c:$(OBJDIR)/md5.h $(OBJDIR)/merge_.c:$(OBJDIR)/merge.h $(OBJDIR)/merge3_.c:$(OBJDIR)/merge3.h $(OBJDIR)/moderate_.c:$(OBJDIR)/moderate.h $(OBJDIR)/name_.c:$(OBJDIR)/name.h $(OBJDIR)/path_.c:$(OBJDIR)/path.h $(OBJDIR)/pivot_.c:$(OBJDIR)/pivot.h $(OBJDIR)/popen_.c:$(OBJDIR)/popen.h $(OBJDIR)/pqueue_.c:$(OBJDIR)/pqueue.h $(OBJDIR)/printf_.c:$(OBJDIR)/printf.h $(OBJDIR)/rebuild_.c:$(OBJDIR)/rebuild.h $(OBJDIR)/regexp_.c:$(OBJDIR)/regexp.h $(OBJDIR)/report_.c:$(OBJDIR)/report.h $(OBJDIR)/rss_.c:$(OBJDIR)/rss.h $(OBJDIR)/schema_.c:$(OBJDIR)/schema.h $(OBJDIR)/search_.c:$(OBJDIR)/search.h $(OBJDIR)/setup_.c:$(OBJDIR)/setup.h $(OBJDIR)/sha1_.c:$(OBJDIR)/sha1.h $(OBJDIR)/shun_.c:$(OBJDIR)/shun.h $(OBJDIR)/skins_.c:$(OBJDIR)/skins.h $(OBJDIR)/sqlcmd_.c:$(OBJDIR)/sqlcmd.h $(OBJDIR)/stash_.c:$(OBJDIR)/stash.h $(OBJDIR)/stat_.c:$(OBJDIR)/stat.h $(OBJDIR)/style_.c:$(OBJDIR)/style.h $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h $(OBJDIR)/update_.c:$(OBJDIR)/update.h $(OBJDIR)/url_.c:$(OBJDIR)/url.h $(OBJDIR)/user_.c:$(OBJDIR)/user.h $(OBJDIR)/utf8_.c:$(OBJDIR)/utf8.h $(OBJDIR)/verify_.c:$(OBJDIR)/verify.h $(OBJDIR)/vfile_.c:$(OBJDIR)/vfile.h $(OBJDIR)/wiki_.c:$(OBJDIR)/wiki.h $(OBJDIR)/wikiformat_.c:$(OBJDIR)/wikiformat.h $(OBJDIR)/winhttp_.c:$(OBJDIR)/winhttp.h $(OBJDIR)/wysiwyg_.c:$(OBJDIR)/wysiwyg.h $(OBJDIR)/xfer_.c:$(OBJDIR)/xfer.h $(OBJDIR)/xfersetup_.c:$(OBJDIR)/xfersetup.h $(OBJDIR)/zip_.c:$(OBJDIR)/zip.h $(SRCDIR)/sqlite3.h $(SRCDIR)/th.h $(OBJDIR)/VERSION.h | |
| 396 | 399 | touch $(OBJDIR)/headers |
| 397 | 400 | $(OBJDIR)/headers: Makefile |
| 398 | 401 | $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/json_config.o $(OBJDIR)/json_diff.o $(OBJDIR)/json_dir.o $(OBJDIR)/json_finfo.o $(OBJDIR)/json_login.o $(OBJDIR)/json_query.o $(OBJDIR)/json_report.o $(OBJDIR)/json_tag.o $(OBJDIR)/json_timeline.o $(OBJDIR)/json_user.o $(OBJDIR)/json_wiki.o : $(SRCDIR)/json_detail.h |
| 399 | 402 | Makefile: |
| 400 | 403 | $(OBJDIR)/add_.c: $(SRCDIR)/add.c $(OBJDIR)/translate |
| @@ -878,10 +881,17 @@ | ||
| 878 | 881 | |
| 879 | 882 | $(OBJDIR)/rebuild.o: $(OBJDIR)/rebuild_.c $(OBJDIR)/rebuild.h $(SRCDIR)/config.h |
| 880 | 883 | $(XTCC) -o $(OBJDIR)/rebuild.o -c $(OBJDIR)/rebuild_.c |
| 881 | 884 | |
| 882 | 885 | $(OBJDIR)/rebuild.h: $(OBJDIR)/headers |
| 886 | +$(OBJDIR)/regexp_.c: $(SRCDIR)/regexp.c $(OBJDIR)/translate | |
| 887 | + $(OBJDIR)/translate $(SRCDIR)/regexp.c >$(OBJDIR)/regexp_.c | |
| 888 | + | |
| 889 | +$(OBJDIR)/regexp.o: $(OBJDIR)/regexp_.c $(OBJDIR)/regexp.h $(SRCDIR)/config.h | |
| 890 | + $(XTCC) -o $(OBJDIR)/regexp.o -c $(OBJDIR)/regexp_.c | |
| 891 | + | |
| 892 | +$(OBJDIR)/regexp.h: $(OBJDIR)/headers | |
| 883 | 893 | $(OBJDIR)/report_.c: $(SRCDIR)/report.c $(OBJDIR)/translate |
| 884 | 894 | $(OBJDIR)/translate $(SRCDIR)/report.c >$(OBJDIR)/report_.c |
| 885 | 895 | |
| 886 | 896 | $(OBJDIR)/report.o: $(OBJDIR)/report_.c $(OBJDIR)/report.h $(SRCDIR)/config.h |
| 887 | 897 | $(XTCC) -o $(OBJDIR)/report.o -c $(OBJDIR)/report_.c |
| 888 | 898 |
| --- src/main.mk | |
| +++ src/main.mk | |
| @@ -81,10 +81,11 @@ | |
| 81 | $(SRCDIR)/pivot.c \ |
| 82 | $(SRCDIR)/popen.c \ |
| 83 | $(SRCDIR)/pqueue.c \ |
| 84 | $(SRCDIR)/printf.c \ |
| 85 | $(SRCDIR)/rebuild.c \ |
| 86 | $(SRCDIR)/report.c \ |
| 87 | $(SRCDIR)/rss.c \ |
| 88 | $(SRCDIR)/schema.c \ |
| 89 | $(SRCDIR)/search.c \ |
| 90 | $(SRCDIR)/setup.c \ |
| @@ -185,10 +186,11 @@ | |
| 185 | $(OBJDIR)/pivot_.c \ |
| 186 | $(OBJDIR)/popen_.c \ |
| 187 | $(OBJDIR)/pqueue_.c \ |
| 188 | $(OBJDIR)/printf_.c \ |
| 189 | $(OBJDIR)/rebuild_.c \ |
| 190 | $(OBJDIR)/report_.c \ |
| 191 | $(OBJDIR)/rss_.c \ |
| 192 | $(OBJDIR)/schema_.c \ |
| 193 | $(OBJDIR)/search_.c \ |
| 194 | $(OBJDIR)/setup_.c \ |
| @@ -289,10 +291,11 @@ | |
| 289 | $(OBJDIR)/pivot.o \ |
| 290 | $(OBJDIR)/popen.o \ |
| 291 | $(OBJDIR)/pqueue.o \ |
| 292 | $(OBJDIR)/printf.o \ |
| 293 | $(OBJDIR)/rebuild.o \ |
| 294 | $(OBJDIR)/report.o \ |
| 295 | $(OBJDIR)/rss.o \ |
| 296 | $(OBJDIR)/schema.o \ |
| 297 | $(OBJDIR)/search.o \ |
| 298 | $(OBJDIR)/setup.o \ |
| @@ -390,11 +393,11 @@ | |
| 390 | |
| 391 | |
| 392 | $(OBJDIR)/page_index.h: $(TRANS_SRC) $(OBJDIR)/mkindex |
| 393 | $(OBJDIR)/mkindex $(TRANS_SRC) >$@ |
| 394 | $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/makeheaders $(OBJDIR)/VERSION.h |
| 395 | $(OBJDIR)/makeheaders $(OBJDIR)/add_.c:$(OBJDIR)/add.h $(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h $(OBJDIR)/attach_.c:$(OBJDIR)/attach.h $(OBJDIR)/bag_.c:$(OBJDIR)/bag.h $(OBJDIR)/bisect_.c:$(OBJDIR)/bisect.h $(OBJDIR)/blob_.c:$(OBJDIR)/blob.h $(OBJDIR)/branch_.c:$(OBJDIR)/branch.h $(OBJDIR)/browse_.c:$(OBJDIR)/browse.h $(OBJDIR)/captcha_.c:$(OBJDIR)/captcha.h $(OBJDIR)/cgi_.c:$(OBJDIR)/cgi.h $(OBJDIR)/checkin_.c:$(OBJDIR)/checkin.h $(OBJDIR)/checkout_.c:$(OBJDIR)/checkout.h $(OBJDIR)/clearsign_.c:$(OBJDIR)/clearsign.h $(OBJDIR)/clone_.c:$(OBJDIR)/clone.h $(OBJDIR)/comformat_.c:$(OBJDIR)/comformat.h $(OBJDIR)/configure_.c:$(OBJDIR)/configure.h $(OBJDIR)/content_.c:$(OBJDIR)/content.h $(OBJDIR)/db_.c:$(OBJDIR)/db.h $(OBJDIR)/delta_.c:$(OBJDIR)/delta.h $(OBJDIR)/deltacmd_.c:$(OBJDIR)/deltacmd.h $(OBJDIR)/descendants_.c:$(OBJDIR)/descendants.h $(OBJDIR)/diff_.c:$(OBJDIR)/diff.h $(OBJDIR)/diffcmd_.c:$(OBJDIR)/diffcmd.h $(OBJDIR)/doc_.c:$(OBJDIR)/doc.h $(OBJDIR)/encode_.c:$(OBJDIR)/encode.h $(OBJDIR)/event_.c:$(OBJDIR)/event.h $(OBJDIR)/export_.c:$(OBJDIR)/export.h $(OBJDIR)/file_.c:$(OBJDIR)/file.h $(OBJDIR)/finfo_.c:$(OBJDIR)/finfo.h $(OBJDIR)/glob_.c:$(OBJDIR)/glob.h $(OBJDIR)/graph_.c:$(OBJDIR)/graph.h $(OBJDIR)/gzip_.c:$(OBJDIR)/gzip.h $(OBJDIR)/http_.c:$(OBJDIR)/http.h $(OBJDIR)/http_socket_.c:$(OBJDIR)/http_socket.h $(OBJDIR)/http_ssl_.c:$(OBJDIR)/http_ssl.h $(OBJDIR)/http_transport_.c:$(OBJDIR)/http_transport.h $(OBJDIR)/import_.c:$(OBJDIR)/import.h $(OBJDIR)/info_.c:$(OBJDIR)/info.h $(OBJDIR)/json_.c:$(OBJDIR)/json.h $(OBJDIR)/json_artifact_.c:$(OBJDIR)/json_artifact.h $(OBJDIR)/json_branch_.c:$(OBJDIR)/json_branch.h $(OBJDIR)/json_config_.c:$(OBJDIR)/json_config.h $(OBJDIR)/json_diff_.c:$(OBJDIR)/json_diff.h $(OBJDIR)/json_dir_.c:$(OBJDIR)/json_dir.h $(OBJDIR)/json_finfo_.c:$(OBJDIR)/json_finfo.h $(OBJDIR)/json_login_.c:$(OBJDIR)/json_login.h $(OBJDIR)/json_query_.c:$(OBJDIR)/json_query.h $(OBJDIR)/json_report_.c:$(OBJDIR)/json_report.h $(OBJDIR)/json_tag_.c:$(OBJDIR)/json_tag.h $(OBJDIR)/json_timeline_.c:$(OBJDIR)/json_timeline.h $(OBJDIR)/json_user_.c:$(OBJDIR)/json_user.h $(OBJDIR)/json_wiki_.c:$(OBJDIR)/json_wiki.h $(OBJDIR)/leaf_.c:$(OBJDIR)/leaf.h $(OBJDIR)/login_.c:$(OBJDIR)/login.h $(OBJDIR)/main_.c:$(OBJDIR)/main.h $(OBJDIR)/manifest_.c:$(OBJDIR)/manifest.h $(OBJDIR)/markdown_.c:$(OBJDIR)/markdown.h $(OBJDIR)/markdown_html_.c:$(OBJDIR)/markdown_html.h $(OBJDIR)/md5_.c:$(OBJDIR)/md5.h $(OBJDIR)/merge_.c:$(OBJDIR)/merge.h $(OBJDIR)/merge3_.c:$(OBJDIR)/merge3.h $(OBJDIR)/moderate_.c:$(OBJDIR)/moderate.h $(OBJDIR)/name_.c:$(OBJDIR)/name.h $(OBJDIR)/path_.c:$(OBJDIR)/path.h $(OBJDIR)/pivot_.c:$(OBJDIR)/pivot.h $(OBJDIR)/popen_.c:$(OBJDIR)/popen.h $(OBJDIR)/pqueue_.c:$(OBJDIR)/pqueue.h $(OBJDIR)/printf_.c:$(OBJDIR)/printf.h $(OBJDIR)/rebuild_.c:$(OBJDIR)/rebuild.h $(OBJDIR)/report_.c:$(OBJDIR)/report.h $(OBJDIR)/rss_.c:$(OBJDIR)/rss.h $(OBJDIR)/schema_.c:$(OBJDIR)/schema.h $(OBJDIR)/search_.c:$(OBJDIR)/search.h $(OBJDIR)/setup_.c:$(OBJDIR)/setup.h $(OBJDIR)/sha1_.c:$(OBJDIR)/sha1.h $(OBJDIR)/shun_.c:$(OBJDIR)/shun.h $(OBJDIR)/skins_.c:$(OBJDIR)/skins.h $(OBJDIR)/sqlcmd_.c:$(OBJDIR)/sqlcmd.h $(OBJDIR)/stash_.c:$(OBJDIR)/stash.h $(OBJDIR)/stat_.c:$(OBJDIR)/stat.h $(OBJDIR)/style_.c:$(OBJDIR)/style.h $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h $(OBJDIR)/update_.c:$(OBJDIR)/update.h $(OBJDIR)/url_.c:$(OBJDIR)/url.h $(OBJDIR)/user_.c:$(OBJDIR)/user.h $(OBJDIR)/utf8_.c:$(OBJDIR)/utf8.h $(OBJDIR)/verify_.c:$(OBJDIR)/verify.h $(OBJDIR)/vfile_.c:$(OBJDIR)/vfile.h $(OBJDIR)/wiki_.c:$(OBJDIR)/wiki.h $(OBJDIR)/wikiformat_.c:$(OBJDIR)/wikiformat.h $(OBJDIR)/winhttp_.c:$(OBJDIR)/winhttp.h $(OBJDIR)/wysiwyg_.c:$(OBJDIR)/wysiwyg.h $(OBJDIR)/xfer_.c:$(OBJDIR)/xfer.h $(OBJDIR)/xfersetup_.c:$(OBJDIR)/xfersetup.h $(OBJDIR)/zip_.c:$(OBJDIR)/zip.h $(SRCDIR)/sqlite3.h $(SRCDIR)/th.h $(OBJDIR)/VERSION.h |
| 396 | touch $(OBJDIR)/headers |
| 397 | $(OBJDIR)/headers: Makefile |
| 398 | $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/json_config.o $(OBJDIR)/json_diff.o $(OBJDIR)/json_dir.o $(OBJDIR)/json_finfo.o $(OBJDIR)/json_login.o $(OBJDIR)/json_query.o $(OBJDIR)/json_report.o $(OBJDIR)/json_tag.o $(OBJDIR)/json_timeline.o $(OBJDIR)/json_user.o $(OBJDIR)/json_wiki.o : $(SRCDIR)/json_detail.h |
| 399 | Makefile: |
| 400 | $(OBJDIR)/add_.c: $(SRCDIR)/add.c $(OBJDIR)/translate |
| @@ -878,10 +881,17 @@ | |
| 878 | |
| 879 | $(OBJDIR)/rebuild.o: $(OBJDIR)/rebuild_.c $(OBJDIR)/rebuild.h $(SRCDIR)/config.h |
| 880 | $(XTCC) -o $(OBJDIR)/rebuild.o -c $(OBJDIR)/rebuild_.c |
| 881 | |
| 882 | $(OBJDIR)/rebuild.h: $(OBJDIR)/headers |
| 883 | $(OBJDIR)/report_.c: $(SRCDIR)/report.c $(OBJDIR)/translate |
| 884 | $(OBJDIR)/translate $(SRCDIR)/report.c >$(OBJDIR)/report_.c |
| 885 | |
| 886 | $(OBJDIR)/report.o: $(OBJDIR)/report_.c $(OBJDIR)/report.h $(SRCDIR)/config.h |
| 887 | $(XTCC) -o $(OBJDIR)/report.o -c $(OBJDIR)/report_.c |
| 888 |
| --- src/main.mk | |
| +++ src/main.mk | |
| @@ -81,10 +81,11 @@ | |
| 81 | $(SRCDIR)/pivot.c \ |
| 82 | $(SRCDIR)/popen.c \ |
| 83 | $(SRCDIR)/pqueue.c \ |
| 84 | $(SRCDIR)/printf.c \ |
| 85 | $(SRCDIR)/rebuild.c \ |
| 86 | $(SRCDIR)/regexp.c \ |
| 87 | $(SRCDIR)/report.c \ |
| 88 | $(SRCDIR)/rss.c \ |
| 89 | $(SRCDIR)/schema.c \ |
| 90 | $(SRCDIR)/search.c \ |
| 91 | $(SRCDIR)/setup.c \ |
| @@ -185,10 +186,11 @@ | |
| 186 | $(OBJDIR)/pivot_.c \ |
| 187 | $(OBJDIR)/popen_.c \ |
| 188 | $(OBJDIR)/pqueue_.c \ |
| 189 | $(OBJDIR)/printf_.c \ |
| 190 | $(OBJDIR)/rebuild_.c \ |
| 191 | $(OBJDIR)/regexp_.c \ |
| 192 | $(OBJDIR)/report_.c \ |
| 193 | $(OBJDIR)/rss_.c \ |
| 194 | $(OBJDIR)/schema_.c \ |
| 195 | $(OBJDIR)/search_.c \ |
| 196 | $(OBJDIR)/setup_.c \ |
| @@ -289,10 +291,11 @@ | |
| 291 | $(OBJDIR)/pivot.o \ |
| 292 | $(OBJDIR)/popen.o \ |
| 293 | $(OBJDIR)/pqueue.o \ |
| 294 | $(OBJDIR)/printf.o \ |
| 295 | $(OBJDIR)/rebuild.o \ |
| 296 | $(OBJDIR)/regexp.o \ |
| 297 | $(OBJDIR)/report.o \ |
| 298 | $(OBJDIR)/rss.o \ |
| 299 | $(OBJDIR)/schema.o \ |
| 300 | $(OBJDIR)/search.o \ |
| 301 | $(OBJDIR)/setup.o \ |
| @@ -390,11 +393,11 @@ | |
| 393 | |
| 394 | |
| 395 | $(OBJDIR)/page_index.h: $(TRANS_SRC) $(OBJDIR)/mkindex |
| 396 | $(OBJDIR)/mkindex $(TRANS_SRC) >$@ |
| 397 | $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/makeheaders $(OBJDIR)/VERSION.h |
| 398 | $(OBJDIR)/makeheaders $(OBJDIR)/add_.c:$(OBJDIR)/add.h $(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h $(OBJDIR)/attach_.c:$(OBJDIR)/attach.h $(OBJDIR)/bag_.c:$(OBJDIR)/bag.h $(OBJDIR)/bisect_.c:$(OBJDIR)/bisect.h $(OBJDIR)/blob_.c:$(OBJDIR)/blob.h $(OBJDIR)/branch_.c:$(OBJDIR)/branch.h $(OBJDIR)/browse_.c:$(OBJDIR)/browse.h $(OBJDIR)/captcha_.c:$(OBJDIR)/captcha.h $(OBJDIR)/cgi_.c:$(OBJDIR)/cgi.h $(OBJDIR)/checkin_.c:$(OBJDIR)/checkin.h $(OBJDIR)/checkout_.c:$(OBJDIR)/checkout.h $(OBJDIR)/clearsign_.c:$(OBJDIR)/clearsign.h $(OBJDIR)/clone_.c:$(OBJDIR)/clone.h $(OBJDIR)/comformat_.c:$(OBJDIR)/comformat.h $(OBJDIR)/configure_.c:$(OBJDIR)/configure.h $(OBJDIR)/content_.c:$(OBJDIR)/content.h $(OBJDIR)/db_.c:$(OBJDIR)/db.h $(OBJDIR)/delta_.c:$(OBJDIR)/delta.h $(OBJDIR)/deltacmd_.c:$(OBJDIR)/deltacmd.h $(OBJDIR)/descendants_.c:$(OBJDIR)/descendants.h $(OBJDIR)/diff_.c:$(OBJDIR)/diff.h $(OBJDIR)/diffcmd_.c:$(OBJDIR)/diffcmd.h $(OBJDIR)/doc_.c:$(OBJDIR)/doc.h $(OBJDIR)/encode_.c:$(OBJDIR)/encode.h $(OBJDIR)/event_.c:$(OBJDIR)/event.h $(OBJDIR)/export_.c:$(OBJDIR)/export.h $(OBJDIR)/file_.c:$(OBJDIR)/file.h $(OBJDIR)/finfo_.c:$(OBJDIR)/finfo.h $(OBJDIR)/glob_.c:$(OBJDIR)/glob.h $(OBJDIR)/graph_.c:$(OBJDIR)/graph.h $(OBJDIR)/gzip_.c:$(OBJDIR)/gzip.h $(OBJDIR)/http_.c:$(OBJDIR)/http.h $(OBJDIR)/http_socket_.c:$(OBJDIR)/http_socket.h $(OBJDIR)/http_ssl_.c:$(OBJDIR)/http_ssl.h $(OBJDIR)/http_transport_.c:$(OBJDIR)/http_transport.h $(OBJDIR)/import_.c:$(OBJDIR)/import.h $(OBJDIR)/info_.c:$(OBJDIR)/info.h $(OBJDIR)/json_.c:$(OBJDIR)/json.h $(OBJDIR)/json_artifact_.c:$(OBJDIR)/json_artifact.h $(OBJDIR)/json_branch_.c:$(OBJDIR)/json_branch.h $(OBJDIR)/json_config_.c:$(OBJDIR)/json_config.h $(OBJDIR)/json_diff_.c:$(OBJDIR)/json_diff.h $(OBJDIR)/json_dir_.c:$(OBJDIR)/json_dir.h $(OBJDIR)/json_finfo_.c:$(OBJDIR)/json_finfo.h $(OBJDIR)/json_login_.c:$(OBJDIR)/json_login.h $(OBJDIR)/json_query_.c:$(OBJDIR)/json_query.h $(OBJDIR)/json_report_.c:$(OBJDIR)/json_report.h $(OBJDIR)/json_tag_.c:$(OBJDIR)/json_tag.h $(OBJDIR)/json_timeline_.c:$(OBJDIR)/json_timeline.h $(OBJDIR)/json_user_.c:$(OBJDIR)/json_user.h $(OBJDIR)/json_wiki_.c:$(OBJDIR)/json_wiki.h $(OBJDIR)/leaf_.c:$(OBJDIR)/leaf.h $(OBJDIR)/login_.c:$(OBJDIR)/login.h $(OBJDIR)/main_.c:$(OBJDIR)/main.h $(OBJDIR)/manifest_.c:$(OBJDIR)/manifest.h $(OBJDIR)/markdown_.c:$(OBJDIR)/markdown.h $(OBJDIR)/markdown_html_.c:$(OBJDIR)/markdown_html.h $(OBJDIR)/md5_.c:$(OBJDIR)/md5.h $(OBJDIR)/merge_.c:$(OBJDIR)/merge.h $(OBJDIR)/merge3_.c:$(OBJDIR)/merge3.h $(OBJDIR)/moderate_.c:$(OBJDIR)/moderate.h $(OBJDIR)/name_.c:$(OBJDIR)/name.h $(OBJDIR)/path_.c:$(OBJDIR)/path.h $(OBJDIR)/pivot_.c:$(OBJDIR)/pivot.h $(OBJDIR)/popen_.c:$(OBJDIR)/popen.h $(OBJDIR)/pqueue_.c:$(OBJDIR)/pqueue.h $(OBJDIR)/printf_.c:$(OBJDIR)/printf.h $(OBJDIR)/rebuild_.c:$(OBJDIR)/rebuild.h $(OBJDIR)/regexp_.c:$(OBJDIR)/regexp.h $(OBJDIR)/report_.c:$(OBJDIR)/report.h $(OBJDIR)/rss_.c:$(OBJDIR)/rss.h $(OBJDIR)/schema_.c:$(OBJDIR)/schema.h $(OBJDIR)/search_.c:$(OBJDIR)/search.h $(OBJDIR)/setup_.c:$(OBJDIR)/setup.h $(OBJDIR)/sha1_.c:$(OBJDIR)/sha1.h $(OBJDIR)/shun_.c:$(OBJDIR)/shun.h $(OBJDIR)/skins_.c:$(OBJDIR)/skins.h $(OBJDIR)/sqlcmd_.c:$(OBJDIR)/sqlcmd.h $(OBJDIR)/stash_.c:$(OBJDIR)/stash.h $(OBJDIR)/stat_.c:$(OBJDIR)/stat.h $(OBJDIR)/style_.c:$(OBJDIR)/style.h $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h $(OBJDIR)/update_.c:$(OBJDIR)/update.h $(OBJDIR)/url_.c:$(OBJDIR)/url.h $(OBJDIR)/user_.c:$(OBJDIR)/user.h $(OBJDIR)/utf8_.c:$(OBJDIR)/utf8.h $(OBJDIR)/verify_.c:$(OBJDIR)/verify.h $(OBJDIR)/vfile_.c:$(OBJDIR)/vfile.h $(OBJDIR)/wiki_.c:$(OBJDIR)/wiki.h $(OBJDIR)/wikiformat_.c:$(OBJDIR)/wikiformat.h $(OBJDIR)/winhttp_.c:$(OBJDIR)/winhttp.h $(OBJDIR)/wysiwyg_.c:$(OBJDIR)/wysiwyg.h $(OBJDIR)/xfer_.c:$(OBJDIR)/xfer.h $(OBJDIR)/xfersetup_.c:$(OBJDIR)/xfersetup.h $(OBJDIR)/zip_.c:$(OBJDIR)/zip.h $(SRCDIR)/sqlite3.h $(SRCDIR)/th.h $(OBJDIR)/VERSION.h |
| 399 | touch $(OBJDIR)/headers |
| 400 | $(OBJDIR)/headers: Makefile |
| 401 | $(OBJDIR)/json.o $(OBJDIR)/json_artifact.o $(OBJDIR)/json_branch.o $(OBJDIR)/json_config.o $(OBJDIR)/json_diff.o $(OBJDIR)/json_dir.o $(OBJDIR)/json_finfo.o $(OBJDIR)/json_login.o $(OBJDIR)/json_query.o $(OBJDIR)/json_report.o $(OBJDIR)/json_tag.o $(OBJDIR)/json_timeline.o $(OBJDIR)/json_user.o $(OBJDIR)/json_wiki.o : $(SRCDIR)/json_detail.h |
| 402 | Makefile: |
| 403 | $(OBJDIR)/add_.c: $(SRCDIR)/add.c $(OBJDIR)/translate |
| @@ -878,10 +881,17 @@ | |
| 881 | |
| 882 | $(OBJDIR)/rebuild.o: $(OBJDIR)/rebuild_.c $(OBJDIR)/rebuild.h $(SRCDIR)/config.h |
| 883 | $(XTCC) -o $(OBJDIR)/rebuild.o -c $(OBJDIR)/rebuild_.c |
| 884 | |
| 885 | $(OBJDIR)/rebuild.h: $(OBJDIR)/headers |
| 886 | $(OBJDIR)/regexp_.c: $(SRCDIR)/regexp.c $(OBJDIR)/translate |
| 887 | $(OBJDIR)/translate $(SRCDIR)/regexp.c >$(OBJDIR)/regexp_.c |
| 888 | |
| 889 | $(OBJDIR)/regexp.o: $(OBJDIR)/regexp_.c $(OBJDIR)/regexp.h $(SRCDIR)/config.h |
| 890 | $(XTCC) -o $(OBJDIR)/regexp.o -c $(OBJDIR)/regexp_.c |
| 891 | |
| 892 | $(OBJDIR)/regexp.h: $(OBJDIR)/headers |
| 893 | $(OBJDIR)/report_.c: $(SRCDIR)/report.c $(OBJDIR)/translate |
| 894 | $(OBJDIR)/translate $(SRCDIR)/report.c >$(OBJDIR)/report_.c |
| 895 | |
| 896 | $(OBJDIR)/report.o: $(OBJDIR)/report_.c $(OBJDIR)/report.h $(SRCDIR)/config.h |
| 897 | $(XTCC) -o $(OBJDIR)/report.o -c $(OBJDIR)/report_.c |
| 898 |
+1
| --- src/makemake.tcl | ||
| +++ src/makemake.tcl | ||
| @@ -84,10 +84,11 @@ | ||
| 84 | 84 | pivot |
| 85 | 85 | popen |
| 86 | 86 | pqueue |
| 87 | 87 | printf |
| 88 | 88 | rebuild |
| 89 | + regexp | |
| 89 | 90 | report |
| 90 | 91 | rss |
| 91 | 92 | schema |
| 92 | 93 | search |
| 93 | 94 | setup |
| 94 | 95 | |
| 95 | 96 | ADDED src/regexp.c |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -84,10 +84,11 @@ | |
| 84 | pivot |
| 85 | popen |
| 86 | pqueue |
| 87 | printf |
| 88 | rebuild |
| 89 | report |
| 90 | rss |
| 91 | schema |
| 92 | search |
| 93 | setup |
| 94 | |
| 95 | DDED src/regexp.c |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -84,10 +84,11 @@ | |
| 84 | pivot |
| 85 | popen |
| 86 | pqueue |
| 87 | printf |
| 88 | rebuild |
| 89 | regexp |
| 90 | report |
| 91 | rss |
| 92 | schema |
| 93 | search |
| 94 | setup |
| 95 | |
| 96 | DDED src/regexp.c |
+12
| --- a/src/regexp.c | ||
| +++ b/src/regexp.c | ||
| @@ -0,0 +1,12 @@ | ||
| 1 | +0xv' || c=='\f'pRe->sIn.z); | |
| 2 | +_end() andIn;const unsigned char**pzIn){ | |
| 3 | + unsigned c = **re_next_cxv' || c=='\f'pRe->sIn.z); | |
| 4 | +_end() andIn;const unsigned char**pzIn){ | |
| 5 | + unsigned c = ** || c=='\re_next_cre_nexthar(&p->zIn); | |
| 6 | + || c=='\f'pRe->sIn.z); | |
| 7 | +_end() andIn;const unsigned char**pzIn){ | |
| 8 | + unsigned c = **0xv' || c=='\f'pRe->sIn.z); | |
| 9 | +_end() andIn;const unsigned char**pzIn){ | |
| 10 | + unsigned c = **); | |
| 11 | + (c>='0' && c<='9') || (c>='a' && c<='z') | |
| 12 | + || (c>='A' && c<='Z' |
| --- a/src/regexp.c | |
| +++ b/src/regexp.c | |
| @@ -0,0 +1,12 @@ | |
| --- a/src/regexp.c | |
| +++ b/src/regexp.c | |
| @@ -0,0 +1,12 @@ | |
| 1 | 0xv' || c=='\f'pRe->sIn.z); |
| 2 | _end() andIn;const unsigned char**pzIn){ |
| 3 | unsigned c = **re_next_cxv' || c=='\f'pRe->sIn.z); |
| 4 | _end() andIn;const unsigned char**pzIn){ |
| 5 | unsigned c = ** || c=='\re_next_cre_nexthar(&p->zIn); |
| 6 | || c=='\f'pRe->sIn.z); |
| 7 | _end() andIn;const unsigned char**pzIn){ |
| 8 | unsigned c = **0xv' || c=='\f'pRe->sIn.z); |
| 9 | _end() andIn;const unsigned char**pzIn){ |
| 10 | unsigned c = **); |
| 11 | (c>='0' && c<='9') || (c>='a' && c<='z') |
| 12 | || (c>='A' && c<='Z' |
+1
| --- src/sqlcmd.c | ||
| +++ src/sqlcmd.c | ||
| @@ -118,10 +118,11 @@ | ||
| 118 | 118 | sqlcmd_content, 0, 0); |
| 119 | 119 | sqlite3_create_function(db, "compress", 1, SQLITE_ANY, 0, |
| 120 | 120 | sqlcmd_compress, 0, 0); |
| 121 | 121 | sqlite3_create_function(db, "decompress", 1, SQLITE_ANY, 0, |
| 122 | 122 | sqlcmd_decompress, 0, 0); |
| 123 | + re_add_sql_func(db); | |
| 123 | 124 | g.repositoryOpen = 1; |
| 124 | 125 | g.db = db; |
| 125 | 126 | return SQLITE_OK; |
| 126 | 127 | } |
| 127 | 128 | |
| 128 | 129 |
| --- src/sqlcmd.c | |
| +++ src/sqlcmd.c | |
| @@ -118,10 +118,11 @@ | |
| 118 | sqlcmd_content, 0, 0); |
| 119 | sqlite3_create_function(db, "compress", 1, SQLITE_ANY, 0, |
| 120 | sqlcmd_compress, 0, 0); |
| 121 | sqlite3_create_function(db, "decompress", 1, SQLITE_ANY, 0, |
| 122 | sqlcmd_decompress, 0, 0); |
| 123 | g.repositoryOpen = 1; |
| 124 | g.db = db; |
| 125 | return SQLITE_OK; |
| 126 | } |
| 127 | |
| 128 |
| --- src/sqlcmd.c | |
| +++ src/sqlcmd.c | |
| @@ -118,10 +118,11 @@ | |
| 118 | sqlcmd_content, 0, 0); |
| 119 | sqlite3_create_function(db, "compress", 1, SQLITE_ANY, 0, |
| 120 | sqlcmd_compress, 0, 0); |
| 121 | sqlite3_create_function(db, "decompress", 1, SQLITE_ANY, 0, |
| 122 | sqlcmd_decompress, 0, 0); |
| 123 | re_add_sql_func(db); |
| 124 | g.repositoryOpen = 1; |
| 125 | g.db = db; |
| 126 | return SQLITE_OK; |
| 127 | } |
| 128 | |
| 129 |
+10
-4
| --- win/Makefile.dmc | ||
| +++ win/Makefile.dmc | ||
| @@ -26,13 +26,13 @@ | ||
| 26 | 26 | TCC = $(DMDIR)\bin\dmc $(CFLAGS) $(DMCDEF) $(SSL) $(INCL) |
| 27 | 27 | LIBS = $(DMDIR)\extra\lib\ zlib wsock32 advapi32 |
| 28 | 28 | |
| 29 | 29 | SQLITE_OPTIONS = -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 |
| 30 | 30 | |
| 31 | -SRC = add_.c allrepo_.c attach_.c bag_.c bisect_.c blob_.c branch_.c browse_.c captcha_.c cgi_.c checkin_.c checkout_.c clearsign_.c clone_.c comformat_.c configure_.c content_.c db_.c delta_.c deltacmd_.c descendants_.c diff_.c diffcmd_.c doc_.c encode_.c event_.c export_.c file_.c finfo_.c glob_.c graph_.c gzip_.c http_.c http_socket_.c http_ssl_.c http_transport_.c import_.c info_.c json_.c json_artifact_.c json_branch_.c json_config_.c json_diff_.c json_dir_.c json_finfo_.c json_login_.c json_query_.c json_report_.c json_tag_.c json_timeline_.c json_user_.c json_wiki_.c leaf_.c login_.c main_.c manifest_.c markdown_.c markdown_html_.c md5_.c merge_.c merge3_.c moderate_.c name_.c path_.c pivot_.c popen_.c pqueue_.c printf_.c rebuild_.c report_.c rss_.c schema_.c search_.c setup_.c sha1_.c shun_.c skins_.c sqlcmd_.c stash_.c stat_.c style_.c sync_.c tag_.c tar_.c th_main_.c timeline_.c tkt_.c tktsetup_.c undo_.c update_.c url_.c user_.c utf8_.c verify_.c vfile_.c wiki_.c wikiformat_.c winhttp_.c wysiwyg_.c xfer_.c xfersetup_.c zip_.c | |
| 31 | +SRC = add_.c allrepo_.c attach_.c bag_.c bisect_.c blob_.c branch_.c browse_.c captcha_.c cgi_.c checkin_.c checkout_.c clearsign_.c clone_.c comformat_.c configure_.c content_.c db_.c delta_.c deltacmd_.c descendants_.c diff_.c diffcmd_.c doc_.c encode_.c event_.c export_.c file_.c finfo_.c glob_.c graph_.c gzip_.c http_.c http_socket_.c http_ssl_.c http_transport_.c import_.c info_.c json_.c json_artifact_.c json_branch_.c json_config_.c json_diff_.c json_dir_.c json_finfo_.c json_login_.c json_query_.c json_report_.c json_tag_.c json_timeline_.c json_user_.c json_wiki_.c leaf_.c login_.c main_.c manifest_.c markdown_.c markdown_html_.c md5_.c merge_.c merge3_.c moderate_.c name_.c path_.c pivot_.c popen_.c pqueue_.c printf_.c rebuild_.c regexp_.c report_.c rss_.c schema_.c search_.c setup_.c sha1_.c shun_.c skins_.c sqlcmd_.c stash_.c stat_.c style_.c sync_.c tag_.c tar_.c th_main_.c timeline_.c tkt_.c tktsetup_.c undo_.c update_.c url_.c user_.c utf8_.c verify_.c vfile_.c wiki_.c wikiformat_.c winhttp_.c wysiwyg_.c xfer_.c xfersetup_.c zip_.c | |
| 32 | 32 | |
| 33 | -OBJ = $(OBJDIR)\add$O $(OBJDIR)\allrepo$O $(OBJDIR)\attach$O $(OBJDIR)\bag$O $(OBJDIR)\bisect$O $(OBJDIR)\blob$O $(OBJDIR)\branch$O $(OBJDIR)\browse$O $(OBJDIR)\captcha$O $(OBJDIR)\cgi$O $(OBJDIR)\checkin$O $(OBJDIR)\checkout$O $(OBJDIR)\clearsign$O $(OBJDIR)\clone$O $(OBJDIR)\comformat$O $(OBJDIR)\configure$O $(OBJDIR)\content$O $(OBJDIR)\db$O $(OBJDIR)\delta$O $(OBJDIR)\deltacmd$O $(OBJDIR)\descendants$O $(OBJDIR)\diff$O $(OBJDIR)\diffcmd$O $(OBJDIR)\doc$O $(OBJDIR)\encode$O $(OBJDIR)\event$O $(OBJDIR)\export$O $(OBJDIR)\file$O $(OBJDIR)\finfo$O $(OBJDIR)\glob$O $(OBJDIR)\graph$O $(OBJDIR)\gzip$O $(OBJDIR)\http$O $(OBJDIR)\http_socket$O $(OBJDIR)\http_ssl$O $(OBJDIR)\http_transport$O $(OBJDIR)\import$O $(OBJDIR)\info$O $(OBJDIR)\json$O $(OBJDIR)\json_artifact$O $(OBJDIR)\json_branch$O $(OBJDIR)\json_config$O $(OBJDIR)\json_diff$O $(OBJDIR)\json_dir$O $(OBJDIR)\json_finfo$O $(OBJDIR)\json_login$O $(OBJDIR)\json_query$O $(OBJDIR)\json_report$O $(OBJDIR)\json_tag$O $(OBJDIR)\json_timeline$O $(OBJDIR)\json_user$O $(OBJDIR)\json_wiki$O $(OBJDIR)\leaf$O $(OBJDIR)\login$O $(OBJDIR)\main$O $(OBJDIR)\manifest$O $(OBJDIR)\markdown$O $(OBJDIR)\markdown_html$O $(OBJDIR)\md5$O $(OBJDIR)\merge$O $(OBJDIR)\merge3$O $(OBJDIR)\moderate$O $(OBJDIR)\name$O $(OBJDIR)\path$O $(OBJDIR)\pivot$O $(OBJDIR)\popen$O $(OBJDIR)\pqueue$O $(OBJDIR)\printf$O $(OBJDIR)\rebuild$O $(OBJDIR)\report$O $(OBJDIR)\rss$O $(OBJDIR)\schema$O $(OBJDIR)\search$O $(OBJDIR)\setup$O $(OBJDIR)\sha1$O $(OBJDIR)\shun$O $(OBJDIR)\skins$O $(OBJDIR)\sqlcmd$O $(OBJDIR)\stash$O $(OBJDIR)\stat$O $(OBJDIR)\style$O $(OBJDIR)\sync$O $(OBJDIR)\tag$O $(OBJDIR)\tar$O $(OBJDIR)\th_main$O $(OBJDIR)\timeline$O $(OBJDIR)\tkt$O $(OBJDIR)\tktsetup$O $(OBJDIR)\undo$O $(OBJDIR)\update$O $(OBJDIR)\url$O $(OBJDIR)\user$O $(OBJDIR)\utf8$O $(OBJDIR)\verify$O $(OBJDIR)\vfile$O $(OBJDIR)\wiki$O $(OBJDIR)\wikiformat$O $(OBJDIR)\winhttp$O $(OBJDIR)\wysiwyg$O $(OBJDIR)\xfer$O $(OBJDIR)\xfersetup$O $(OBJDIR)\zip$O $(OBJDIR)\shell$O $(OBJDIR)\sqlite3$O $(OBJDIR)\th$O $(OBJDIR)\th_lang$O | |
| 33 | +OBJ = $(OBJDIR)\add$O $(OBJDIR)\allrepo$O $(OBJDIR)\attach$O $(OBJDIR)\bag$O $(OBJDIR)\bisect$O $(OBJDIR)\blob$O $(OBJDIR)\branch$O $(OBJDIR)\browse$O $(OBJDIR)\captcha$O $(OBJDIR)\cgi$O $(OBJDIR)\checkin$O $(OBJDIR)\checkout$O $(OBJDIR)\clearsign$O $(OBJDIR)\clone$O $(OBJDIR)\comformat$O $(OBJDIR)\configure$O $(OBJDIR)\content$O $(OBJDIR)\db$O $(OBJDIR)\delta$O $(OBJDIR)\deltacmd$O $(OBJDIR)\descendants$O $(OBJDIR)\diff$O $(OBJDIR)\diffcmd$O $(OBJDIR)\doc$O $(OBJDIR)\encode$O $(OBJDIR)\event$O $(OBJDIR)\export$O $(OBJDIR)\file$O $(OBJDIR)\finfo$O $(OBJDIR)\glob$O $(OBJDIR)\graph$O $(OBJDIR)\gzip$O $(OBJDIR)\http$O $(OBJDIR)\http_socket$O $(OBJDIR)\http_ssl$O $(OBJDIR)\http_transport$O $(OBJDIR)\import$O $(OBJDIR)\info$O $(OBJDIR)\json$O $(OBJDIR)\json_artifact$O $(OBJDIR)\json_branch$O $(OBJDIR)\json_config$O $(OBJDIR)\json_diff$O $(OBJDIR)\json_dir$O $(OBJDIR)\json_finfo$O $(OBJDIR)\json_login$O $(OBJDIR)\json_query$O $(OBJDIR)\json_report$O $(OBJDIR)\json_tag$O $(OBJDIR)\json_timeline$O $(OBJDIR)\json_user$O $(OBJDIR)\json_wiki$O $(OBJDIR)\leaf$O $(OBJDIR)\login$O $(OBJDIR)\main$O $(OBJDIR)\manifest$O $(OBJDIR)\markdown$O $(OBJDIR)\markdown_html$O $(OBJDIR)\md5$O $(OBJDIR)\merge$O $(OBJDIR)\merge3$O $(OBJDIR)\moderate$O $(OBJDIR)\name$O $(OBJDIR)\path$O $(OBJDIR)\pivot$O $(OBJDIR)\popen$O $(OBJDIR)\pqueue$O $(OBJDIR)\printf$O $(OBJDIR)\rebuild$O $(OBJDIR)\regexp$O $(OBJDIR)\report$O $(OBJDIR)\rss$O $(OBJDIR)\schema$O $(OBJDIR)\search$O $(OBJDIR)\setup$O $(OBJDIR)\sha1$O $(OBJDIR)\shun$O $(OBJDIR)\skins$O $(OBJDIR)\sqlcmd$O $(OBJDIR)\stash$O $(OBJDIR)\stat$O $(OBJDIR)\style$O $(OBJDIR)\sync$O $(OBJDIR)\tag$O $(OBJDIR)\tar$O $(OBJDIR)\th_main$O $(OBJDIR)\timeline$O $(OBJDIR)\tkt$O $(OBJDIR)\tktsetup$O $(OBJDIR)\undo$O $(OBJDIR)\update$O $(OBJDIR)\url$O $(OBJDIR)\user$O $(OBJDIR)\utf8$O $(OBJDIR)\verify$O $(OBJDIR)\vfile$O $(OBJDIR)\wiki$O $(OBJDIR)\wikiformat$O $(OBJDIR)\winhttp$O $(OBJDIR)\wysiwyg$O $(OBJDIR)\xfer$O $(OBJDIR)\xfersetup$O $(OBJDIR)\zip$O $(OBJDIR)\shell$O $(OBJDIR)\sqlite3$O $(OBJDIR)\th$O $(OBJDIR)\th_lang$O | |
| 34 | 34 | |
| 35 | 35 | |
| 36 | 36 | RC=$(DMDIR)\bin\rcc |
| 37 | 37 | RCFLAGS=-32 -w1 -I$(SRCDIR) /D__DMC__ |
| 38 | 38 | |
| @@ -46,11 +46,11 @@ | ||
| 46 | 46 | |
| 47 | 47 | $(OBJDIR)\fossil.res: $B\win\fossil.rc |
| 48 | 48 | $(RC) $(RCFLAGS) -o$@ $** |
| 49 | 49 | |
| 50 | 50 | $(OBJDIR)\link: $B\win\Makefile.dmc $(OBJDIR)\fossil.res |
| 51 | - +echo add allrepo attach bag bisect blob branch browse captcha cgi checkin checkout clearsign clone comformat configure content db delta deltacmd descendants diff diffcmd doc encode event export file finfo glob graph gzip http http_socket http_ssl http_transport import info json json_artifact json_branch json_config json_diff json_dir json_finfo json_login json_query json_report json_tag json_timeline json_user json_wiki leaf login main manifest markdown markdown_html md5 merge merge3 moderate name path pivot popen pqueue printf rebuild report rss schema search setup sha1 shun skins sqlcmd stash stat style sync tag tar th_main timeline tkt tktsetup undo update url user utf8 verify vfile wiki wikiformat winhttp wysiwyg xfer xfersetup zip shell sqlite3 th th_lang > $@ | |
| 51 | + +echo add allrepo attach bag bisect blob branch browse captcha cgi checkin checkout clearsign clone comformat configure content db delta deltacmd descendants diff diffcmd doc encode event export file finfo glob graph gzip http http_socket http_ssl http_transport import info json json_artifact json_branch json_config json_diff json_dir json_finfo json_login json_query json_report json_tag json_timeline json_user json_wiki leaf login main manifest markdown markdown_html md5 merge merge3 moderate name path pivot popen pqueue printf rebuild regexp report rss schema search setup sha1 shun skins sqlcmd stash stat style sync tag tar th_main timeline tkt tktsetup undo update url user utf8 verify vfile wiki wikiformat winhttp wysiwyg xfer xfersetup zip shell sqlite3 th th_lang > $@ | |
| 52 | 52 | +echo fossil >> $@ |
| 53 | 53 | +echo fossil >> $@ |
| 54 | 54 | +echo $(LIBS) >> $@ |
| 55 | 55 | +echo. >> $@ |
| 56 | 56 | +echo fossil >> $@ |
| @@ -523,10 +523,16 @@ | ||
| 523 | 523 | $(OBJDIR)\rebuild$O : rebuild_.c rebuild.h |
| 524 | 524 | $(TCC) -o$@ -c rebuild_.c |
| 525 | 525 | |
| 526 | 526 | rebuild_.c : $(SRCDIR)\rebuild.c |
| 527 | 527 | +translate$E $** > $@ |
| 528 | + | |
| 529 | +$(OBJDIR)\regexp$O : regexp_.c regexp.h | |
| 530 | + $(TCC) -o$@ -c regexp_.c | |
| 531 | + | |
| 532 | +regexp_.c : $(SRCDIR)\regexp.c | |
| 533 | + +translate$E $** > $@ | |
| 528 | 534 | |
| 529 | 535 | $(OBJDIR)\report$O : report_.c report.h |
| 530 | 536 | $(TCC) -o$@ -c report_.c |
| 531 | 537 | |
| 532 | 538 | report_.c : $(SRCDIR)\report.c |
| @@ -723,7 +729,7 @@ | ||
| 723 | 729 | |
| 724 | 730 | zip_.c : $(SRCDIR)\zip.c |
| 725 | 731 | +translate$E $** > $@ |
| 726 | 732 | |
| 727 | 733 | headers: makeheaders$E page_index.h VERSION.h |
| 728 | - +makeheaders$E add_.c:add.h allrepo_.c:allrepo.h attach_.c:attach.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h captcha_.c:captcha.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h configure_.c:configure.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h doc_.c:doc.h encode_.c:encode.h event_.c:event.h export_.c:export.h file_.c:file.h finfo_.c:finfo.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h http_.c:http.h http_socket_.c:http_socket.h http_ssl_.c:http_ssl.h http_transport_.c:http_transport.h import_.c:import.h info_.c:info.h json_.c:json.h json_artifact_.c:json_artifact.h json_branch_.c:json_branch.h json_config_.c:json_config.h json_diff_.c:json_diff.h json_dir_.c:json_dir.h json_finfo_.c:json_finfo.h json_login_.c:json_login.h json_query_.c:json_query.h json_report_.c:json_report.h json_tag_.c:json_tag.h json_timeline_.c:json_timeline.h json_user_.c:json_user.h json_wiki_.c:json_wiki.h leaf_.c:leaf.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h markdown_.c:markdown.h markdown_html_.c:markdown_html.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h moderate_.c:moderate.h name_.c:name.h path_.c:path.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h rebuild_.c:rebuild.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h setup_.c:setup.h sha1_.c:sha1.h shun_.c:shun.h skins_.c:skins.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h style_.c:style.h sync_.c:sync.h tag_.c:tag.h tar_.c:tar.h th_main_.c:th_main.h timeline_.c:timeline.h tkt_.c:tkt.h tktsetup_.c:tktsetup.h undo_.c:undo.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winhttp_.c:winhttp.h wysiwyg_.c:wysiwyg.h xfer_.c:xfer.h xfersetup_.c:xfersetup.h zip_.c:zip.h $(SRCDIR)\sqlite3.h $(SRCDIR)\th.h VERSION.h $(SRCDIR)\cson_amalgamation.h | |
| 734 | + +makeheaders$E add_.c:add.h allrepo_.c:allrepo.h attach_.c:attach.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h captcha_.c:captcha.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h configure_.c:configure.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h doc_.c:doc.h encode_.c:encode.h event_.c:event.h export_.c:export.h file_.c:file.h finfo_.c:finfo.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h http_.c:http.h http_socket_.c:http_socket.h http_ssl_.c:http_ssl.h http_transport_.c:http_transport.h import_.c:import.h info_.c:info.h json_.c:json.h json_artifact_.c:json_artifact.h json_branch_.c:json_branch.h json_config_.c:json_config.h json_diff_.c:json_diff.h json_dir_.c:json_dir.h json_finfo_.c:json_finfo.h json_login_.c:json_login.h json_query_.c:json_query.h json_report_.c:json_report.h json_tag_.c:json_tag.h json_timeline_.c:json_timeline.h json_user_.c:json_user.h json_wiki_.c:json_wiki.h leaf_.c:leaf.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h markdown_.c:markdown.h markdown_html_.c:markdown_html.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h moderate_.c:moderate.h name_.c:name.h path_.c:path.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h rebuild_.c:rebuild.h regexp_.c:regexp.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h setup_.c:setup.h sha1_.c:sha1.h shun_.c:shun.h skins_.c:skins.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h style_.c:style.h sync_.c:sync.h tag_.c:tag.h tar_.c:tar.h th_main_.c:th_main.h timeline_.c:timeline.h tkt_.c:tkt.h tktsetup_.c:tktsetup.h undo_.c:undo.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winhttp_.c:winhttp.h wysiwyg_.c:wysiwyg.h xfer_.c:xfer.h xfersetup_.c:xfersetup.h zip_.c:zip.h $(SRCDIR)\sqlite3.h $(SRCDIR)\th.h VERSION.h $(SRCDIR)\cson_amalgamation.h | |
| 729 | 735 | @copy /Y nul: headers |
| 730 | 736 |
| --- win/Makefile.dmc | |
| +++ win/Makefile.dmc | |
| @@ -26,13 +26,13 @@ | |
| 26 | TCC = $(DMDIR)\bin\dmc $(CFLAGS) $(DMCDEF) $(SSL) $(INCL) |
| 27 | LIBS = $(DMDIR)\extra\lib\ zlib wsock32 advapi32 |
| 28 | |
| 29 | SQLITE_OPTIONS = -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 |
| 30 | |
| 31 | SRC = add_.c allrepo_.c attach_.c bag_.c bisect_.c blob_.c branch_.c browse_.c captcha_.c cgi_.c checkin_.c checkout_.c clearsign_.c clone_.c comformat_.c configure_.c content_.c db_.c delta_.c deltacmd_.c descendants_.c diff_.c diffcmd_.c doc_.c encode_.c event_.c export_.c file_.c finfo_.c glob_.c graph_.c gzip_.c http_.c http_socket_.c http_ssl_.c http_transport_.c import_.c info_.c json_.c json_artifact_.c json_branch_.c json_config_.c json_diff_.c json_dir_.c json_finfo_.c json_login_.c json_query_.c json_report_.c json_tag_.c json_timeline_.c json_user_.c json_wiki_.c leaf_.c login_.c main_.c manifest_.c markdown_.c markdown_html_.c md5_.c merge_.c merge3_.c moderate_.c name_.c path_.c pivot_.c popen_.c pqueue_.c printf_.c rebuild_.c report_.c rss_.c schema_.c search_.c setup_.c sha1_.c shun_.c skins_.c sqlcmd_.c stash_.c stat_.c style_.c sync_.c tag_.c tar_.c th_main_.c timeline_.c tkt_.c tktsetup_.c undo_.c update_.c url_.c user_.c utf8_.c verify_.c vfile_.c wiki_.c wikiformat_.c winhttp_.c wysiwyg_.c xfer_.c xfersetup_.c zip_.c |
| 32 | |
| 33 | OBJ = $(OBJDIR)\add$O $(OBJDIR)\allrepo$O $(OBJDIR)\attach$O $(OBJDIR)\bag$O $(OBJDIR)\bisect$O $(OBJDIR)\blob$O $(OBJDIR)\branch$O $(OBJDIR)\browse$O $(OBJDIR)\captcha$O $(OBJDIR)\cgi$O $(OBJDIR)\checkin$O $(OBJDIR)\checkout$O $(OBJDIR)\clearsign$O $(OBJDIR)\clone$O $(OBJDIR)\comformat$O $(OBJDIR)\configure$O $(OBJDIR)\content$O $(OBJDIR)\db$O $(OBJDIR)\delta$O $(OBJDIR)\deltacmd$O $(OBJDIR)\descendants$O $(OBJDIR)\diff$O $(OBJDIR)\diffcmd$O $(OBJDIR)\doc$O $(OBJDIR)\encode$O $(OBJDIR)\event$O $(OBJDIR)\export$O $(OBJDIR)\file$O $(OBJDIR)\finfo$O $(OBJDIR)\glob$O $(OBJDIR)\graph$O $(OBJDIR)\gzip$O $(OBJDIR)\http$O $(OBJDIR)\http_socket$O $(OBJDIR)\http_ssl$O $(OBJDIR)\http_transport$O $(OBJDIR)\import$O $(OBJDIR)\info$O $(OBJDIR)\json$O $(OBJDIR)\json_artifact$O $(OBJDIR)\json_branch$O $(OBJDIR)\json_config$O $(OBJDIR)\json_diff$O $(OBJDIR)\json_dir$O $(OBJDIR)\json_finfo$O $(OBJDIR)\json_login$O $(OBJDIR)\json_query$O $(OBJDIR)\json_report$O $(OBJDIR)\json_tag$O $(OBJDIR)\json_timeline$O $(OBJDIR)\json_user$O $(OBJDIR)\json_wiki$O $(OBJDIR)\leaf$O $(OBJDIR)\login$O $(OBJDIR)\main$O $(OBJDIR)\manifest$O $(OBJDIR)\markdown$O $(OBJDIR)\markdown_html$O $(OBJDIR)\md5$O $(OBJDIR)\merge$O $(OBJDIR)\merge3$O $(OBJDIR)\moderate$O $(OBJDIR)\name$O $(OBJDIR)\path$O $(OBJDIR)\pivot$O $(OBJDIR)\popen$O $(OBJDIR)\pqueue$O $(OBJDIR)\printf$O $(OBJDIR)\rebuild$O $(OBJDIR)\report$O $(OBJDIR)\rss$O $(OBJDIR)\schema$O $(OBJDIR)\search$O $(OBJDIR)\setup$O $(OBJDIR)\sha1$O $(OBJDIR)\shun$O $(OBJDIR)\skins$O $(OBJDIR)\sqlcmd$O $(OBJDIR)\stash$O $(OBJDIR)\stat$O $(OBJDIR)\style$O $(OBJDIR)\sync$O $(OBJDIR)\tag$O $(OBJDIR)\tar$O $(OBJDIR)\th_main$O $(OBJDIR)\timeline$O $(OBJDIR)\tkt$O $(OBJDIR)\tktsetup$O $(OBJDIR)\undo$O $(OBJDIR)\update$O $(OBJDIR)\url$O $(OBJDIR)\user$O $(OBJDIR)\utf8$O $(OBJDIR)\verify$O $(OBJDIR)\vfile$O $(OBJDIR)\wiki$O $(OBJDIR)\wikiformat$O $(OBJDIR)\winhttp$O $(OBJDIR)\wysiwyg$O $(OBJDIR)\xfer$O $(OBJDIR)\xfersetup$O $(OBJDIR)\zip$O $(OBJDIR)\shell$O $(OBJDIR)\sqlite3$O $(OBJDIR)\th$O $(OBJDIR)\th_lang$O |
| 34 | |
| 35 | |
| 36 | RC=$(DMDIR)\bin\rcc |
| 37 | RCFLAGS=-32 -w1 -I$(SRCDIR) /D__DMC__ |
| 38 | |
| @@ -46,11 +46,11 @@ | |
| 46 | |
| 47 | $(OBJDIR)\fossil.res: $B\win\fossil.rc |
| 48 | $(RC) $(RCFLAGS) -o$@ $** |
| 49 | |
| 50 | $(OBJDIR)\link: $B\win\Makefile.dmc $(OBJDIR)\fossil.res |
| 51 | +echo add allrepo attach bag bisect blob branch browse captcha cgi checkin checkout clearsign clone comformat configure content db delta deltacmd descendants diff diffcmd doc encode event export file finfo glob graph gzip http http_socket http_ssl http_transport import info json json_artifact json_branch json_config json_diff json_dir json_finfo json_login json_query json_report json_tag json_timeline json_user json_wiki leaf login main manifest markdown markdown_html md5 merge merge3 moderate name path pivot popen pqueue printf rebuild report rss schema search setup sha1 shun skins sqlcmd stash stat style sync tag tar th_main timeline tkt tktsetup undo update url user utf8 verify vfile wiki wikiformat winhttp wysiwyg xfer xfersetup zip shell sqlite3 th th_lang > $@ |
| 52 | +echo fossil >> $@ |
| 53 | +echo fossil >> $@ |
| 54 | +echo $(LIBS) >> $@ |
| 55 | +echo. >> $@ |
| 56 | +echo fossil >> $@ |
| @@ -523,10 +523,16 @@ | |
| 523 | $(OBJDIR)\rebuild$O : rebuild_.c rebuild.h |
| 524 | $(TCC) -o$@ -c rebuild_.c |
| 525 | |
| 526 | rebuild_.c : $(SRCDIR)\rebuild.c |
| 527 | +translate$E $** > $@ |
| 528 | |
| 529 | $(OBJDIR)\report$O : report_.c report.h |
| 530 | $(TCC) -o$@ -c report_.c |
| 531 | |
| 532 | report_.c : $(SRCDIR)\report.c |
| @@ -723,7 +729,7 @@ | |
| 723 | |
| 724 | zip_.c : $(SRCDIR)\zip.c |
| 725 | +translate$E $** > $@ |
| 726 | |
| 727 | headers: makeheaders$E page_index.h VERSION.h |
| 728 | +makeheaders$E add_.c:add.h allrepo_.c:allrepo.h attach_.c:attach.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h captcha_.c:captcha.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h configure_.c:configure.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h doc_.c:doc.h encode_.c:encode.h event_.c:event.h export_.c:export.h file_.c:file.h finfo_.c:finfo.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h http_.c:http.h http_socket_.c:http_socket.h http_ssl_.c:http_ssl.h http_transport_.c:http_transport.h import_.c:import.h info_.c:info.h json_.c:json.h json_artifact_.c:json_artifact.h json_branch_.c:json_branch.h json_config_.c:json_config.h json_diff_.c:json_diff.h json_dir_.c:json_dir.h json_finfo_.c:json_finfo.h json_login_.c:json_login.h json_query_.c:json_query.h json_report_.c:json_report.h json_tag_.c:json_tag.h json_timeline_.c:json_timeline.h json_user_.c:json_user.h json_wiki_.c:json_wiki.h leaf_.c:leaf.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h markdown_.c:markdown.h markdown_html_.c:markdown_html.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h moderate_.c:moderate.h name_.c:name.h path_.c:path.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h rebuild_.c:rebuild.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h setup_.c:setup.h sha1_.c:sha1.h shun_.c:shun.h skins_.c:skins.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h style_.c:style.h sync_.c:sync.h tag_.c:tag.h tar_.c:tar.h th_main_.c:th_main.h timeline_.c:timeline.h tkt_.c:tkt.h tktsetup_.c:tktsetup.h undo_.c:undo.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winhttp_.c:winhttp.h wysiwyg_.c:wysiwyg.h xfer_.c:xfer.h xfersetup_.c:xfersetup.h zip_.c:zip.h $(SRCDIR)\sqlite3.h $(SRCDIR)\th.h VERSION.h $(SRCDIR)\cson_amalgamation.h |
| 729 | @copy /Y nul: headers |
| 730 |
| --- win/Makefile.dmc | |
| +++ win/Makefile.dmc | |
| @@ -26,13 +26,13 @@ | |
| 26 | TCC = $(DMDIR)\bin\dmc $(CFLAGS) $(DMCDEF) $(SSL) $(INCL) |
| 27 | LIBS = $(DMDIR)\extra\lib\ zlib wsock32 advapi32 |
| 28 | |
| 29 | SQLITE_OPTIONS = -DSQLITE_OMIT_LOAD_EXTENSION=1 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_STAT3 -Dlocaltime=fossil_localtime -DSQLITE_ENABLE_LOCKING_STYLE=0 |
| 30 | |
| 31 | SRC = add_.c allrepo_.c attach_.c bag_.c bisect_.c blob_.c branch_.c browse_.c captcha_.c cgi_.c checkin_.c checkout_.c clearsign_.c clone_.c comformat_.c configure_.c content_.c db_.c delta_.c deltacmd_.c descendants_.c diff_.c diffcmd_.c doc_.c encode_.c event_.c export_.c file_.c finfo_.c glob_.c graph_.c gzip_.c http_.c http_socket_.c http_ssl_.c http_transport_.c import_.c info_.c json_.c json_artifact_.c json_branch_.c json_config_.c json_diff_.c json_dir_.c json_finfo_.c json_login_.c json_query_.c json_report_.c json_tag_.c json_timeline_.c json_user_.c json_wiki_.c leaf_.c login_.c main_.c manifest_.c markdown_.c markdown_html_.c md5_.c merge_.c merge3_.c moderate_.c name_.c path_.c pivot_.c popen_.c pqueue_.c printf_.c rebuild_.c regexp_.c report_.c rss_.c schema_.c search_.c setup_.c sha1_.c shun_.c skins_.c sqlcmd_.c stash_.c stat_.c style_.c sync_.c tag_.c tar_.c th_main_.c timeline_.c tkt_.c tktsetup_.c undo_.c update_.c url_.c user_.c utf8_.c verify_.c vfile_.c wiki_.c wikiformat_.c winhttp_.c wysiwyg_.c xfer_.c xfersetup_.c zip_.c |
| 32 | |
| 33 | OBJ = $(OBJDIR)\add$O $(OBJDIR)\allrepo$O $(OBJDIR)\attach$O $(OBJDIR)\bag$O $(OBJDIR)\bisect$O $(OBJDIR)\blob$O $(OBJDIR)\branch$O $(OBJDIR)\browse$O $(OBJDIR)\captcha$O $(OBJDIR)\cgi$O $(OBJDIR)\checkin$O $(OBJDIR)\checkout$O $(OBJDIR)\clearsign$O $(OBJDIR)\clone$O $(OBJDIR)\comformat$O $(OBJDIR)\configure$O $(OBJDIR)\content$O $(OBJDIR)\db$O $(OBJDIR)\delta$O $(OBJDIR)\deltacmd$O $(OBJDIR)\descendants$O $(OBJDIR)\diff$O $(OBJDIR)\diffcmd$O $(OBJDIR)\doc$O $(OBJDIR)\encode$O $(OBJDIR)\event$O $(OBJDIR)\export$O $(OBJDIR)\file$O $(OBJDIR)\finfo$O $(OBJDIR)\glob$O $(OBJDIR)\graph$O $(OBJDIR)\gzip$O $(OBJDIR)\http$O $(OBJDIR)\http_socket$O $(OBJDIR)\http_ssl$O $(OBJDIR)\http_transport$O $(OBJDIR)\import$O $(OBJDIR)\info$O $(OBJDIR)\json$O $(OBJDIR)\json_artifact$O $(OBJDIR)\json_branch$O $(OBJDIR)\json_config$O $(OBJDIR)\json_diff$O $(OBJDIR)\json_dir$O $(OBJDIR)\json_finfo$O $(OBJDIR)\json_login$O $(OBJDIR)\json_query$O $(OBJDIR)\json_report$O $(OBJDIR)\json_tag$O $(OBJDIR)\json_timeline$O $(OBJDIR)\json_user$O $(OBJDIR)\json_wiki$O $(OBJDIR)\leaf$O $(OBJDIR)\login$O $(OBJDIR)\main$O $(OBJDIR)\manifest$O $(OBJDIR)\markdown$O $(OBJDIR)\markdown_html$O $(OBJDIR)\md5$O $(OBJDIR)\merge$O $(OBJDIR)\merge3$O $(OBJDIR)\moderate$O $(OBJDIR)\name$O $(OBJDIR)\path$O $(OBJDIR)\pivot$O $(OBJDIR)\popen$O $(OBJDIR)\pqueue$O $(OBJDIR)\printf$O $(OBJDIR)\rebuild$O $(OBJDIR)\regexp$O $(OBJDIR)\report$O $(OBJDIR)\rss$O $(OBJDIR)\schema$O $(OBJDIR)\search$O $(OBJDIR)\setup$O $(OBJDIR)\sha1$O $(OBJDIR)\shun$O $(OBJDIR)\skins$O $(OBJDIR)\sqlcmd$O $(OBJDIR)\stash$O $(OBJDIR)\stat$O $(OBJDIR)\style$O $(OBJDIR)\sync$O $(OBJDIR)\tag$O $(OBJDIR)\tar$O $(OBJDIR)\th_main$O $(OBJDIR)\timeline$O $(OBJDIR)\tkt$O $(OBJDIR)\tktsetup$O $(OBJDIR)\undo$O $(OBJDIR)\update$O $(OBJDIR)\url$O $(OBJDIR)\user$O $(OBJDIR)\utf8$O $(OBJDIR)\verify$O $(OBJDIR)\vfile$O $(OBJDIR)\wiki$O $(OBJDIR)\wikiformat$O $(OBJDIR)\winhttp$O $(OBJDIR)\wysiwyg$O $(OBJDIR)\xfer$O $(OBJDIR)\xfersetup$O $(OBJDIR)\zip$O $(OBJDIR)\shell$O $(OBJDIR)\sqlite3$O $(OBJDIR)\th$O $(OBJDIR)\th_lang$O |
| 34 | |
| 35 | |
| 36 | RC=$(DMDIR)\bin\rcc |
| 37 | RCFLAGS=-32 -w1 -I$(SRCDIR) /D__DMC__ |
| 38 | |
| @@ -46,11 +46,11 @@ | |
| 46 | |
| 47 | $(OBJDIR)\fossil.res: $B\win\fossil.rc |
| 48 | $(RC) $(RCFLAGS) -o$@ $** |
| 49 | |
| 50 | $(OBJDIR)\link: $B\win\Makefile.dmc $(OBJDIR)\fossil.res |
| 51 | +echo add allrepo attach bag bisect blob branch browse captcha cgi checkin checkout clearsign clone comformat configure content db delta deltacmd descendants diff diffcmd doc encode event export file finfo glob graph gzip http http_socket http_ssl http_transport import info json json_artifact json_branch json_config json_diff json_dir json_finfo json_login json_query json_report json_tag json_timeline json_user json_wiki leaf login main manifest markdown markdown_html md5 merge merge3 moderate name path pivot popen pqueue printf rebuild regexp report rss schema search setup sha1 shun skins sqlcmd stash stat style sync tag tar th_main timeline tkt tktsetup undo update url user utf8 verify vfile wiki wikiformat winhttp wysiwyg xfer xfersetup zip shell sqlite3 th th_lang > $@ |
| 52 | +echo fossil >> $@ |
| 53 | +echo fossil >> $@ |
| 54 | +echo $(LIBS) >> $@ |
| 55 | +echo. >> $@ |
| 56 | +echo fossil >> $@ |
| @@ -523,10 +523,16 @@ | |
| 523 | $(OBJDIR)\rebuild$O : rebuild_.c rebuild.h |
| 524 | $(TCC) -o$@ -c rebuild_.c |
| 525 | |
| 526 | rebuild_.c : $(SRCDIR)\rebuild.c |
| 527 | +translate$E $** > $@ |
| 528 | |
| 529 | $(OBJDIR)\regexp$O : regexp_.c regexp.h |
| 530 | $(TCC) -o$@ -c regexp_.c |
| 531 | |
| 532 | regexp_.c : $(SRCDIR)\regexp.c |
| 533 | +translate$E $** > $@ |
| 534 | |
| 535 | $(OBJDIR)\report$O : report_.c report.h |
| 536 | $(TCC) -o$@ -c report_.c |
| 537 | |
| 538 | report_.c : $(SRCDIR)\report.c |
| @@ -723,7 +729,7 @@ | |
| 729 | |
| 730 | zip_.c : $(SRCDIR)\zip.c |
| 731 | +translate$E $** > $@ |
| 732 | |
| 733 | headers: makeheaders$E page_index.h VERSION.h |
| 734 | +makeheaders$E add_.c:add.h allrepo_.c:allrepo.h attach_.c:attach.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h captcha_.c:captcha.h cgi_.c:cgi.h checkin_.c:checkin.h checkout_.c:checkout.h clearsign_.c:clearsign.h clone_.c:clone.h comformat_.c:comformat.h configure_.c:configure.h content_.c:content.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h doc_.c:doc.h encode_.c:encode.h event_.c:event.h export_.c:export.h file_.c:file.h finfo_.c:finfo.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h http_.c:http.h http_socket_.c:http_socket.h http_ssl_.c:http_ssl.h http_transport_.c:http_transport.h import_.c:import.h info_.c:info.h json_.c:json.h json_artifact_.c:json_artifact.h json_branch_.c:json_branch.h json_config_.c:json_config.h json_diff_.c:json_diff.h json_dir_.c:json_dir.h json_finfo_.c:json_finfo.h json_login_.c:json_login.h json_query_.c:json_query.h json_report_.c:json_report.h json_tag_.c:json_tag.h json_timeline_.c:json_timeline.h json_user_.c:json_user.h json_wiki_.c:json_wiki.h leaf_.c:leaf.h login_.c:login.h main_.c:main.h manifest_.c:manifest.h markdown_.c:markdown.h markdown_html_.c:markdown_html.h md5_.c:md5.h merge_.c:merge.h merge3_.c:merge3.h moderate_.c:moderate.h name_.c:name.h path_.c:path.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h rebuild_.c:rebuild.h regexp_.c:regexp.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h setup_.c:setup.h sha1_.c:sha1.h shun_.c:shun.h skins_.c:skins.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h style_.c:style.h sync_.c:sync.h tag_.c:tag.h tar_.c:tar.h th_main_.c:th_main.h timeline_.c:timeline.h tkt_.c:tkt.h tktsetup_.c:tktsetup.h undo_.c:undo.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h verify_.c:verify.h vfile_.c:vfile.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winhttp_.c:winhttp.h wysiwyg_.c:wysiwyg.h xfer_.c:xfer.h xfersetup_.c:xfersetup.h zip_.c:zip.h $(SRCDIR)\sqlite3.h $(SRCDIR)\th.h VERSION.h $(SRCDIR)\cson_amalgamation.h |
| 735 | @copy /Y nul: headers |
| 736 |
+12
| --- win/Makefile.mingw | ||
| +++ win/Makefile.mingw | ||
| @@ -322,10 +322,11 @@ | ||
| 322 | 322 | $(SRCDIR)/pivot.c \ |
| 323 | 323 | $(SRCDIR)/popen.c \ |
| 324 | 324 | $(SRCDIR)/pqueue.c \ |
| 325 | 325 | $(SRCDIR)/printf.c \ |
| 326 | 326 | $(SRCDIR)/rebuild.c \ |
| 327 | + $(SRCDIR)/regexp.c \ | |
| 327 | 328 | $(SRCDIR)/report.c \ |
| 328 | 329 | $(SRCDIR)/rss.c \ |
| 329 | 330 | $(SRCDIR)/schema.c \ |
| 330 | 331 | $(SRCDIR)/search.c \ |
| 331 | 332 | $(SRCDIR)/setup.c \ |
| @@ -426,10 +427,11 @@ | ||
| 426 | 427 | $(OBJDIR)/pivot_.c \ |
| 427 | 428 | $(OBJDIR)/popen_.c \ |
| 428 | 429 | $(OBJDIR)/pqueue_.c \ |
| 429 | 430 | $(OBJDIR)/printf_.c \ |
| 430 | 431 | $(OBJDIR)/rebuild_.c \ |
| 432 | + $(OBJDIR)/regexp_.c \ | |
| 431 | 433 | $(OBJDIR)/report_.c \ |
| 432 | 434 | $(OBJDIR)/rss_.c \ |
| 433 | 435 | $(OBJDIR)/schema_.c \ |
| 434 | 436 | $(OBJDIR)/search_.c \ |
| 435 | 437 | $(OBJDIR)/setup_.c \ |
| @@ -530,10 +532,11 @@ | ||
| 530 | 532 | $(OBJDIR)/pivot.o \ |
| 531 | 533 | $(OBJDIR)/popen.o \ |
| 532 | 534 | $(OBJDIR)/pqueue.o \ |
| 533 | 535 | $(OBJDIR)/printf.o \ |
| 534 | 536 | $(OBJDIR)/rebuild.o \ |
| 537 | + $(OBJDIR)/regexp.o \ | |
| 535 | 538 | $(OBJDIR)/report.o \ |
| 536 | 539 | $(OBJDIR)/rss.o \ |
| 537 | 540 | $(OBJDIR)/schema.o \ |
| 538 | 541 | $(OBJDIR)/search.o \ |
| 539 | 542 | $(OBJDIR)/setup.o \ |
| @@ -747,10 +750,11 @@ | ||
| 747 | 750 | $(OBJDIR)/pivot_.c:$(OBJDIR)/pivot.h \ |
| 748 | 751 | $(OBJDIR)/popen_.c:$(OBJDIR)/popen.h \ |
| 749 | 752 | $(OBJDIR)/pqueue_.c:$(OBJDIR)/pqueue.h \ |
| 750 | 753 | $(OBJDIR)/printf_.c:$(OBJDIR)/printf.h \ |
| 751 | 754 | $(OBJDIR)/rebuild_.c:$(OBJDIR)/rebuild.h \ |
| 755 | + $(OBJDIR)/regexp_.c:$(OBJDIR)/regexp.h \ | |
| 752 | 756 | $(OBJDIR)/report_.c:$(OBJDIR)/report.h \ |
| 753 | 757 | $(OBJDIR)/rss_.c:$(OBJDIR)/rss.h \ |
| 754 | 758 | $(OBJDIR)/schema_.c:$(OBJDIR)/schema.h \ |
| 755 | 759 | $(OBJDIR)/search_.c:$(OBJDIR)/search.h \ |
| 756 | 760 | $(OBJDIR)/setup_.c:$(OBJDIR)/setup.h \ |
| @@ -1340,10 +1344,18 @@ | ||
| 1340 | 1344 | |
| 1341 | 1345 | $(OBJDIR)/rebuild.o: $(OBJDIR)/rebuild_.c $(OBJDIR)/rebuild.h $(SRCDIR)/config.h |
| 1342 | 1346 | $(XTCC) -o $(OBJDIR)/rebuild.o -c $(OBJDIR)/rebuild_.c |
| 1343 | 1347 | |
| 1344 | 1348 | $(OBJDIR)/rebuild.h: $(OBJDIR)/headers |
| 1349 | + | |
| 1350 | +$(OBJDIR)/regexp_.c: $(SRCDIR)/regexp.c $(OBJDIR)/translate | |
| 1351 | + $(TRANSLATE) $(SRCDIR)/regexp.c >$(OBJDIR)/regexp_.c | |
| 1352 | + | |
| 1353 | +$(OBJDIR)/regexp.o: $(OBJDIR)/regexp_.c $(OBJDIR)/regexp.h $(SRCDIR)/config.h | |
| 1354 | + $(XTCC) -o $(OBJDIR)/regexp.o -c $(OBJDIR)/regexp_.c | |
| 1355 | + | |
| 1356 | +$(OBJDIR)/regexp.h: $(OBJDIR)/headers | |
| 1345 | 1357 | |
| 1346 | 1358 | $(OBJDIR)/report_.c: $(SRCDIR)/report.c $(OBJDIR)/translate |
| 1347 | 1359 | $(TRANSLATE) $(SRCDIR)/report.c >$(OBJDIR)/report_.c |
| 1348 | 1360 | |
| 1349 | 1361 | $(OBJDIR)/report.o: $(OBJDIR)/report_.c $(OBJDIR)/report.h $(SRCDIR)/config.h |
| 1350 | 1362 |
| --- win/Makefile.mingw | |
| +++ win/Makefile.mingw | |
| @@ -322,10 +322,11 @@ | |
| 322 | $(SRCDIR)/pivot.c \ |
| 323 | $(SRCDIR)/popen.c \ |
| 324 | $(SRCDIR)/pqueue.c \ |
| 325 | $(SRCDIR)/printf.c \ |
| 326 | $(SRCDIR)/rebuild.c \ |
| 327 | $(SRCDIR)/report.c \ |
| 328 | $(SRCDIR)/rss.c \ |
| 329 | $(SRCDIR)/schema.c \ |
| 330 | $(SRCDIR)/search.c \ |
| 331 | $(SRCDIR)/setup.c \ |
| @@ -426,10 +427,11 @@ | |
| 426 | $(OBJDIR)/pivot_.c \ |
| 427 | $(OBJDIR)/popen_.c \ |
| 428 | $(OBJDIR)/pqueue_.c \ |
| 429 | $(OBJDIR)/printf_.c \ |
| 430 | $(OBJDIR)/rebuild_.c \ |
| 431 | $(OBJDIR)/report_.c \ |
| 432 | $(OBJDIR)/rss_.c \ |
| 433 | $(OBJDIR)/schema_.c \ |
| 434 | $(OBJDIR)/search_.c \ |
| 435 | $(OBJDIR)/setup_.c \ |
| @@ -530,10 +532,11 @@ | |
| 530 | $(OBJDIR)/pivot.o \ |
| 531 | $(OBJDIR)/popen.o \ |
| 532 | $(OBJDIR)/pqueue.o \ |
| 533 | $(OBJDIR)/printf.o \ |
| 534 | $(OBJDIR)/rebuild.o \ |
| 535 | $(OBJDIR)/report.o \ |
| 536 | $(OBJDIR)/rss.o \ |
| 537 | $(OBJDIR)/schema.o \ |
| 538 | $(OBJDIR)/search.o \ |
| 539 | $(OBJDIR)/setup.o \ |
| @@ -747,10 +750,11 @@ | |
| 747 | $(OBJDIR)/pivot_.c:$(OBJDIR)/pivot.h \ |
| 748 | $(OBJDIR)/popen_.c:$(OBJDIR)/popen.h \ |
| 749 | $(OBJDIR)/pqueue_.c:$(OBJDIR)/pqueue.h \ |
| 750 | $(OBJDIR)/printf_.c:$(OBJDIR)/printf.h \ |
| 751 | $(OBJDIR)/rebuild_.c:$(OBJDIR)/rebuild.h \ |
| 752 | $(OBJDIR)/report_.c:$(OBJDIR)/report.h \ |
| 753 | $(OBJDIR)/rss_.c:$(OBJDIR)/rss.h \ |
| 754 | $(OBJDIR)/schema_.c:$(OBJDIR)/schema.h \ |
| 755 | $(OBJDIR)/search_.c:$(OBJDIR)/search.h \ |
| 756 | $(OBJDIR)/setup_.c:$(OBJDIR)/setup.h \ |
| @@ -1340,10 +1344,18 @@ | |
| 1340 | |
| 1341 | $(OBJDIR)/rebuild.o: $(OBJDIR)/rebuild_.c $(OBJDIR)/rebuild.h $(SRCDIR)/config.h |
| 1342 | $(XTCC) -o $(OBJDIR)/rebuild.o -c $(OBJDIR)/rebuild_.c |
| 1343 | |
| 1344 | $(OBJDIR)/rebuild.h: $(OBJDIR)/headers |
| 1345 | |
| 1346 | $(OBJDIR)/report_.c: $(SRCDIR)/report.c $(OBJDIR)/translate |
| 1347 | $(TRANSLATE) $(SRCDIR)/report.c >$(OBJDIR)/report_.c |
| 1348 | |
| 1349 | $(OBJDIR)/report.o: $(OBJDIR)/report_.c $(OBJDIR)/report.h $(SRCDIR)/config.h |
| 1350 |
| --- win/Makefile.mingw | |
| +++ win/Makefile.mingw | |
| @@ -322,10 +322,11 @@ | |
| 322 | $(SRCDIR)/pivot.c \ |
| 323 | $(SRCDIR)/popen.c \ |
| 324 | $(SRCDIR)/pqueue.c \ |
| 325 | $(SRCDIR)/printf.c \ |
| 326 | $(SRCDIR)/rebuild.c \ |
| 327 | $(SRCDIR)/regexp.c \ |
| 328 | $(SRCDIR)/report.c \ |
| 329 | $(SRCDIR)/rss.c \ |
| 330 | $(SRCDIR)/schema.c \ |
| 331 | $(SRCDIR)/search.c \ |
| 332 | $(SRCDIR)/setup.c \ |
| @@ -426,10 +427,11 @@ | |
| 427 | $(OBJDIR)/pivot_.c \ |
| 428 | $(OBJDIR)/popen_.c \ |
| 429 | $(OBJDIR)/pqueue_.c \ |
| 430 | $(OBJDIR)/printf_.c \ |
| 431 | $(OBJDIR)/rebuild_.c \ |
| 432 | $(OBJDIR)/regexp_.c \ |
| 433 | $(OBJDIR)/report_.c \ |
| 434 | $(OBJDIR)/rss_.c \ |
| 435 | $(OBJDIR)/schema_.c \ |
| 436 | $(OBJDIR)/search_.c \ |
| 437 | $(OBJDIR)/setup_.c \ |
| @@ -530,10 +532,11 @@ | |
| 532 | $(OBJDIR)/pivot.o \ |
| 533 | $(OBJDIR)/popen.o \ |
| 534 | $(OBJDIR)/pqueue.o \ |
| 535 | $(OBJDIR)/printf.o \ |
| 536 | $(OBJDIR)/rebuild.o \ |
| 537 | $(OBJDIR)/regexp.o \ |
| 538 | $(OBJDIR)/report.o \ |
| 539 | $(OBJDIR)/rss.o \ |
| 540 | $(OBJDIR)/schema.o \ |
| 541 | $(OBJDIR)/search.o \ |
| 542 | $(OBJDIR)/setup.o \ |
| @@ -747,10 +750,11 @@ | |
| 750 | $(OBJDIR)/pivot_.c:$(OBJDIR)/pivot.h \ |
| 751 | $(OBJDIR)/popen_.c:$(OBJDIR)/popen.h \ |
| 752 | $(OBJDIR)/pqueue_.c:$(OBJDIR)/pqueue.h \ |
| 753 | $(OBJDIR)/printf_.c:$(OBJDIR)/printf.h \ |
| 754 | $(OBJDIR)/rebuild_.c:$(OBJDIR)/rebuild.h \ |
| 755 | $(OBJDIR)/regexp_.c:$(OBJDIR)/regexp.h \ |
| 756 | $(OBJDIR)/report_.c:$(OBJDIR)/report.h \ |
| 757 | $(OBJDIR)/rss_.c:$(OBJDIR)/rss.h \ |
| 758 | $(OBJDIR)/schema_.c:$(OBJDIR)/schema.h \ |
| 759 | $(OBJDIR)/search_.c:$(OBJDIR)/search.h \ |
| 760 | $(OBJDIR)/setup_.c:$(OBJDIR)/setup.h \ |
| @@ -1340,10 +1344,18 @@ | |
| 1344 | |
| 1345 | $(OBJDIR)/rebuild.o: $(OBJDIR)/rebuild_.c $(OBJDIR)/rebuild.h $(SRCDIR)/config.h |
| 1346 | $(XTCC) -o $(OBJDIR)/rebuild.o -c $(OBJDIR)/rebuild_.c |
| 1347 | |
| 1348 | $(OBJDIR)/rebuild.h: $(OBJDIR)/headers |
| 1349 | |
| 1350 | $(OBJDIR)/regexp_.c: $(SRCDIR)/regexp.c $(OBJDIR)/translate |
| 1351 | $(TRANSLATE) $(SRCDIR)/regexp.c >$(OBJDIR)/regexp_.c |
| 1352 | |
| 1353 | $(OBJDIR)/regexp.o: $(OBJDIR)/regexp_.c $(OBJDIR)/regexp.h $(SRCDIR)/config.h |
| 1354 | $(XTCC) -o $(OBJDIR)/regexp.o -c $(OBJDIR)/regexp_.c |
| 1355 | |
| 1356 | $(OBJDIR)/regexp.h: $(OBJDIR)/headers |
| 1357 | |
| 1358 | $(OBJDIR)/report_.c: $(SRCDIR)/report.c $(OBJDIR)/translate |
| 1359 | $(TRANSLATE) $(SRCDIR)/report.c >$(OBJDIR)/report_.c |
| 1360 | |
| 1361 | $(OBJDIR)/report.o: $(OBJDIR)/report_.c $(OBJDIR)/report.h $(SRCDIR)/config.h |
| 1362 |
+10
| --- win/Makefile.msc | ||
| +++ win/Makefile.msc | ||
| @@ -107,10 +107,11 @@ | ||
| 107 | 107 | pivot_.c \ |
| 108 | 108 | popen_.c \ |
| 109 | 109 | pqueue_.c \ |
| 110 | 110 | printf_.c \ |
| 111 | 111 | rebuild_.c \ |
| 112 | + regexp_.c \ | |
| 112 | 113 | report_.c \ |
| 113 | 114 | rss_.c \ |
| 114 | 115 | schema_.c \ |
| 115 | 116 | search_.c \ |
| 116 | 117 | setup_.c \ |
| @@ -210,10 +211,11 @@ | ||
| 210 | 211 | $(OX)\pivot$O \ |
| 211 | 212 | $(OX)\popen$O \ |
| 212 | 213 | $(OX)\pqueue$O \ |
| 213 | 214 | $(OX)\printf$O \ |
| 214 | 215 | $(OX)\rebuild$O \ |
| 216 | + $(OX)\regexp$O \ | |
| 215 | 217 | $(OX)\report$O \ |
| 216 | 218 | $(OX)\rss$O \ |
| 217 | 219 | $(OX)\schema$O \ |
| 218 | 220 | $(OX)\search$O \ |
| 219 | 221 | $(OX)\setup$O \ |
| @@ -330,10 +332,11 @@ | ||
| 330 | 332 | echo $(OX)\pivot.obj >> $@ |
| 331 | 333 | echo $(OX)\popen.obj >> $@ |
| 332 | 334 | echo $(OX)\pqueue.obj >> $@ |
| 333 | 335 | echo $(OX)\printf.obj >> $@ |
| 334 | 336 | echo $(OX)\rebuild.obj >> $@ |
| 337 | + echo $(OX)\regexp.obj >> $@ | |
| 335 | 338 | echo $(OX)\report.obj >> $@ |
| 336 | 339 | echo $(OX)\rss.obj >> $@ |
| 337 | 340 | echo $(OX)\schema.obj >> $@ |
| 338 | 341 | echo $(OX)\search.obj >> $@ |
| 339 | 342 | echo $(OX)\setup.obj >> $@ |
| @@ -853,10 +856,16 @@ | ||
| 853 | 856 | $(OX)\rebuild$O : rebuild_.c rebuild.h |
| 854 | 857 | $(TCC) /Fo$@ -c rebuild_.c |
| 855 | 858 | |
| 856 | 859 | rebuild_.c : $(SRCDIR)\rebuild.c |
| 857 | 860 | translate$E $** > $@ |
| 861 | + | |
| 862 | +$(OX)\regexp$O : regexp_.c regexp.h | |
| 863 | + $(TCC) /Fo$@ -c regexp_.c | |
| 864 | + | |
| 865 | +regexp_.c : $(SRCDIR)\regexp.c | |
| 866 | + translate$E $** > $@ | |
| 858 | 867 | |
| 859 | 868 | $(OX)\report$O : report_.c report.h |
| 860 | 869 | $(TCC) /Fo$@ -c report_.c |
| 861 | 870 | |
| 862 | 871 | report_.c : $(SRCDIR)\report.c |
| @@ -1122,10 +1131,11 @@ | ||
| 1122 | 1131 | pivot_.c:pivot.h \ |
| 1123 | 1132 | popen_.c:popen.h \ |
| 1124 | 1133 | pqueue_.c:pqueue.h \ |
| 1125 | 1134 | printf_.c:printf.h \ |
| 1126 | 1135 | rebuild_.c:rebuild.h \ |
| 1136 | + regexp_.c:regexp.h \ | |
| 1127 | 1137 | report_.c:report.h \ |
| 1128 | 1138 | rss_.c:rss.h \ |
| 1129 | 1139 | schema_.c:schema.h \ |
| 1130 | 1140 | search_.c:search.h \ |
| 1131 | 1141 | setup_.c:setup.h \ |
| 1132 | 1142 |
| --- win/Makefile.msc | |
| +++ win/Makefile.msc | |
| @@ -107,10 +107,11 @@ | |
| 107 | pivot_.c \ |
| 108 | popen_.c \ |
| 109 | pqueue_.c \ |
| 110 | printf_.c \ |
| 111 | rebuild_.c \ |
| 112 | report_.c \ |
| 113 | rss_.c \ |
| 114 | schema_.c \ |
| 115 | search_.c \ |
| 116 | setup_.c \ |
| @@ -210,10 +211,11 @@ | |
| 210 | $(OX)\pivot$O \ |
| 211 | $(OX)\popen$O \ |
| 212 | $(OX)\pqueue$O \ |
| 213 | $(OX)\printf$O \ |
| 214 | $(OX)\rebuild$O \ |
| 215 | $(OX)\report$O \ |
| 216 | $(OX)\rss$O \ |
| 217 | $(OX)\schema$O \ |
| 218 | $(OX)\search$O \ |
| 219 | $(OX)\setup$O \ |
| @@ -330,10 +332,11 @@ | |
| 330 | echo $(OX)\pivot.obj >> $@ |
| 331 | echo $(OX)\popen.obj >> $@ |
| 332 | echo $(OX)\pqueue.obj >> $@ |
| 333 | echo $(OX)\printf.obj >> $@ |
| 334 | echo $(OX)\rebuild.obj >> $@ |
| 335 | echo $(OX)\report.obj >> $@ |
| 336 | echo $(OX)\rss.obj >> $@ |
| 337 | echo $(OX)\schema.obj >> $@ |
| 338 | echo $(OX)\search.obj >> $@ |
| 339 | echo $(OX)\setup.obj >> $@ |
| @@ -853,10 +856,16 @@ | |
| 853 | $(OX)\rebuild$O : rebuild_.c rebuild.h |
| 854 | $(TCC) /Fo$@ -c rebuild_.c |
| 855 | |
| 856 | rebuild_.c : $(SRCDIR)\rebuild.c |
| 857 | translate$E $** > $@ |
| 858 | |
| 859 | $(OX)\report$O : report_.c report.h |
| 860 | $(TCC) /Fo$@ -c report_.c |
| 861 | |
| 862 | report_.c : $(SRCDIR)\report.c |
| @@ -1122,10 +1131,11 @@ | |
| 1122 | pivot_.c:pivot.h \ |
| 1123 | popen_.c:popen.h \ |
| 1124 | pqueue_.c:pqueue.h \ |
| 1125 | printf_.c:printf.h \ |
| 1126 | rebuild_.c:rebuild.h \ |
| 1127 | report_.c:report.h \ |
| 1128 | rss_.c:rss.h \ |
| 1129 | schema_.c:schema.h \ |
| 1130 | search_.c:search.h \ |
| 1131 | setup_.c:setup.h \ |
| 1132 |
| --- win/Makefile.msc | |
| +++ win/Makefile.msc | |
| @@ -107,10 +107,11 @@ | |
| 107 | pivot_.c \ |
| 108 | popen_.c \ |
| 109 | pqueue_.c \ |
| 110 | printf_.c \ |
| 111 | rebuild_.c \ |
| 112 | regexp_.c \ |
| 113 | report_.c \ |
| 114 | rss_.c \ |
| 115 | schema_.c \ |
| 116 | search_.c \ |
| 117 | setup_.c \ |
| @@ -210,10 +211,11 @@ | |
| 211 | $(OX)\pivot$O \ |
| 212 | $(OX)\popen$O \ |
| 213 | $(OX)\pqueue$O \ |
| 214 | $(OX)\printf$O \ |
| 215 | $(OX)\rebuild$O \ |
| 216 | $(OX)\regexp$O \ |
| 217 | $(OX)\report$O \ |
| 218 | $(OX)\rss$O \ |
| 219 | $(OX)\schema$O \ |
| 220 | $(OX)\search$O \ |
| 221 | $(OX)\setup$O \ |
| @@ -330,10 +332,11 @@ | |
| 332 | echo $(OX)\pivot.obj >> $@ |
| 333 | echo $(OX)\popen.obj >> $@ |
| 334 | echo $(OX)\pqueue.obj >> $@ |
| 335 | echo $(OX)\printf.obj >> $@ |
| 336 | echo $(OX)\rebuild.obj >> $@ |
| 337 | echo $(OX)\regexp.obj >> $@ |
| 338 | echo $(OX)\report.obj >> $@ |
| 339 | echo $(OX)\rss.obj >> $@ |
| 340 | echo $(OX)\schema.obj >> $@ |
| 341 | echo $(OX)\search.obj >> $@ |
| 342 | echo $(OX)\setup.obj >> $@ |
| @@ -853,10 +856,16 @@ | |
| 856 | $(OX)\rebuild$O : rebuild_.c rebuild.h |
| 857 | $(TCC) /Fo$@ -c rebuild_.c |
| 858 | |
| 859 | rebuild_.c : $(SRCDIR)\rebuild.c |
| 860 | translate$E $** > $@ |
| 861 | |
| 862 | $(OX)\regexp$O : regexp_.c regexp.h |
| 863 | $(TCC) /Fo$@ -c regexp_.c |
| 864 | |
| 865 | regexp_.c : $(SRCDIR)\regexp.c |
| 866 | translate$E $** > $@ |
| 867 | |
| 868 | $(OX)\report$O : report_.c report.h |
| 869 | $(TCC) /Fo$@ -c report_.c |
| 870 | |
| 871 | report_.c : $(SRCDIR)\report.c |
| @@ -1122,10 +1131,11 @@ | |
| 1131 | pivot_.c:pivot.h \ |
| 1132 | popen_.c:popen.h \ |
| 1133 | pqueue_.c:pqueue.h \ |
| 1134 | printf_.c:printf.h \ |
| 1135 | rebuild_.c:rebuild.h \ |
| 1136 | regexp_.c:regexp.h \ |
| 1137 | report_.c:report.h \ |
| 1138 | rss_.c:rss.h \ |
| 1139 | schema_.c:schema.h \ |
| 1140 | search_.c:search.h \ |
| 1141 | setup_.c:setup.h \ |
| 1142 |