Fossil SCM
Silence unused variable compiler warning. Modify MinGW makefiles to fix an overly long line.
Commit
f51c8a44478c6289a75f2d7754b437cb63cac189
Parent
3ad20f4b257b089…
4 files changed
+2
+5
-4
+105
-1
+105
-1
+2
| --- src/info.c | ||
| +++ src/info.c | ||
| @@ -481,11 +481,13 @@ | ||
| 481 | 481 | const char *zComment; |
| 482 | 482 | const char *zDate; |
| 483 | 483 | const char *zOrigDate; |
| 484 | 484 | char *zThisBranch; |
| 485 | 485 | double thisMtime; |
| 486 | +#if 0 | |
| 486 | 487 | int seenDiffTitle = 0; |
| 488 | +#endif | |
| 487 | 489 | |
| 488 | 490 | style_header(zTitle); |
| 489 | 491 | login_anonymous_available(); |
| 490 | 492 | free(zTitle); |
| 491 | 493 | zEUser = db_text(0, |
| 492 | 494 |
| --- src/info.c | |
| +++ src/info.c | |
| @@ -481,11 +481,13 @@ | |
| 481 | const char *zComment; |
| 482 | const char *zDate; |
| 483 | const char *zOrigDate; |
| 484 | char *zThisBranch; |
| 485 | double thisMtime; |
| 486 | int seenDiffTitle = 0; |
| 487 | |
| 488 | style_header(zTitle); |
| 489 | login_anonymous_available(); |
| 490 | free(zTitle); |
| 491 | zEUser = db_text(0, |
| 492 |
| --- src/info.c | |
| +++ src/info.c | |
| @@ -481,11 +481,13 @@ | |
| 481 | const char *zComment; |
| 482 | const char *zDate; |
| 483 | const char *zOrigDate; |
| 484 | char *zThisBranch; |
| 485 | double thisMtime; |
| 486 | #if 0 |
| 487 | int seenDiffTitle = 0; |
| 488 | #endif |
| 489 | |
| 490 | style_header(zTitle); |
| 491 | login_anonymous_available(); |
| 492 | free(zTitle); |
| 493 | zEUser = db_text(0, |
| 494 |
+5
-4
| --- src/makemake.tcl | ||
| +++ src/makemake.tcl | ||
| @@ -718,16 +718,17 @@ | ||
| 718 | 718 | $(MAKENSIS) ./fossil.nsi |
| 719 | 719 | } |
| 720 | 720 | |
| 721 | 721 | set mhargs {} |
| 722 | 722 | foreach s [lsort $src] { |
| 723 | - append mhargs " \$(OBJDIR)/${s}_.c:\$(OBJDIR)/$s.h" | |
| 723 | + if {[string length $mhargs] > 0} {append mhargs " \\\n\t\t"} | |
| 724 | + append mhargs "\$(OBJDIR)/${s}_.c:\$(OBJDIR)/$s.h" | |
| 724 | 725 | set extra_h($s) {} |
| 725 | 726 | } |
| 726 | -append mhargs " \$(SRCDIR)/sqlite3.h" | |
| 727 | -append mhargs " \$(SRCDIR)/th.h" | |
| 728 | -append mhargs " \$(OBJDIR)/VERSION.h" | |
| 727 | +append mhargs " \\\n\t\t\$(SRCDIR)/sqlite3.h" | |
| 728 | +append mhargs " \\\n\t\t\$(SRCDIR)/th.h" | |
| 729 | +append mhargs " \\\n\t\t\$(OBJDIR)/VERSION.h" | |
| 729 | 730 | writeln "\$(OBJDIR)/page_index.h: \$(TRANS_SRC) \$(OBJDIR)/mkindex" |
| 730 | 731 | writeln "\t\$(MKINDEX) \$(TRANS_SRC) >$@\n" |
| 731 | 732 | writeln "\$(OBJDIR)/headers:\t\$(OBJDIR)/page_index.h \$(OBJDIR)/makeheaders \$(OBJDIR)/VERSION.h" |
| 732 | 733 | writeln "\t\$(MAKEHEADERS) $mhargs" |
| 733 | 734 | writeln "\techo Done >\$(OBJDIR)/headers\n" |
| 734 | 735 |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -718,16 +718,17 @@ | |
| 718 | $(MAKENSIS) ./fossil.nsi |
| 719 | } |
| 720 | |
| 721 | set mhargs {} |
| 722 | foreach s [lsort $src] { |
| 723 | append mhargs " \$(OBJDIR)/${s}_.c:\$(OBJDIR)/$s.h" |
| 724 | set extra_h($s) {} |
| 725 | } |
| 726 | append mhargs " \$(SRCDIR)/sqlite3.h" |
| 727 | append mhargs " \$(SRCDIR)/th.h" |
| 728 | append mhargs " \$(OBJDIR)/VERSION.h" |
| 729 | writeln "\$(OBJDIR)/page_index.h: \$(TRANS_SRC) \$(OBJDIR)/mkindex" |
| 730 | writeln "\t\$(MKINDEX) \$(TRANS_SRC) >$@\n" |
| 731 | writeln "\$(OBJDIR)/headers:\t\$(OBJDIR)/page_index.h \$(OBJDIR)/makeheaders \$(OBJDIR)/VERSION.h" |
| 732 | writeln "\t\$(MAKEHEADERS) $mhargs" |
| 733 | writeln "\techo Done >\$(OBJDIR)/headers\n" |
| 734 |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -718,16 +718,17 @@ | |
| 718 | $(MAKENSIS) ./fossil.nsi |
| 719 | } |
| 720 | |
| 721 | set mhargs {} |
| 722 | foreach s [lsort $src] { |
| 723 | if {[string length $mhargs] > 0} {append mhargs " \\\n\t\t"} |
| 724 | append mhargs "\$(OBJDIR)/${s}_.c:\$(OBJDIR)/$s.h" |
| 725 | set extra_h($s) {} |
| 726 | } |
| 727 | append mhargs " \\\n\t\t\$(SRCDIR)/sqlite3.h" |
| 728 | append mhargs " \\\n\t\t\$(SRCDIR)/th.h" |
| 729 | append mhargs " \\\n\t\t\$(OBJDIR)/VERSION.h" |
| 730 | writeln "\$(OBJDIR)/page_index.h: \$(TRANS_SRC) \$(OBJDIR)/mkindex" |
| 731 | writeln "\t\$(MKINDEX) \$(TRANS_SRC) >$@\n" |
| 732 | writeln "\$(OBJDIR)/headers:\t\$(OBJDIR)/page_index.h \$(OBJDIR)/makeheaders \$(OBJDIR)/VERSION.h" |
| 733 | writeln "\t\$(MAKEHEADERS) $mhargs" |
| 734 | writeln "\techo Done >\$(OBJDIR)/headers\n" |
| 735 |
+105
-1
| --- win/Makefile.mingw | ||
| +++ win/Makefile.mingw | ||
| @@ -678,11 +678,115 @@ | ||
| 678 | 678 | |
| 679 | 679 | $(OBJDIR)/page_index.h: $(TRANS_SRC) $(OBJDIR)/mkindex |
| 680 | 680 | $(MKINDEX) $(TRANS_SRC) >$@ |
| 681 | 681 | |
| 682 | 682 | $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/makeheaders $(OBJDIR)/VERSION.h |
| 683 | - $(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 | |
| 683 | + $(MAKEHEADERS) $(OBJDIR)/add_.c:$(OBJDIR)/add.h \ | |
| 684 | + $(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h \ | |
| 685 | + $(OBJDIR)/attach_.c:$(OBJDIR)/attach.h \ | |
| 686 | + $(OBJDIR)/bag_.c:$(OBJDIR)/bag.h \ | |
| 687 | + $(OBJDIR)/bisect_.c:$(OBJDIR)/bisect.h \ | |
| 688 | + $(OBJDIR)/blob_.c:$(OBJDIR)/blob.h \ | |
| 689 | + $(OBJDIR)/branch_.c:$(OBJDIR)/branch.h \ | |
| 690 | + $(OBJDIR)/browse_.c:$(OBJDIR)/browse.h \ | |
| 691 | + $(OBJDIR)/captcha_.c:$(OBJDIR)/captcha.h \ | |
| 692 | + $(OBJDIR)/cgi_.c:$(OBJDIR)/cgi.h \ | |
| 693 | + $(OBJDIR)/checkin_.c:$(OBJDIR)/checkin.h \ | |
| 694 | + $(OBJDIR)/checkout_.c:$(OBJDIR)/checkout.h \ | |
| 695 | + $(OBJDIR)/clearsign_.c:$(OBJDIR)/clearsign.h \ | |
| 696 | + $(OBJDIR)/clone_.c:$(OBJDIR)/clone.h \ | |
| 697 | + $(OBJDIR)/comformat_.c:$(OBJDIR)/comformat.h \ | |
| 698 | + $(OBJDIR)/configure_.c:$(OBJDIR)/configure.h \ | |
| 699 | + $(OBJDIR)/content_.c:$(OBJDIR)/content.h \ | |
| 700 | + $(OBJDIR)/db_.c:$(OBJDIR)/db.h \ | |
| 701 | + $(OBJDIR)/delta_.c:$(OBJDIR)/delta.h \ | |
| 702 | + $(OBJDIR)/deltacmd_.c:$(OBJDIR)/deltacmd.h \ | |
| 703 | + $(OBJDIR)/descendants_.c:$(OBJDIR)/descendants.h \ | |
| 704 | + $(OBJDIR)/diff_.c:$(OBJDIR)/diff.h \ | |
| 705 | + $(OBJDIR)/diffcmd_.c:$(OBJDIR)/diffcmd.h \ | |
| 706 | + $(OBJDIR)/doc_.c:$(OBJDIR)/doc.h \ | |
| 707 | + $(OBJDIR)/encode_.c:$(OBJDIR)/encode.h \ | |
| 708 | + $(OBJDIR)/event_.c:$(OBJDIR)/event.h \ | |
| 709 | + $(OBJDIR)/export_.c:$(OBJDIR)/export.h \ | |
| 710 | + $(OBJDIR)/file_.c:$(OBJDIR)/file.h \ | |
| 711 | + $(OBJDIR)/finfo_.c:$(OBJDIR)/finfo.h \ | |
| 712 | + $(OBJDIR)/glob_.c:$(OBJDIR)/glob.h \ | |
| 713 | + $(OBJDIR)/graph_.c:$(OBJDIR)/graph.h \ | |
| 714 | + $(OBJDIR)/gzip_.c:$(OBJDIR)/gzip.h \ | |
| 715 | + $(OBJDIR)/http_.c:$(OBJDIR)/http.h \ | |
| 716 | + $(OBJDIR)/http_socket_.c:$(OBJDIR)/http_socket.h \ | |
| 717 | + $(OBJDIR)/http_ssl_.c:$(OBJDIR)/http_ssl.h \ | |
| 718 | + $(OBJDIR)/http_transport_.c:$(OBJDIR)/http_transport.h \ | |
| 719 | + $(OBJDIR)/import_.c:$(OBJDIR)/import.h \ | |
| 720 | + $(OBJDIR)/info_.c:$(OBJDIR)/info.h \ | |
| 721 | + $(OBJDIR)/json_.c:$(OBJDIR)/json.h \ | |
| 722 | + $(OBJDIR)/json_artifact_.c:$(OBJDIR)/json_artifact.h \ | |
| 723 | + $(OBJDIR)/json_branch_.c:$(OBJDIR)/json_branch.h \ | |
| 724 | + $(OBJDIR)/json_config_.c:$(OBJDIR)/json_config.h \ | |
| 725 | + $(OBJDIR)/json_diff_.c:$(OBJDIR)/json_diff.h \ | |
| 726 | + $(OBJDIR)/json_dir_.c:$(OBJDIR)/json_dir.h \ | |
| 727 | + $(OBJDIR)/json_finfo_.c:$(OBJDIR)/json_finfo.h \ | |
| 728 | + $(OBJDIR)/json_login_.c:$(OBJDIR)/json_login.h \ | |
| 729 | + $(OBJDIR)/json_query_.c:$(OBJDIR)/json_query.h \ | |
| 730 | + $(OBJDIR)/json_report_.c:$(OBJDIR)/json_report.h \ | |
| 731 | + $(OBJDIR)/json_tag_.c:$(OBJDIR)/json_tag.h \ | |
| 732 | + $(OBJDIR)/json_timeline_.c:$(OBJDIR)/json_timeline.h \ | |
| 733 | + $(OBJDIR)/json_user_.c:$(OBJDIR)/json_user.h \ | |
| 734 | + $(OBJDIR)/json_wiki_.c:$(OBJDIR)/json_wiki.h \ | |
| 735 | + $(OBJDIR)/leaf_.c:$(OBJDIR)/leaf.h \ | |
| 736 | + $(OBJDIR)/login_.c:$(OBJDIR)/login.h \ | |
| 737 | + $(OBJDIR)/main_.c:$(OBJDIR)/main.h \ | |
| 738 | + $(OBJDIR)/manifest_.c:$(OBJDIR)/manifest.h \ | |
| 739 | + $(OBJDIR)/markdown_.c:$(OBJDIR)/markdown.h \ | |
| 740 | + $(OBJDIR)/markdown_html_.c:$(OBJDIR)/markdown_html.h \ | |
| 741 | + $(OBJDIR)/md5_.c:$(OBJDIR)/md5.h \ | |
| 742 | + $(OBJDIR)/merge_.c:$(OBJDIR)/merge.h \ | |
| 743 | + $(OBJDIR)/merge3_.c:$(OBJDIR)/merge3.h \ | |
| 744 | + $(OBJDIR)/moderate_.c:$(OBJDIR)/moderate.h \ | |
| 745 | + $(OBJDIR)/name_.c:$(OBJDIR)/name.h \ | |
| 746 | + $(OBJDIR)/path_.c:$(OBJDIR)/path.h \ | |
| 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 \ | |
| 757 | + $(OBJDIR)/sha1_.c:$(OBJDIR)/sha1.h \ | |
| 758 | + $(OBJDIR)/shun_.c:$(OBJDIR)/shun.h \ | |
| 759 | + $(OBJDIR)/skins_.c:$(OBJDIR)/skins.h \ | |
| 760 | + $(OBJDIR)/sqlcmd_.c:$(OBJDIR)/sqlcmd.h \ | |
| 761 | + $(OBJDIR)/stash_.c:$(OBJDIR)/stash.h \ | |
| 762 | + $(OBJDIR)/stat_.c:$(OBJDIR)/stat.h \ | |
| 763 | + $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ | |
| 764 | + $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ | |
| 765 | + $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ | |
| 766 | + $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ | |
| 767 | + $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ | |
| 768 | + $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ | |
| 769 | + $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ | |
| 770 | + $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ | |
| 771 | + $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ | |
| 772 | + $(OBJDIR)/update_.c:$(OBJDIR)/update.h \ | |
| 773 | + $(OBJDIR)/url_.c:$(OBJDIR)/url.h \ | |
| 774 | + $(OBJDIR)/user_.c:$(OBJDIR)/user.h \ | |
| 775 | + $(OBJDIR)/utf8_.c:$(OBJDIR)/utf8.h \ | |
| 776 | + $(OBJDIR)/verify_.c:$(OBJDIR)/verify.h \ | |
| 777 | + $(OBJDIR)/vfile_.c:$(OBJDIR)/vfile.h \ | |
| 778 | + $(OBJDIR)/wiki_.c:$(OBJDIR)/wiki.h \ | |
| 779 | + $(OBJDIR)/wikiformat_.c:$(OBJDIR)/wikiformat.h \ | |
| 780 | + $(OBJDIR)/winhttp_.c:$(OBJDIR)/winhttp.h \ | |
| 781 | + $(OBJDIR)/wysiwyg_.c:$(OBJDIR)/wysiwyg.h \ | |
| 782 | + $(OBJDIR)/xfer_.c:$(OBJDIR)/xfer.h \ | |
| 783 | + $(OBJDIR)/xfersetup_.c:$(OBJDIR)/xfersetup.h \ | |
| 784 | + $(OBJDIR)/zip_.c:$(OBJDIR)/zip.h \ | |
| 785 | + $(SRCDIR)/sqlite3.h \ | |
| 786 | + $(SRCDIR)/th.h \ | |
| 787 | + $(OBJDIR)/VERSION.h | |
| 684 | 788 | echo Done >$(OBJDIR)/headers |
| 685 | 789 | |
| 686 | 790 | $(OBJDIR)/headers: Makefile |
| 687 | 791 | |
| 688 | 792 | Makefile: |
| 689 | 793 |
| --- win/Makefile.mingw | |
| +++ win/Makefile.mingw | |
| @@ -678,11 +678,115 @@ | |
| 678 | |
| 679 | $(OBJDIR)/page_index.h: $(TRANS_SRC) $(OBJDIR)/mkindex |
| 680 | $(MKINDEX) $(TRANS_SRC) >$@ |
| 681 | |
| 682 | $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/makeheaders $(OBJDIR)/VERSION.h |
| 683 | $(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 |
| 684 | echo Done >$(OBJDIR)/headers |
| 685 | |
| 686 | $(OBJDIR)/headers: Makefile |
| 687 | |
| 688 | Makefile: |
| 689 |
| --- win/Makefile.mingw | |
| +++ win/Makefile.mingw | |
| @@ -678,11 +678,115 @@ | |
| 678 | |
| 679 | $(OBJDIR)/page_index.h: $(TRANS_SRC) $(OBJDIR)/mkindex |
| 680 | $(MKINDEX) $(TRANS_SRC) >$@ |
| 681 | |
| 682 | $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/makeheaders $(OBJDIR)/VERSION.h |
| 683 | $(MAKEHEADERS) $(OBJDIR)/add_.c:$(OBJDIR)/add.h \ |
| 684 | $(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h \ |
| 685 | $(OBJDIR)/attach_.c:$(OBJDIR)/attach.h \ |
| 686 | $(OBJDIR)/bag_.c:$(OBJDIR)/bag.h \ |
| 687 | $(OBJDIR)/bisect_.c:$(OBJDIR)/bisect.h \ |
| 688 | $(OBJDIR)/blob_.c:$(OBJDIR)/blob.h \ |
| 689 | $(OBJDIR)/branch_.c:$(OBJDIR)/branch.h \ |
| 690 | $(OBJDIR)/browse_.c:$(OBJDIR)/browse.h \ |
| 691 | $(OBJDIR)/captcha_.c:$(OBJDIR)/captcha.h \ |
| 692 | $(OBJDIR)/cgi_.c:$(OBJDIR)/cgi.h \ |
| 693 | $(OBJDIR)/checkin_.c:$(OBJDIR)/checkin.h \ |
| 694 | $(OBJDIR)/checkout_.c:$(OBJDIR)/checkout.h \ |
| 695 | $(OBJDIR)/clearsign_.c:$(OBJDIR)/clearsign.h \ |
| 696 | $(OBJDIR)/clone_.c:$(OBJDIR)/clone.h \ |
| 697 | $(OBJDIR)/comformat_.c:$(OBJDIR)/comformat.h \ |
| 698 | $(OBJDIR)/configure_.c:$(OBJDIR)/configure.h \ |
| 699 | $(OBJDIR)/content_.c:$(OBJDIR)/content.h \ |
| 700 | $(OBJDIR)/db_.c:$(OBJDIR)/db.h \ |
| 701 | $(OBJDIR)/delta_.c:$(OBJDIR)/delta.h \ |
| 702 | $(OBJDIR)/deltacmd_.c:$(OBJDIR)/deltacmd.h \ |
| 703 | $(OBJDIR)/descendants_.c:$(OBJDIR)/descendants.h \ |
| 704 | $(OBJDIR)/diff_.c:$(OBJDIR)/diff.h \ |
| 705 | $(OBJDIR)/diffcmd_.c:$(OBJDIR)/diffcmd.h \ |
| 706 | $(OBJDIR)/doc_.c:$(OBJDIR)/doc.h \ |
| 707 | $(OBJDIR)/encode_.c:$(OBJDIR)/encode.h \ |
| 708 | $(OBJDIR)/event_.c:$(OBJDIR)/event.h \ |
| 709 | $(OBJDIR)/export_.c:$(OBJDIR)/export.h \ |
| 710 | $(OBJDIR)/file_.c:$(OBJDIR)/file.h \ |
| 711 | $(OBJDIR)/finfo_.c:$(OBJDIR)/finfo.h \ |
| 712 | $(OBJDIR)/glob_.c:$(OBJDIR)/glob.h \ |
| 713 | $(OBJDIR)/graph_.c:$(OBJDIR)/graph.h \ |
| 714 | $(OBJDIR)/gzip_.c:$(OBJDIR)/gzip.h \ |
| 715 | $(OBJDIR)/http_.c:$(OBJDIR)/http.h \ |
| 716 | $(OBJDIR)/http_socket_.c:$(OBJDIR)/http_socket.h \ |
| 717 | $(OBJDIR)/http_ssl_.c:$(OBJDIR)/http_ssl.h \ |
| 718 | $(OBJDIR)/http_transport_.c:$(OBJDIR)/http_transport.h \ |
| 719 | $(OBJDIR)/import_.c:$(OBJDIR)/import.h \ |
| 720 | $(OBJDIR)/info_.c:$(OBJDIR)/info.h \ |
| 721 | $(OBJDIR)/json_.c:$(OBJDIR)/json.h \ |
| 722 | $(OBJDIR)/json_artifact_.c:$(OBJDIR)/json_artifact.h \ |
| 723 | $(OBJDIR)/json_branch_.c:$(OBJDIR)/json_branch.h \ |
| 724 | $(OBJDIR)/json_config_.c:$(OBJDIR)/json_config.h \ |
| 725 | $(OBJDIR)/json_diff_.c:$(OBJDIR)/json_diff.h \ |
| 726 | $(OBJDIR)/json_dir_.c:$(OBJDIR)/json_dir.h \ |
| 727 | $(OBJDIR)/json_finfo_.c:$(OBJDIR)/json_finfo.h \ |
| 728 | $(OBJDIR)/json_login_.c:$(OBJDIR)/json_login.h \ |
| 729 | $(OBJDIR)/json_query_.c:$(OBJDIR)/json_query.h \ |
| 730 | $(OBJDIR)/json_report_.c:$(OBJDIR)/json_report.h \ |
| 731 | $(OBJDIR)/json_tag_.c:$(OBJDIR)/json_tag.h \ |
| 732 | $(OBJDIR)/json_timeline_.c:$(OBJDIR)/json_timeline.h \ |
| 733 | $(OBJDIR)/json_user_.c:$(OBJDIR)/json_user.h \ |
| 734 | $(OBJDIR)/json_wiki_.c:$(OBJDIR)/json_wiki.h \ |
| 735 | $(OBJDIR)/leaf_.c:$(OBJDIR)/leaf.h \ |
| 736 | $(OBJDIR)/login_.c:$(OBJDIR)/login.h \ |
| 737 | $(OBJDIR)/main_.c:$(OBJDIR)/main.h \ |
| 738 | $(OBJDIR)/manifest_.c:$(OBJDIR)/manifest.h \ |
| 739 | $(OBJDIR)/markdown_.c:$(OBJDIR)/markdown.h \ |
| 740 | $(OBJDIR)/markdown_html_.c:$(OBJDIR)/markdown_html.h \ |
| 741 | $(OBJDIR)/md5_.c:$(OBJDIR)/md5.h \ |
| 742 | $(OBJDIR)/merge_.c:$(OBJDIR)/merge.h \ |
| 743 | $(OBJDIR)/merge3_.c:$(OBJDIR)/merge3.h \ |
| 744 | $(OBJDIR)/moderate_.c:$(OBJDIR)/moderate.h \ |
| 745 | $(OBJDIR)/name_.c:$(OBJDIR)/name.h \ |
| 746 | $(OBJDIR)/path_.c:$(OBJDIR)/path.h \ |
| 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 \ |
| 757 | $(OBJDIR)/sha1_.c:$(OBJDIR)/sha1.h \ |
| 758 | $(OBJDIR)/shun_.c:$(OBJDIR)/shun.h \ |
| 759 | $(OBJDIR)/skins_.c:$(OBJDIR)/skins.h \ |
| 760 | $(OBJDIR)/sqlcmd_.c:$(OBJDIR)/sqlcmd.h \ |
| 761 | $(OBJDIR)/stash_.c:$(OBJDIR)/stash.h \ |
| 762 | $(OBJDIR)/stat_.c:$(OBJDIR)/stat.h \ |
| 763 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 764 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 765 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 766 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 767 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 768 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 769 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 770 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 771 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| 772 | $(OBJDIR)/update_.c:$(OBJDIR)/update.h \ |
| 773 | $(OBJDIR)/url_.c:$(OBJDIR)/url.h \ |
| 774 | $(OBJDIR)/user_.c:$(OBJDIR)/user.h \ |
| 775 | $(OBJDIR)/utf8_.c:$(OBJDIR)/utf8.h \ |
| 776 | $(OBJDIR)/verify_.c:$(OBJDIR)/verify.h \ |
| 777 | $(OBJDIR)/vfile_.c:$(OBJDIR)/vfile.h \ |
| 778 | $(OBJDIR)/wiki_.c:$(OBJDIR)/wiki.h \ |
| 779 | $(OBJDIR)/wikiformat_.c:$(OBJDIR)/wikiformat.h \ |
| 780 | $(OBJDIR)/winhttp_.c:$(OBJDIR)/winhttp.h \ |
| 781 | $(OBJDIR)/wysiwyg_.c:$(OBJDIR)/wysiwyg.h \ |
| 782 | $(OBJDIR)/xfer_.c:$(OBJDIR)/xfer.h \ |
| 783 | $(OBJDIR)/xfersetup_.c:$(OBJDIR)/xfersetup.h \ |
| 784 | $(OBJDIR)/zip_.c:$(OBJDIR)/zip.h \ |
| 785 | $(SRCDIR)/sqlite3.h \ |
| 786 | $(SRCDIR)/th.h \ |
| 787 | $(OBJDIR)/VERSION.h |
| 788 | echo Done >$(OBJDIR)/headers |
| 789 | |
| 790 | $(OBJDIR)/headers: Makefile |
| 791 | |
| 792 | Makefile: |
| 793 |
+105
-1
| --- win/Makefile.mingw.mistachkin | ||
| +++ win/Makefile.mingw.mistachkin | ||
| @@ -678,11 +678,115 @@ | ||
| 678 | 678 | |
| 679 | 679 | $(OBJDIR)/page_index.h: $(TRANS_SRC) $(OBJDIR)/mkindex |
| 680 | 680 | $(MKINDEX) $(TRANS_SRC) >$@ |
| 681 | 681 | |
| 682 | 682 | $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/makeheaders $(OBJDIR)/VERSION.h |
| 683 | - $(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 | |
| 683 | + $(MAKEHEADERS) $(OBJDIR)/add_.c:$(OBJDIR)/add.h \ | |
| 684 | + $(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h \ | |
| 685 | + $(OBJDIR)/attach_.c:$(OBJDIR)/attach.h \ | |
| 686 | + $(OBJDIR)/bag_.c:$(OBJDIR)/bag.h \ | |
| 687 | + $(OBJDIR)/bisect_.c:$(OBJDIR)/bisect.h \ | |
| 688 | + $(OBJDIR)/blob_.c:$(OBJDIR)/blob.h \ | |
| 689 | + $(OBJDIR)/branch_.c:$(OBJDIR)/branch.h \ | |
| 690 | + $(OBJDIR)/browse_.c:$(OBJDIR)/browse.h \ | |
| 691 | + $(OBJDIR)/captcha_.c:$(OBJDIR)/captcha.h \ | |
| 692 | + $(OBJDIR)/cgi_.c:$(OBJDIR)/cgi.h \ | |
| 693 | + $(OBJDIR)/checkin_.c:$(OBJDIR)/checkin.h \ | |
| 694 | + $(OBJDIR)/checkout_.c:$(OBJDIR)/checkout.h \ | |
| 695 | + $(OBJDIR)/clearsign_.c:$(OBJDIR)/clearsign.h \ | |
| 696 | + $(OBJDIR)/clone_.c:$(OBJDIR)/clone.h \ | |
| 697 | + $(OBJDIR)/comformat_.c:$(OBJDIR)/comformat.h \ | |
| 698 | + $(OBJDIR)/configure_.c:$(OBJDIR)/configure.h \ | |
| 699 | + $(OBJDIR)/content_.c:$(OBJDIR)/content.h \ | |
| 700 | + $(OBJDIR)/db_.c:$(OBJDIR)/db.h \ | |
| 701 | + $(OBJDIR)/delta_.c:$(OBJDIR)/delta.h \ | |
| 702 | + $(OBJDIR)/deltacmd_.c:$(OBJDIR)/deltacmd.h \ | |
| 703 | + $(OBJDIR)/descendants_.c:$(OBJDIR)/descendants.h \ | |
| 704 | + $(OBJDIR)/diff_.c:$(OBJDIR)/diff.h \ | |
| 705 | + $(OBJDIR)/diffcmd_.c:$(OBJDIR)/diffcmd.h \ | |
| 706 | + $(OBJDIR)/doc_.c:$(OBJDIR)/doc.h \ | |
| 707 | + $(OBJDIR)/encode_.c:$(OBJDIR)/encode.h \ | |
| 708 | + $(OBJDIR)/event_.c:$(OBJDIR)/event.h \ | |
| 709 | + $(OBJDIR)/export_.c:$(OBJDIR)/export.h \ | |
| 710 | + $(OBJDIR)/file_.c:$(OBJDIR)/file.h \ | |
| 711 | + $(OBJDIR)/finfo_.c:$(OBJDIR)/finfo.h \ | |
| 712 | + $(OBJDIR)/glob_.c:$(OBJDIR)/glob.h \ | |
| 713 | + $(OBJDIR)/graph_.c:$(OBJDIR)/graph.h \ | |
| 714 | + $(OBJDIR)/gzip_.c:$(OBJDIR)/gzip.h \ | |
| 715 | + $(OBJDIR)/http_.c:$(OBJDIR)/http.h \ | |
| 716 | + $(OBJDIR)/http_socket_.c:$(OBJDIR)/http_socket.h \ | |
| 717 | + $(OBJDIR)/http_ssl_.c:$(OBJDIR)/http_ssl.h \ | |
| 718 | + $(OBJDIR)/http_transport_.c:$(OBJDIR)/http_transport.h \ | |
| 719 | + $(OBJDIR)/import_.c:$(OBJDIR)/import.h \ | |
| 720 | + $(OBJDIR)/info_.c:$(OBJDIR)/info.h \ | |
| 721 | + $(OBJDIR)/json_.c:$(OBJDIR)/json.h \ | |
| 722 | + $(OBJDIR)/json_artifact_.c:$(OBJDIR)/json_artifact.h \ | |
| 723 | + $(OBJDIR)/json_branch_.c:$(OBJDIR)/json_branch.h \ | |
| 724 | + $(OBJDIR)/json_config_.c:$(OBJDIR)/json_config.h \ | |
| 725 | + $(OBJDIR)/json_diff_.c:$(OBJDIR)/json_diff.h \ | |
| 726 | + $(OBJDIR)/json_dir_.c:$(OBJDIR)/json_dir.h \ | |
| 727 | + $(OBJDIR)/json_finfo_.c:$(OBJDIR)/json_finfo.h \ | |
| 728 | + $(OBJDIR)/json_login_.c:$(OBJDIR)/json_login.h \ | |
| 729 | + $(OBJDIR)/json_query_.c:$(OBJDIR)/json_query.h \ | |
| 730 | + $(OBJDIR)/json_report_.c:$(OBJDIR)/json_report.h \ | |
| 731 | + $(OBJDIR)/json_tag_.c:$(OBJDIR)/json_tag.h \ | |
| 732 | + $(OBJDIR)/json_timeline_.c:$(OBJDIR)/json_timeline.h \ | |
| 733 | + $(OBJDIR)/json_user_.c:$(OBJDIR)/json_user.h \ | |
| 734 | + $(OBJDIR)/json_wiki_.c:$(OBJDIR)/json_wiki.h \ | |
| 735 | + $(OBJDIR)/leaf_.c:$(OBJDIR)/leaf.h \ | |
| 736 | + $(OBJDIR)/login_.c:$(OBJDIR)/login.h \ | |
| 737 | + $(OBJDIR)/main_.c:$(OBJDIR)/main.h \ | |
| 738 | + $(OBJDIR)/manifest_.c:$(OBJDIR)/manifest.h \ | |
| 739 | + $(OBJDIR)/markdown_.c:$(OBJDIR)/markdown.h \ | |
| 740 | + $(OBJDIR)/markdown_html_.c:$(OBJDIR)/markdown_html.h \ | |
| 741 | + $(OBJDIR)/md5_.c:$(OBJDIR)/md5.h \ | |
| 742 | + $(OBJDIR)/merge_.c:$(OBJDIR)/merge.h \ | |
| 743 | + $(OBJDIR)/merge3_.c:$(OBJDIR)/merge3.h \ | |
| 744 | + $(OBJDIR)/moderate_.c:$(OBJDIR)/moderate.h \ | |
| 745 | + $(OBJDIR)/name_.c:$(OBJDIR)/name.h \ | |
| 746 | + $(OBJDIR)/path_.c:$(OBJDIR)/path.h \ | |
| 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 \ | |
| 757 | + $(OBJDIR)/sha1_.c:$(OBJDIR)/sha1.h \ | |
| 758 | + $(OBJDIR)/shun_.c:$(OBJDIR)/shun.h \ | |
| 759 | + $(OBJDIR)/skins_.c:$(OBJDIR)/skins.h \ | |
| 760 | + $(OBJDIR)/sqlcmd_.c:$(OBJDIR)/sqlcmd.h \ | |
| 761 | + $(OBJDIR)/stash_.c:$(OBJDIR)/stash.h \ | |
| 762 | + $(OBJDIR)/stat_.c:$(OBJDIR)/stat.h \ | |
| 763 | + $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ | |
| 764 | + $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ | |
| 765 | + $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ | |
| 766 | + $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ | |
| 767 | + $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ | |
| 768 | + $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ | |
| 769 | + $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ | |
| 770 | + $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ | |
| 771 | + $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ | |
| 772 | + $(OBJDIR)/update_.c:$(OBJDIR)/update.h \ | |
| 773 | + $(OBJDIR)/url_.c:$(OBJDIR)/url.h \ | |
| 774 | + $(OBJDIR)/user_.c:$(OBJDIR)/user.h \ | |
| 775 | + $(OBJDIR)/utf8_.c:$(OBJDIR)/utf8.h \ | |
| 776 | + $(OBJDIR)/verify_.c:$(OBJDIR)/verify.h \ | |
| 777 | + $(OBJDIR)/vfile_.c:$(OBJDIR)/vfile.h \ | |
| 778 | + $(OBJDIR)/wiki_.c:$(OBJDIR)/wiki.h \ | |
| 779 | + $(OBJDIR)/wikiformat_.c:$(OBJDIR)/wikiformat.h \ | |
| 780 | + $(OBJDIR)/winhttp_.c:$(OBJDIR)/winhttp.h \ | |
| 781 | + $(OBJDIR)/wysiwyg_.c:$(OBJDIR)/wysiwyg.h \ | |
| 782 | + $(OBJDIR)/xfer_.c:$(OBJDIR)/xfer.h \ | |
| 783 | + $(OBJDIR)/xfersetup_.c:$(OBJDIR)/xfersetup.h \ | |
| 784 | + $(OBJDIR)/zip_.c:$(OBJDIR)/zip.h \ | |
| 785 | + $(SRCDIR)/sqlite3.h \ | |
| 786 | + $(SRCDIR)/th.h \ | |
| 787 | + $(OBJDIR)/VERSION.h | |
| 684 | 788 | echo Done >$(OBJDIR)/headers |
| 685 | 789 | |
| 686 | 790 | $(OBJDIR)/headers: Makefile |
| 687 | 791 | |
| 688 | 792 | Makefile: |
| 689 | 793 |
| --- win/Makefile.mingw.mistachkin | |
| +++ win/Makefile.mingw.mistachkin | |
| @@ -678,11 +678,115 @@ | |
| 678 | |
| 679 | $(OBJDIR)/page_index.h: $(TRANS_SRC) $(OBJDIR)/mkindex |
| 680 | $(MKINDEX) $(TRANS_SRC) >$@ |
| 681 | |
| 682 | $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/makeheaders $(OBJDIR)/VERSION.h |
| 683 | $(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 |
| 684 | echo Done >$(OBJDIR)/headers |
| 685 | |
| 686 | $(OBJDIR)/headers: Makefile |
| 687 | |
| 688 | Makefile: |
| 689 |
| --- win/Makefile.mingw.mistachkin | |
| +++ win/Makefile.mingw.mistachkin | |
| @@ -678,11 +678,115 @@ | |
| 678 | |
| 679 | $(OBJDIR)/page_index.h: $(TRANS_SRC) $(OBJDIR)/mkindex |
| 680 | $(MKINDEX) $(TRANS_SRC) >$@ |
| 681 | |
| 682 | $(OBJDIR)/headers: $(OBJDIR)/page_index.h $(OBJDIR)/makeheaders $(OBJDIR)/VERSION.h |
| 683 | $(MAKEHEADERS) $(OBJDIR)/add_.c:$(OBJDIR)/add.h \ |
| 684 | $(OBJDIR)/allrepo_.c:$(OBJDIR)/allrepo.h \ |
| 685 | $(OBJDIR)/attach_.c:$(OBJDIR)/attach.h \ |
| 686 | $(OBJDIR)/bag_.c:$(OBJDIR)/bag.h \ |
| 687 | $(OBJDIR)/bisect_.c:$(OBJDIR)/bisect.h \ |
| 688 | $(OBJDIR)/blob_.c:$(OBJDIR)/blob.h \ |
| 689 | $(OBJDIR)/branch_.c:$(OBJDIR)/branch.h \ |
| 690 | $(OBJDIR)/browse_.c:$(OBJDIR)/browse.h \ |
| 691 | $(OBJDIR)/captcha_.c:$(OBJDIR)/captcha.h \ |
| 692 | $(OBJDIR)/cgi_.c:$(OBJDIR)/cgi.h \ |
| 693 | $(OBJDIR)/checkin_.c:$(OBJDIR)/checkin.h \ |
| 694 | $(OBJDIR)/checkout_.c:$(OBJDIR)/checkout.h \ |
| 695 | $(OBJDIR)/clearsign_.c:$(OBJDIR)/clearsign.h \ |
| 696 | $(OBJDIR)/clone_.c:$(OBJDIR)/clone.h \ |
| 697 | $(OBJDIR)/comformat_.c:$(OBJDIR)/comformat.h \ |
| 698 | $(OBJDIR)/configure_.c:$(OBJDIR)/configure.h \ |
| 699 | $(OBJDIR)/content_.c:$(OBJDIR)/content.h \ |
| 700 | $(OBJDIR)/db_.c:$(OBJDIR)/db.h \ |
| 701 | $(OBJDIR)/delta_.c:$(OBJDIR)/delta.h \ |
| 702 | $(OBJDIR)/deltacmd_.c:$(OBJDIR)/deltacmd.h \ |
| 703 | $(OBJDIR)/descendants_.c:$(OBJDIR)/descendants.h \ |
| 704 | $(OBJDIR)/diff_.c:$(OBJDIR)/diff.h \ |
| 705 | $(OBJDIR)/diffcmd_.c:$(OBJDIR)/diffcmd.h \ |
| 706 | $(OBJDIR)/doc_.c:$(OBJDIR)/doc.h \ |
| 707 | $(OBJDIR)/encode_.c:$(OBJDIR)/encode.h \ |
| 708 | $(OBJDIR)/event_.c:$(OBJDIR)/event.h \ |
| 709 | $(OBJDIR)/export_.c:$(OBJDIR)/export.h \ |
| 710 | $(OBJDIR)/file_.c:$(OBJDIR)/file.h \ |
| 711 | $(OBJDIR)/finfo_.c:$(OBJDIR)/finfo.h \ |
| 712 | $(OBJDIR)/glob_.c:$(OBJDIR)/glob.h \ |
| 713 | $(OBJDIR)/graph_.c:$(OBJDIR)/graph.h \ |
| 714 | $(OBJDIR)/gzip_.c:$(OBJDIR)/gzip.h \ |
| 715 | $(OBJDIR)/http_.c:$(OBJDIR)/http.h \ |
| 716 | $(OBJDIR)/http_socket_.c:$(OBJDIR)/http_socket.h \ |
| 717 | $(OBJDIR)/http_ssl_.c:$(OBJDIR)/http_ssl.h \ |
| 718 | $(OBJDIR)/http_transport_.c:$(OBJDIR)/http_transport.h \ |
| 719 | $(OBJDIR)/import_.c:$(OBJDIR)/import.h \ |
| 720 | $(OBJDIR)/info_.c:$(OBJDIR)/info.h \ |
| 721 | $(OBJDIR)/json_.c:$(OBJDIR)/json.h \ |
| 722 | $(OBJDIR)/json_artifact_.c:$(OBJDIR)/json_artifact.h \ |
| 723 | $(OBJDIR)/json_branch_.c:$(OBJDIR)/json_branch.h \ |
| 724 | $(OBJDIR)/json_config_.c:$(OBJDIR)/json_config.h \ |
| 725 | $(OBJDIR)/json_diff_.c:$(OBJDIR)/json_diff.h \ |
| 726 | $(OBJDIR)/json_dir_.c:$(OBJDIR)/json_dir.h \ |
| 727 | $(OBJDIR)/json_finfo_.c:$(OBJDIR)/json_finfo.h \ |
| 728 | $(OBJDIR)/json_login_.c:$(OBJDIR)/json_login.h \ |
| 729 | $(OBJDIR)/json_query_.c:$(OBJDIR)/json_query.h \ |
| 730 | $(OBJDIR)/json_report_.c:$(OBJDIR)/json_report.h \ |
| 731 | $(OBJDIR)/json_tag_.c:$(OBJDIR)/json_tag.h \ |
| 732 | $(OBJDIR)/json_timeline_.c:$(OBJDIR)/json_timeline.h \ |
| 733 | $(OBJDIR)/json_user_.c:$(OBJDIR)/json_user.h \ |
| 734 | $(OBJDIR)/json_wiki_.c:$(OBJDIR)/json_wiki.h \ |
| 735 | $(OBJDIR)/leaf_.c:$(OBJDIR)/leaf.h \ |
| 736 | $(OBJDIR)/login_.c:$(OBJDIR)/login.h \ |
| 737 | $(OBJDIR)/main_.c:$(OBJDIR)/main.h \ |
| 738 | $(OBJDIR)/manifest_.c:$(OBJDIR)/manifest.h \ |
| 739 | $(OBJDIR)/markdown_.c:$(OBJDIR)/markdown.h \ |
| 740 | $(OBJDIR)/markdown_html_.c:$(OBJDIR)/markdown_html.h \ |
| 741 | $(OBJDIR)/md5_.c:$(OBJDIR)/md5.h \ |
| 742 | $(OBJDIR)/merge_.c:$(OBJDIR)/merge.h \ |
| 743 | $(OBJDIR)/merge3_.c:$(OBJDIR)/merge3.h \ |
| 744 | $(OBJDIR)/moderate_.c:$(OBJDIR)/moderate.h \ |
| 745 | $(OBJDIR)/name_.c:$(OBJDIR)/name.h \ |
| 746 | $(OBJDIR)/path_.c:$(OBJDIR)/path.h \ |
| 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 \ |
| 757 | $(OBJDIR)/sha1_.c:$(OBJDIR)/sha1.h \ |
| 758 | $(OBJDIR)/shun_.c:$(OBJDIR)/shun.h \ |
| 759 | $(OBJDIR)/skins_.c:$(OBJDIR)/skins.h \ |
| 760 | $(OBJDIR)/sqlcmd_.c:$(OBJDIR)/sqlcmd.h \ |
| 761 | $(OBJDIR)/stash_.c:$(OBJDIR)/stash.h \ |
| 762 | $(OBJDIR)/stat_.c:$(OBJDIR)/stat.h \ |
| 763 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 764 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 765 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 766 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 767 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 768 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 769 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 770 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 771 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| 772 | $(OBJDIR)/update_.c:$(OBJDIR)/update.h \ |
| 773 | $(OBJDIR)/url_.c:$(OBJDIR)/url.h \ |
| 774 | $(OBJDIR)/user_.c:$(OBJDIR)/user.h \ |
| 775 | $(OBJDIR)/utf8_.c:$(OBJDIR)/utf8.h \ |
| 776 | $(OBJDIR)/verify_.c:$(OBJDIR)/verify.h \ |
| 777 | $(OBJDIR)/vfile_.c:$(OBJDIR)/vfile.h \ |
| 778 | $(OBJDIR)/wiki_.c:$(OBJDIR)/wiki.h \ |
| 779 | $(OBJDIR)/wikiformat_.c:$(OBJDIR)/wikiformat.h \ |
| 780 | $(OBJDIR)/winhttp_.c:$(OBJDIR)/winhttp.h \ |
| 781 | $(OBJDIR)/wysiwyg_.c:$(OBJDIR)/wysiwyg.h \ |
| 782 | $(OBJDIR)/xfer_.c:$(OBJDIR)/xfer.h \ |
| 783 | $(OBJDIR)/xfersetup_.c:$(OBJDIR)/xfersetup.h \ |
| 784 | $(OBJDIR)/zip_.c:$(OBJDIR)/zip.h \ |
| 785 | $(SRCDIR)/sqlite3.h \ |
| 786 | $(SRCDIR)/th.h \ |
| 787 | $(OBJDIR)/VERSION.h |
| 788 | echo Done >$(OBJDIR)/headers |
| 789 | |
| 790 | $(OBJDIR)/headers: Makefile |
| 791 | |
| 792 | Makefile: |
| 793 |