Fossil SCM
diff -y: set the default width automatically based on the terminal width.
Commit
3504672187af59f07f25d8feed7f13fed464247fda9a03a8f7644af09bc35f25
Parent
d16d18b03ed0a0d…
9 files changed
+17
-31
+26
-1
+12
+1
+14
+10
-4
+12
+12
+10
+17
-31
| --- src/comformat.c | ||
| +++ src/comformat.c | ||
| @@ -19,16 +19,10 @@ | ||
| 19 | 19 | ** text on a TTY. |
| 20 | 20 | */ |
| 21 | 21 | #include "config.h" |
| 22 | 22 | #include "comformat.h" |
| 23 | 23 | #include <assert.h> |
| 24 | -#ifdef _WIN32 | |
| 25 | -# include <windows.h> | |
| 26 | -#else | |
| 27 | -# include <termios.h> | |
| 28 | -# include <sys/ioctl.h> | |
| 29 | -#endif | |
| 30 | 24 | |
| 31 | 25 | #if INTERFACE |
| 32 | 26 | #define COMMENT_PRINT_NONE ((u32)0x00000000) /* No flags = non-legacy. */ |
| 33 | 27 | #define COMMENT_PRINT_LEGACY ((u32)0x00000001) /* Use legacy algorithm. */ |
| 34 | 28 | #define COMMENT_PRINT_TRIM_CRLF ((u32)0x00000002) /* Trim leading CR/LF. */ |
| @@ -67,35 +61,27 @@ | ||
| 67 | 61 | */ |
| 68 | 62 | static int comment_set_maxchars( |
| 69 | 63 | int indent, |
| 70 | 64 | int *pMaxChars |
| 71 | 65 | ){ |
| 72 | -#if defined(_WIN32) | |
| 73 | - CONSOLE_SCREEN_BUFFER_INFO csbi; | |
| 74 | - memset(&csbi, 0, sizeof(CONSOLE_SCREEN_BUFFER_INFO)); | |
| 75 | - if( GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi) ){ | |
| 76 | - *pMaxChars = csbi.srWindow.Right - csbi.srWindow.Left - indent; | |
| 77 | - return 1; | |
| 78 | - } | |
| 79 | - return 0; | |
| 80 | -#elif defined(TIOCGWINSZ) | |
| 81 | - struct winsize w; | |
| 82 | - memset(&w, 0, sizeof(struct winsize)); | |
| 83 | - if( ioctl(0, TIOCGWINSZ, &w)!=-1 ){ | |
| 84 | - *pMaxChars = w.ws_col - indent; | |
| 85 | - return 1; | |
| 86 | - } | |
| 87 | - return 0; | |
| 88 | -#else | |
| 89 | - /* | |
| 90 | - ** Fallback to using more-or-less the "legacy semantics" of hard-coding | |
| 91 | - ** the maximum line length to a value reasonable for the vast majority | |
| 92 | - ** of supported systems. | |
| 93 | - */ | |
| 94 | - *pMaxChars = COMMENT_LEGACY_LINE_LENGTH - indent; | |
| 95 | - return -1; | |
| 96 | -#endif | |
| 66 | + struct TerminalSize ts; | |
| 67 | + if ( !terminal_get_size(&ts) ){ | |
| 68 | + return 0; | |
| 69 | + } | |
| 70 | + | |
| 71 | + if( ts.nColumns ){ | |
| 72 | + *pMaxChars = ts.nColumns - indent; | |
| 73 | + return 1; | |
| 74 | + }else{ | |
| 75 | + /* | |
| 76 | + ** Fallback to using more-or-less the "legacy semantics" of hard-coding | |
| 77 | + ** the maximum line length to a value reasonable for the vast majority | |
| 78 | + ** of supported systems. | |
| 79 | + */ | |
| 80 | + *pMaxChars = COMMENT_LEGACY_LINE_LENGTH - indent; | |
| 81 | + return -1; | |
| 82 | + } | |
| 97 | 83 | } |
| 98 | 84 | |
| 99 | 85 | /* |
| 100 | 86 | ** This function checks the current line being printed against the original |
| 101 | 87 | ** comment text. Upon matching, it updates the provided character and line |
| 102 | 88 |
| --- src/comformat.c | |
| +++ src/comformat.c | |
| @@ -19,16 +19,10 @@ | |
| 19 | ** text on a TTY. |
| 20 | */ |
| 21 | #include "config.h" |
| 22 | #include "comformat.h" |
| 23 | #include <assert.h> |
| 24 | #ifdef _WIN32 |
| 25 | # include <windows.h> |
| 26 | #else |
| 27 | # include <termios.h> |
| 28 | # include <sys/ioctl.h> |
| 29 | #endif |
| 30 | |
| 31 | #if INTERFACE |
| 32 | #define COMMENT_PRINT_NONE ((u32)0x00000000) /* No flags = non-legacy. */ |
| 33 | #define COMMENT_PRINT_LEGACY ((u32)0x00000001) /* Use legacy algorithm. */ |
| 34 | #define COMMENT_PRINT_TRIM_CRLF ((u32)0x00000002) /* Trim leading CR/LF. */ |
| @@ -67,35 +61,27 @@ | |
| 67 | */ |
| 68 | static int comment_set_maxchars( |
| 69 | int indent, |
| 70 | int *pMaxChars |
| 71 | ){ |
| 72 | #if defined(_WIN32) |
| 73 | CONSOLE_SCREEN_BUFFER_INFO csbi; |
| 74 | memset(&csbi, 0, sizeof(CONSOLE_SCREEN_BUFFER_INFO)); |
| 75 | if( GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi) ){ |
| 76 | *pMaxChars = csbi.srWindow.Right - csbi.srWindow.Left - indent; |
| 77 | return 1; |
| 78 | } |
| 79 | return 0; |
| 80 | #elif defined(TIOCGWINSZ) |
| 81 | struct winsize w; |
| 82 | memset(&w, 0, sizeof(struct winsize)); |
| 83 | if( ioctl(0, TIOCGWINSZ, &w)!=-1 ){ |
| 84 | *pMaxChars = w.ws_col - indent; |
| 85 | return 1; |
| 86 | } |
| 87 | return 0; |
| 88 | #else |
| 89 | /* |
| 90 | ** Fallback to using more-or-less the "legacy semantics" of hard-coding |
| 91 | ** the maximum line length to a value reasonable for the vast majority |
| 92 | ** of supported systems. |
| 93 | */ |
| 94 | *pMaxChars = COMMENT_LEGACY_LINE_LENGTH - indent; |
| 95 | return -1; |
| 96 | #endif |
| 97 | } |
| 98 | |
| 99 | /* |
| 100 | ** This function checks the current line being printed against the original |
| 101 | ** comment text. Upon matching, it updates the provided character and line |
| 102 |
| --- src/comformat.c | |
| +++ src/comformat.c | |
| @@ -19,16 +19,10 @@ | |
| 19 | ** text on a TTY. |
| 20 | */ |
| 21 | #include "config.h" |
| 22 | #include "comformat.h" |
| 23 | #include <assert.h> |
| 24 | |
| 25 | #if INTERFACE |
| 26 | #define COMMENT_PRINT_NONE ((u32)0x00000000) /* No flags = non-legacy. */ |
| 27 | #define COMMENT_PRINT_LEGACY ((u32)0x00000001) /* Use legacy algorithm. */ |
| 28 | #define COMMENT_PRINT_TRIM_CRLF ((u32)0x00000002) /* Trim leading CR/LF. */ |
| @@ -67,35 +61,27 @@ | |
| 61 | */ |
| 62 | static int comment_set_maxchars( |
| 63 | int indent, |
| 64 | int *pMaxChars |
| 65 | ){ |
| 66 | struct TerminalSize ts; |
| 67 | if ( !terminal_get_size(&ts) ){ |
| 68 | return 0; |
| 69 | } |
| 70 | |
| 71 | if( ts.nColumns ){ |
| 72 | *pMaxChars = ts.nColumns - indent; |
| 73 | return 1; |
| 74 | }else{ |
| 75 | /* |
| 76 | ** Fallback to using more-or-less the "legacy semantics" of hard-coding |
| 77 | ** the maximum line length to a value reasonable for the vast majority |
| 78 | ** of supported systems. |
| 79 | */ |
| 80 | *pMaxChars = COMMENT_LEGACY_LINE_LENGTH - indent; |
| 81 | return -1; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | /* |
| 86 | ** This function checks the current line being printed against the original |
| 87 | ** comment text. Upon matching, it updates the provided character and line |
| 88 |
+26
-1
| --- src/diff.c | ||
| +++ src/diff.c | ||
| @@ -1826,14 +1826,39 @@ | ||
| 1826 | 1826 | } |
| 1827 | 1827 | |
| 1828 | 1828 | /* |
| 1829 | 1829 | ** Extract the width of columns for side-by-side diff. Supply an |
| 1830 | 1830 | ** appropriate default if no width is given. |
| 1831 | +** | |
| 1832 | +** Calculate the default automatically, based on terminal's current width: | |
| 1833 | +** term-width = 2*diff-col + diff-marker + 1 | |
| 1834 | +** diff-col = lineno + lmargin + text-width + rmargin | |
| 1835 | +** | |
| 1836 | +** text-width = (term-width - diff-marker - 1)/2 - lineno - lmargin - rmargin | |
| 1831 | 1837 | */ |
| 1832 | 1838 | int diff_width(u64 diffFlags){ |
| 1833 | 1839 | int w = (diffFlags & DIFF_WIDTH_MASK)/(DIFF_CONTEXT_MASK+1); |
| 1834 | - if( w==0 ) w = 80; | |
| 1840 | + if( w==0 ){ | |
| 1841 | + static struct { | |
| 1842 | + unsigned int lineno, lmargin, text, rmargin, marker; | |
| 1843 | + } sbsW = { 5, 2, 0, 0, 3 }; | |
| 1844 | + const unsigned int wMin = 24, wMax = 132; | |
| 1845 | + unsigned int tw = terminal_get_width(80); | |
| 1846 | + unsigned int twMin = | |
| 1847 | + (wMin + sbsW.lineno + sbsW.lmargin + sbsW.rmargin)*2 + sbsW.marker + 1; | |
| 1848 | + unsigned int twMax = | |
| 1849 | + (wMax + sbsW.lineno + sbsW.lmargin + sbsW.rmargin)*2 + sbsW.marker + 1; | |
| 1850 | + | |
| 1851 | + if( tw<twMin ){ | |
| 1852 | + tw = twMin; | |
| 1853 | + }else if( tw>twMax ){ | |
| 1854 | + tw = twMax; | |
| 1855 | + } | |
| 1856 | + sbsW.text = | |
| 1857 | + (tw - sbsW.marker - 1)/2 - sbsW.lineno - sbsW.lmargin - sbsW.rmargin; | |
| 1858 | + w = sbsW.text; | |
| 1859 | + } | |
| 1835 | 1860 | return w; |
| 1836 | 1861 | } |
| 1837 | 1862 | |
| 1838 | 1863 | /* |
| 1839 | 1864 | ** Append the error message to pOut. |
| 1840 | 1865 |
| --- src/diff.c | |
| +++ src/diff.c | |
| @@ -1826,14 +1826,39 @@ | |
| 1826 | } |
| 1827 | |
| 1828 | /* |
| 1829 | ** Extract the width of columns for side-by-side diff. Supply an |
| 1830 | ** appropriate default if no width is given. |
| 1831 | */ |
| 1832 | int diff_width(u64 diffFlags){ |
| 1833 | int w = (diffFlags & DIFF_WIDTH_MASK)/(DIFF_CONTEXT_MASK+1); |
| 1834 | if( w==0 ) w = 80; |
| 1835 | return w; |
| 1836 | } |
| 1837 | |
| 1838 | /* |
| 1839 | ** Append the error message to pOut. |
| 1840 |
| --- src/diff.c | |
| +++ src/diff.c | |
| @@ -1826,14 +1826,39 @@ | |
| 1826 | } |
| 1827 | |
| 1828 | /* |
| 1829 | ** Extract the width of columns for side-by-side diff. Supply an |
| 1830 | ** appropriate default if no width is given. |
| 1831 | ** |
| 1832 | ** Calculate the default automatically, based on terminal's current width: |
| 1833 | ** term-width = 2*diff-col + diff-marker + 1 |
| 1834 | ** diff-col = lineno + lmargin + text-width + rmargin |
| 1835 | ** |
| 1836 | ** text-width = (term-width - diff-marker - 1)/2 - lineno - lmargin - rmargin |
| 1837 | */ |
| 1838 | int diff_width(u64 diffFlags){ |
| 1839 | int w = (diffFlags & DIFF_WIDTH_MASK)/(DIFF_CONTEXT_MASK+1); |
| 1840 | if( w==0 ){ |
| 1841 | static struct { |
| 1842 | unsigned int lineno, lmargin, text, rmargin, marker; |
| 1843 | } sbsW = { 5, 2, 0, 0, 3 }; |
| 1844 | const unsigned int wMin = 24, wMax = 132; |
| 1845 | unsigned int tw = terminal_get_width(80); |
| 1846 | unsigned int twMin = |
| 1847 | (wMin + sbsW.lineno + sbsW.lmargin + sbsW.rmargin)*2 + sbsW.marker + 1; |
| 1848 | unsigned int twMax = |
| 1849 | (wMax + sbsW.lineno + sbsW.lmargin + sbsW.rmargin)*2 + sbsW.marker + 1; |
| 1850 | |
| 1851 | if( tw<twMin ){ |
| 1852 | tw = twMin; |
| 1853 | }else if( tw>twMax ){ |
| 1854 | tw = twMax; |
| 1855 | } |
| 1856 | sbsW.text = |
| 1857 | (tw - sbsW.marker - 1)/2 - sbsW.lineno - sbsW.lmargin - sbsW.rmargin; |
| 1858 | w = sbsW.text; |
| 1859 | } |
| 1860 | return w; |
| 1861 | } |
| 1862 | |
| 1863 | /* |
| 1864 | ** Append the error message to pOut. |
| 1865 |
+12
| --- src/main.mk | ||
| +++ src/main.mk | ||
| @@ -131,10 +131,11 @@ | ||
| 131 | 131 | $(SRCDIR)/statrep.c \ |
| 132 | 132 | $(SRCDIR)/style.c \ |
| 133 | 133 | $(SRCDIR)/sync.c \ |
| 134 | 134 | $(SRCDIR)/tag.c \ |
| 135 | 135 | $(SRCDIR)/tar.c \ |
| 136 | + $(SRCDIR)/terminal.c \ | |
| 136 | 137 | $(SRCDIR)/th_main.c \ |
| 137 | 138 | $(SRCDIR)/timeline.c \ |
| 138 | 139 | $(SRCDIR)/tkt.c \ |
| 139 | 140 | $(SRCDIR)/tktsetup.c \ |
| 140 | 141 | $(SRCDIR)/undo.c \ |
| @@ -364,10 +365,11 @@ | ||
| 364 | 365 | $(OBJDIR)/statrep_.c \ |
| 365 | 366 | $(OBJDIR)/style_.c \ |
| 366 | 367 | $(OBJDIR)/sync_.c \ |
| 367 | 368 | $(OBJDIR)/tag_.c \ |
| 368 | 369 | $(OBJDIR)/tar_.c \ |
| 370 | + $(OBJDIR)/terminal_.c \ | |
| 369 | 371 | $(OBJDIR)/th_main_.c \ |
| 370 | 372 | $(OBJDIR)/timeline_.c \ |
| 371 | 373 | $(OBJDIR)/tkt_.c \ |
| 372 | 374 | $(OBJDIR)/tktsetup_.c \ |
| 373 | 375 | $(OBJDIR)/undo_.c \ |
| @@ -506,10 +508,11 @@ | ||
| 506 | 508 | $(OBJDIR)/statrep.o \ |
| 507 | 509 | $(OBJDIR)/style.o \ |
| 508 | 510 | $(OBJDIR)/sync.o \ |
| 509 | 511 | $(OBJDIR)/tag.o \ |
| 510 | 512 | $(OBJDIR)/tar.o \ |
| 513 | + $(OBJDIR)/terminal.o \ | |
| 511 | 514 | $(OBJDIR)/th_main.o \ |
| 512 | 515 | $(OBJDIR)/timeline.o \ |
| 513 | 516 | $(OBJDIR)/tkt.o \ |
| 514 | 517 | $(OBJDIR)/tktsetup.o \ |
| 515 | 518 | $(OBJDIR)/undo.o \ |
| @@ -843,10 +846,11 @@ | ||
| 843 | 846 | $(OBJDIR)/statrep_.c:$(OBJDIR)/statrep.h \ |
| 844 | 847 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 845 | 848 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 846 | 849 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 847 | 850 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 851 | + $(OBJDIR)/terminal_.c:$(OBJDIR)/terminal.h \ | |
| 848 | 852 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 849 | 853 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 850 | 854 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 851 | 855 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 852 | 856 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| @@ -1808,10 +1812,18 @@ | ||
| 1808 | 1812 | |
| 1809 | 1813 | $(OBJDIR)/tar.o: $(OBJDIR)/tar_.c $(OBJDIR)/tar.h $(SRCDIR)/config.h |
| 1810 | 1814 | $(XTCC) -o $(OBJDIR)/tar.o -c $(OBJDIR)/tar_.c |
| 1811 | 1815 | |
| 1812 | 1816 | $(OBJDIR)/tar.h: $(OBJDIR)/headers |
| 1817 | + | |
| 1818 | +$(OBJDIR)/terminal_.c: $(SRCDIR)/terminal.c $(OBJDIR)/translate | |
| 1819 | + $(OBJDIR)/translate $(SRCDIR)/terminal.c >$@ | |
| 1820 | + | |
| 1821 | +$(OBJDIR)/terminal.o: $(OBJDIR)/terminal_.c $(OBJDIR)/terminal.h $(SRCDIR)/config.h | |
| 1822 | + $(XTCC) -o $(OBJDIR)/terminal.o -c $(OBJDIR)/terminal_.c | |
| 1823 | + | |
| 1824 | +$(OBJDIR)/terminal.h: $(OBJDIR)/headers | |
| 1813 | 1825 | |
| 1814 | 1826 | $(OBJDIR)/th_main_.c: $(SRCDIR)/th_main.c $(OBJDIR)/translate |
| 1815 | 1827 | $(OBJDIR)/translate $(SRCDIR)/th_main.c >$@ |
| 1816 | 1828 | |
| 1817 | 1829 | $(OBJDIR)/th_main.o: $(OBJDIR)/th_main_.c $(OBJDIR)/th_main.h $(SRCDIR)/config.h |
| 1818 | 1830 |
| --- src/main.mk | |
| +++ src/main.mk | |
| @@ -131,10 +131,11 @@ | |
| 131 | $(SRCDIR)/statrep.c \ |
| 132 | $(SRCDIR)/style.c \ |
| 133 | $(SRCDIR)/sync.c \ |
| 134 | $(SRCDIR)/tag.c \ |
| 135 | $(SRCDIR)/tar.c \ |
| 136 | $(SRCDIR)/th_main.c \ |
| 137 | $(SRCDIR)/timeline.c \ |
| 138 | $(SRCDIR)/tkt.c \ |
| 139 | $(SRCDIR)/tktsetup.c \ |
| 140 | $(SRCDIR)/undo.c \ |
| @@ -364,10 +365,11 @@ | |
| 364 | $(OBJDIR)/statrep_.c \ |
| 365 | $(OBJDIR)/style_.c \ |
| 366 | $(OBJDIR)/sync_.c \ |
| 367 | $(OBJDIR)/tag_.c \ |
| 368 | $(OBJDIR)/tar_.c \ |
| 369 | $(OBJDIR)/th_main_.c \ |
| 370 | $(OBJDIR)/timeline_.c \ |
| 371 | $(OBJDIR)/tkt_.c \ |
| 372 | $(OBJDIR)/tktsetup_.c \ |
| 373 | $(OBJDIR)/undo_.c \ |
| @@ -506,10 +508,11 @@ | |
| 506 | $(OBJDIR)/statrep.o \ |
| 507 | $(OBJDIR)/style.o \ |
| 508 | $(OBJDIR)/sync.o \ |
| 509 | $(OBJDIR)/tag.o \ |
| 510 | $(OBJDIR)/tar.o \ |
| 511 | $(OBJDIR)/th_main.o \ |
| 512 | $(OBJDIR)/timeline.o \ |
| 513 | $(OBJDIR)/tkt.o \ |
| 514 | $(OBJDIR)/tktsetup.o \ |
| 515 | $(OBJDIR)/undo.o \ |
| @@ -843,10 +846,11 @@ | |
| 843 | $(OBJDIR)/statrep_.c:$(OBJDIR)/statrep.h \ |
| 844 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 845 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 846 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 847 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 848 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 849 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 850 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 851 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 852 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| @@ -1808,10 +1812,18 @@ | |
| 1808 | |
| 1809 | $(OBJDIR)/tar.o: $(OBJDIR)/tar_.c $(OBJDIR)/tar.h $(SRCDIR)/config.h |
| 1810 | $(XTCC) -o $(OBJDIR)/tar.o -c $(OBJDIR)/tar_.c |
| 1811 | |
| 1812 | $(OBJDIR)/tar.h: $(OBJDIR)/headers |
| 1813 | |
| 1814 | $(OBJDIR)/th_main_.c: $(SRCDIR)/th_main.c $(OBJDIR)/translate |
| 1815 | $(OBJDIR)/translate $(SRCDIR)/th_main.c >$@ |
| 1816 | |
| 1817 | $(OBJDIR)/th_main.o: $(OBJDIR)/th_main_.c $(OBJDIR)/th_main.h $(SRCDIR)/config.h |
| 1818 |
| --- src/main.mk | |
| +++ src/main.mk | |
| @@ -131,10 +131,11 @@ | |
| 131 | $(SRCDIR)/statrep.c \ |
| 132 | $(SRCDIR)/style.c \ |
| 133 | $(SRCDIR)/sync.c \ |
| 134 | $(SRCDIR)/tag.c \ |
| 135 | $(SRCDIR)/tar.c \ |
| 136 | $(SRCDIR)/terminal.c \ |
| 137 | $(SRCDIR)/th_main.c \ |
| 138 | $(SRCDIR)/timeline.c \ |
| 139 | $(SRCDIR)/tkt.c \ |
| 140 | $(SRCDIR)/tktsetup.c \ |
| 141 | $(SRCDIR)/undo.c \ |
| @@ -364,10 +365,11 @@ | |
| 365 | $(OBJDIR)/statrep_.c \ |
| 366 | $(OBJDIR)/style_.c \ |
| 367 | $(OBJDIR)/sync_.c \ |
| 368 | $(OBJDIR)/tag_.c \ |
| 369 | $(OBJDIR)/tar_.c \ |
| 370 | $(OBJDIR)/terminal_.c \ |
| 371 | $(OBJDIR)/th_main_.c \ |
| 372 | $(OBJDIR)/timeline_.c \ |
| 373 | $(OBJDIR)/tkt_.c \ |
| 374 | $(OBJDIR)/tktsetup_.c \ |
| 375 | $(OBJDIR)/undo_.c \ |
| @@ -506,10 +508,11 @@ | |
| 508 | $(OBJDIR)/statrep.o \ |
| 509 | $(OBJDIR)/style.o \ |
| 510 | $(OBJDIR)/sync.o \ |
| 511 | $(OBJDIR)/tag.o \ |
| 512 | $(OBJDIR)/tar.o \ |
| 513 | $(OBJDIR)/terminal.o \ |
| 514 | $(OBJDIR)/th_main.o \ |
| 515 | $(OBJDIR)/timeline.o \ |
| 516 | $(OBJDIR)/tkt.o \ |
| 517 | $(OBJDIR)/tktsetup.o \ |
| 518 | $(OBJDIR)/undo.o \ |
| @@ -843,10 +846,11 @@ | |
| 846 | $(OBJDIR)/statrep_.c:$(OBJDIR)/statrep.h \ |
| 847 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 848 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 849 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 850 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 851 | $(OBJDIR)/terminal_.c:$(OBJDIR)/terminal.h \ |
| 852 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 853 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 854 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 855 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 856 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| @@ -1808,10 +1812,18 @@ | |
| 1812 | |
| 1813 | $(OBJDIR)/tar.o: $(OBJDIR)/tar_.c $(OBJDIR)/tar.h $(SRCDIR)/config.h |
| 1814 | $(XTCC) -o $(OBJDIR)/tar.o -c $(OBJDIR)/tar_.c |
| 1815 | |
| 1816 | $(OBJDIR)/tar.h: $(OBJDIR)/headers |
| 1817 | |
| 1818 | $(OBJDIR)/terminal_.c: $(SRCDIR)/terminal.c $(OBJDIR)/translate |
| 1819 | $(OBJDIR)/translate $(SRCDIR)/terminal.c >$@ |
| 1820 | |
| 1821 | $(OBJDIR)/terminal.o: $(OBJDIR)/terminal_.c $(OBJDIR)/terminal.h $(SRCDIR)/config.h |
| 1822 | $(XTCC) -o $(OBJDIR)/terminal.o -c $(OBJDIR)/terminal_.c |
| 1823 | |
| 1824 | $(OBJDIR)/terminal.h: $(OBJDIR)/headers |
| 1825 | |
| 1826 | $(OBJDIR)/th_main_.c: $(SRCDIR)/th_main.c $(OBJDIR)/translate |
| 1827 | $(OBJDIR)/translate $(SRCDIR)/th_main.c >$@ |
| 1828 | |
| 1829 | $(OBJDIR)/th_main.o: $(OBJDIR)/th_main_.c $(OBJDIR)/th_main.h $(SRCDIR)/config.h |
| 1830 |
+1
| --- src/makemake.tcl | ||
| +++ src/makemake.tcl | ||
| @@ -141,10 +141,11 @@ | ||
| 141 | 141 | statrep |
| 142 | 142 | style |
| 143 | 143 | sync |
| 144 | 144 | tag |
| 145 | 145 | tar |
| 146 | + terminal | |
| 146 | 147 | th_main |
| 147 | 148 | timeline |
| 148 | 149 | tkt |
| 149 | 150 | tktsetup |
| 150 | 151 | undo |
| 151 | 152 | |
| 152 | 153 | ADDED src/terminal.c |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -141,10 +141,11 @@ | |
| 141 | statrep |
| 142 | style |
| 143 | sync |
| 144 | tag |
| 145 | tar |
| 146 | th_main |
| 147 | timeline |
| 148 | tkt |
| 149 | tktsetup |
| 150 | undo |
| 151 | |
| 152 | DDED src/terminal.c |
| --- src/makemake.tcl | |
| +++ src/makemake.tcl | |
| @@ -141,10 +141,11 @@ | |
| 141 | statrep |
| 142 | style |
| 143 | sync |
| 144 | tag |
| 145 | tar |
| 146 | terminal |
| 147 | th_main |
| 148 | timeline |
| 149 | tkt |
| 150 | tktsetup |
| 151 | undo |
| 152 | |
| 153 | DDED src/terminal.c |
+14
| --- a/src/terminal.c | ||
| +++ b/src/terminal.c | ||
| @@ -0,0 +1,14 @@ | ||
| 1 | +COMMAND: test-terminal-size | |
| 2 | +** | |
| 3 | +** Show the size of the terminal window from which the command is launched | |
| 4 | +** as two integers, the width in characters and the height in lines. | |
| 5 | +** | |
| 6 | +** If the size cannot be determined, two zeros are shown. | |
| 7 | +*/ | |
| 8 | +void test_terminal_size_cmd(void* Technically, this infosuch is supported; set; | |
| 9 | + fossil_print("%d %d\nchar *zNoC!=-1!=-1struct TSize *t) | |
| 10 | + | |
| 11 | +{ | |
| 12 | + struct | |
| 13 | +{ | |
| 14 | + struct |
| --- a/src/terminal.c | |
| +++ b/src/terminal.c | |
| @@ -0,0 +1,14 @@ | |
| --- a/src/terminal.c | |
| +++ b/src/terminal.c | |
| @@ -0,0 +1,14 @@ | |
| 1 | COMMAND: test-terminal-size |
| 2 | ** |
| 3 | ** Show the size of the terminal window from which the command is launched |
| 4 | ** as two integers, the width in characters and the height in lines. |
| 5 | ** |
| 6 | ** If the size cannot be determined, two zeros are shown. |
| 7 | */ |
| 8 | void test_terminal_size_cmd(void* Technically, this infosuch is supported; set; |
| 9 | fossil_print("%d %d\nchar *zNoC!=-1!=-1struct TSize *t) |
| 10 | |
| 11 | { |
| 12 | struct |
| 13 | { |
| 14 | struct |
+10
-4
| --- win/Makefile.dmc | ||
| +++ win/Makefile.dmc | ||
| @@ -28,13 +28,13 @@ | ||
| 28 | 28 | |
| 29 | 29 | SQLITE_OPTIONS = -DNDEBUG=1 -DSQLITE_DQS=0 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_MEMSTATUS=0 -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1 -DSQLITE_LIKE_DOESNT_MATCH_BLOBS -DSQLITE_OMIT_DECLTYPE -DSQLITE_OMIT_DEPRECATED -DSQLITE_OMIT_GET_TABLE -DSQLITE_OMIT_PROGRESS_CALLBACK -DSQLITE_OMIT_SHARED_CACHE -DSQLITE_OMIT_LOAD_EXTENSION -DSQLITE_MAX_EXPR_DEPTH=0 -DSQLITE_USE_ALLOCA -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_EXPLAIN_COMMENTS -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_STMTVTAB -DSQLITE_HAVE_ZLIB -DSQLITE_INTROSPECTION_PRAGMAS -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_TRUSTED_SCHEMA=0 |
| 30 | 30 | |
| 31 | 31 | SHELL_OPTIONS = -DNDEBUG=1 -DSQLITE_DQS=0 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_MEMSTATUS=0 -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1 -DSQLITE_LIKE_DOESNT_MATCH_BLOBS -DSQLITE_OMIT_DECLTYPE -DSQLITE_OMIT_DEPRECATED -DSQLITE_OMIT_GET_TABLE -DSQLITE_OMIT_PROGRESS_CALLBACK -DSQLITE_OMIT_SHARED_CACHE -DSQLITE_OMIT_LOAD_EXTENSION -DSQLITE_MAX_EXPR_DEPTH=0 -DSQLITE_USE_ALLOCA -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_EXPLAIN_COMMENTS -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_STMTVTAB -DSQLITE_HAVE_ZLIB -DSQLITE_INTROSPECTION_PRAGMAS -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_TRUSTED_SCHEMA=0 -Dmain=sqlite3_shell -DSQLITE_SHELL_IS_UTF8=1 -DSQLITE_OMIT_LOAD_EXTENSION=1 -DUSE_SYSTEM_SQLITE=$(USE_SYSTEM_SQLITE) -DSQLITE_SHELL_DBNAME_PROC=sqlcmd_get_dbname -DSQLITE_SHELL_INIT_PROC=sqlcmd_init_proc -Daccess=file_access -Dsystem=fossil_system -Dgetenv=fossil_getenv -Dfopen=fossil_fopen |
| 32 | 32 | |
| 33 | -SRC = add_.c alerts_.c allrepo_.c attach_.c backlink_.c backoffice_.c bag_.c bisect_.c blob_.c branch_.c browse_.c builtin_.c bundle_.c cache_.c capabilities_.c captcha_.c cgi_.c checkin_.c checkout_.c clearsign_.c clone_.c comformat_.c configure_.c content_.c cookies_.c db_.c delta_.c deltacmd_.c deltafunc_.c descendants_.c diff_.c diffcmd_.c dispatch_.c doc_.c encode_.c etag_.c event_.c export_.c extcgi_.c file_.c finfo_.c foci_.c forum_.c fshell_.c fusefs_.c fuzz_.c glob_.c graph_.c gzip_.c hname_.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_status_.c json_tag_.c json_timeline_.c json_user_.c json_wiki_.c leaf_.c loadctrl_.c login_.c lookslike_.c main_.c manifest_.c markdown_.c markdown_html_.c md5_.c merge_.c merge3_.c moderate_.c name_.c path_.c piechart_.c pivot_.c popen_.c pqueue_.c printf_.c publish_.c purge_.c rebuild_.c regexp_.c repolist_.c report_.c rss_.c schema_.c search_.c security_audit_.c setup_.c setupuser_.c sha1_.c sha1hard_.c sha3_.c shun_.c sitemap_.c skins_.c smtp_.c sqlcmd_.c stash_.c stat_.c statrep_.c style_.c sync_.c tag_.c tar_.c th_main_.c timeline_.c tkt_.c tktsetup_.c undo_.c unicode_.c unversioned_.c update_.c url_.c user_.c utf8_.c util_.c verify_.c vfile_.c webmail_.c wiki_.c wikiformat_.c winfile_.c winhttp_.c wysiwyg_.c xfer_.c xfersetup_.c zip_.c | |
| 33 | +SRC = add_.c alerts_.c allrepo_.c attach_.c backlink_.c backoffice_.c bag_.c bisect_.c blob_.c branch_.c browse_.c builtin_.c bundle_.c cache_.c capabilities_.c captcha_.c cgi_.c checkin_.c checkout_.c clearsign_.c clone_.c comformat_.c configure_.c content_.c cookies_.c db_.c delta_.c deltacmd_.c deltafunc_.c descendants_.c diff_.c diffcmd_.c dispatch_.c doc_.c encode_.c etag_.c event_.c export_.c extcgi_.c file_.c finfo_.c foci_.c forum_.c fshell_.c fusefs_.c fuzz_.c glob_.c graph_.c gzip_.c hname_.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_status_.c json_tag_.c json_timeline_.c json_user_.c json_wiki_.c leaf_.c loadctrl_.c login_.c lookslike_.c main_.c manifest_.c markdown_.c markdown_html_.c md5_.c merge_.c merge3_.c moderate_.c name_.c path_.c piechart_.c pivot_.c popen_.c pqueue_.c printf_.c publish_.c purge_.c rebuild_.c regexp_.c repolist_.c report_.c rss_.c schema_.c search_.c security_audit_.c setup_.c setupuser_.c sha1_.c sha1hard_.c sha3_.c shun_.c sitemap_.c skins_.c smtp_.c sqlcmd_.c stash_.c stat_.c statrep_.c style_.c sync_.c tag_.c tar_.c terminal_.c th_main_.c timeline_.c tkt_.c tktsetup_.c undo_.c unicode_.c unversioned_.c update_.c url_.c user_.c utf8_.c util_.c verify_.c vfile_.c webmail_.c wiki_.c wikiformat_.c winfile_.c winhttp_.c wysiwyg_.c xfer_.c xfersetup_.c zip_.c | |
| 34 | 34 | |
| 35 | -OBJ = $(OBJDIR)\add$O $(OBJDIR)\alerts$O $(OBJDIR)\allrepo$O $(OBJDIR)\attach$O $(OBJDIR)\backlink$O $(OBJDIR)\backoffice$O $(OBJDIR)\bag$O $(OBJDIR)\bisect$O $(OBJDIR)\blob$O $(OBJDIR)\branch$O $(OBJDIR)\browse$O $(OBJDIR)\builtin$O $(OBJDIR)\bundle$O $(OBJDIR)\cache$O $(OBJDIR)\capabilities$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)\cookies$O $(OBJDIR)\db$O $(OBJDIR)\delta$O $(OBJDIR)\deltacmd$O $(OBJDIR)\deltafunc$O $(OBJDIR)\descendants$O $(OBJDIR)\diff$O $(OBJDIR)\diffcmd$O $(OBJDIR)\dispatch$O $(OBJDIR)\doc$O $(OBJDIR)\encode$O $(OBJDIR)\etag$O $(OBJDIR)\event$O $(OBJDIR)\export$O $(OBJDIR)\extcgi$O $(OBJDIR)\file$O $(OBJDIR)\finfo$O $(OBJDIR)\foci$O $(OBJDIR)\forum$O $(OBJDIR)\fshell$O $(OBJDIR)\fusefs$O $(OBJDIR)\fuzz$O $(OBJDIR)\glob$O $(OBJDIR)\graph$O $(OBJDIR)\gzip$O $(OBJDIR)\hname$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_status$O $(OBJDIR)\json_tag$O $(OBJDIR)\json_timeline$O $(OBJDIR)\json_user$O $(OBJDIR)\json_wiki$O $(OBJDIR)\leaf$O $(OBJDIR)\loadctrl$O $(OBJDIR)\login$O $(OBJDIR)\lookslike$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)\piechart$O $(OBJDIR)\pivot$O $(OBJDIR)\popen$O $(OBJDIR)\pqueue$O $(OBJDIR)\printf$O $(OBJDIR)\publish$O $(OBJDIR)\purge$O $(OBJDIR)\rebuild$O $(OBJDIR)\regexp$O $(OBJDIR)\repolist$O $(OBJDIR)\report$O $(OBJDIR)\rss$O $(OBJDIR)\schema$O $(OBJDIR)\search$O $(OBJDIR)\security_audit$O $(OBJDIR)\setup$O $(OBJDIR)\setupuser$O $(OBJDIR)\sha1$O $(OBJDIR)\sha1hard$O $(OBJDIR)\sha3$O $(OBJDIR)\shun$O $(OBJDIR)\sitemap$O $(OBJDIR)\skins$O $(OBJDIR)\smtp$O $(OBJDIR)\sqlcmd$O $(OBJDIR)\stash$O $(OBJDIR)\stat$O $(OBJDIR)\statrep$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)\unicode$O $(OBJDIR)\unversioned$O $(OBJDIR)\update$O $(OBJDIR)\url$O $(OBJDIR)\user$O $(OBJDIR)\utf8$O $(OBJDIR)\util$O $(OBJDIR)\verify$O $(OBJDIR)\vfile$O $(OBJDIR)\webmail$O $(OBJDIR)\wiki$O $(OBJDIR)\wikiformat$O $(OBJDIR)\winfile$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 | |
| 35 | +OBJ = $(OBJDIR)\add$O $(OBJDIR)\alerts$O $(OBJDIR)\allrepo$O $(OBJDIR)\attach$O $(OBJDIR)\backlink$O $(OBJDIR)\backoffice$O $(OBJDIR)\bag$O $(OBJDIR)\bisect$O $(OBJDIR)\blob$O $(OBJDIR)\branch$O $(OBJDIR)\browse$O $(OBJDIR)\builtin$O $(OBJDIR)\bundle$O $(OBJDIR)\cache$O $(OBJDIR)\capabilities$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)\cookies$O $(OBJDIR)\db$O $(OBJDIR)\delta$O $(OBJDIR)\deltacmd$O $(OBJDIR)\deltafunc$O $(OBJDIR)\descendants$O $(OBJDIR)\diff$O $(OBJDIR)\diffcmd$O $(OBJDIR)\dispatch$O $(OBJDIR)\doc$O $(OBJDIR)\encode$O $(OBJDIR)\etag$O $(OBJDIR)\event$O $(OBJDIR)\export$O $(OBJDIR)\extcgi$O $(OBJDIR)\file$O $(OBJDIR)\finfo$O $(OBJDIR)\foci$O $(OBJDIR)\forum$O $(OBJDIR)\fshell$O $(OBJDIR)\fusefs$O $(OBJDIR)\fuzz$O $(OBJDIR)\glob$O $(OBJDIR)\graph$O $(OBJDIR)\gzip$O $(OBJDIR)\hname$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_status$O $(OBJDIR)\json_tag$O $(OBJDIR)\json_timeline$O $(OBJDIR)\json_user$O $(OBJDIR)\json_wiki$O $(OBJDIR)\leaf$O $(OBJDIR)\loadctrl$O $(OBJDIR)\login$O $(OBJDIR)\lookslike$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)\piechart$O $(OBJDIR)\pivot$O $(OBJDIR)\popen$O $(OBJDIR)\pqueue$O $(OBJDIR)\printf$O $(OBJDIR)\publish$O $(OBJDIR)\purge$O $(OBJDIR)\rebuild$O $(OBJDIR)\regexp$O $(OBJDIR)\repolist$O $(OBJDIR)\report$O $(OBJDIR)\rss$O $(OBJDIR)\schema$O $(OBJDIR)\search$O $(OBJDIR)\security_audit$O $(OBJDIR)\setup$O $(OBJDIR)\setupuser$O $(OBJDIR)\sha1$O $(OBJDIR)\sha1hard$O $(OBJDIR)\sha3$O $(OBJDIR)\shun$O $(OBJDIR)\sitemap$O $(OBJDIR)\skins$O $(OBJDIR)\smtp$O $(OBJDIR)\sqlcmd$O $(OBJDIR)\stash$O $(OBJDIR)\stat$O $(OBJDIR)\statrep$O $(OBJDIR)\style$O $(OBJDIR)\sync$O $(OBJDIR)\tag$O $(OBJDIR)\tar$O $(OBJDIR)\terminal$O $(OBJDIR)\th_main$O $(OBJDIR)\timeline$O $(OBJDIR)\tkt$O $(OBJDIR)\tktsetup$O $(OBJDIR)\undo$O $(OBJDIR)\unicode$O $(OBJDIR)\unversioned$O $(OBJDIR)\update$O $(OBJDIR)\url$O $(OBJDIR)\user$O $(OBJDIR)\utf8$O $(OBJDIR)\util$O $(OBJDIR)\verify$O $(OBJDIR)\vfile$O $(OBJDIR)\webmail$O $(OBJDIR)\wiki$O $(OBJDIR)\wikiformat$O $(OBJDIR)\winfile$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 | |
| 36 | 36 | |
| 37 | 37 | |
| 38 | 38 | RC=$(DMDIR)\bin\rcc |
| 39 | 39 | RCFLAGS=-32 -w1 -I$(SRCDIR) /D__DMC__ |
| 40 | 40 | |
| @@ -49,11 +49,11 @@ | ||
| 49 | 49 | |
| 50 | 50 | $(OBJDIR)\fossil.res: $B\win\fossil.rc |
| 51 | 51 | $(RC) $(RCFLAGS) -o$@ $** |
| 52 | 52 | |
| 53 | 53 | $(OBJDIR)\link: $B\win\Makefile.dmc $(OBJDIR)\fossil.res |
| 54 | - +echo add alerts allrepo attach backlink backoffice bag bisect blob branch browse builtin bundle cache capabilities captcha cgi checkin checkout clearsign clone comformat configure content cookies db delta deltacmd deltafunc descendants diff diffcmd dispatch doc encode etag event export extcgi file finfo foci forum fshell fusefs fuzz glob graph gzip hname 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_status json_tag json_timeline json_user json_wiki leaf loadctrl login lookslike main manifest markdown markdown_html md5 merge merge3 moderate name path piechart pivot popen pqueue printf publish purge rebuild regexp repolist report rss schema search security_audit setup setupuser sha1 sha1hard sha3 shun sitemap skins smtp sqlcmd stash stat statrep style sync tag tar th_main timeline tkt tktsetup undo unicode unversioned update url user utf8 util verify vfile webmail wiki wikiformat winfile winhttp wysiwyg xfer xfersetup zip shell sqlite3 th th_lang > $@ | |
| 54 | + +echo add alerts allrepo attach backlink backoffice bag bisect blob branch browse builtin bundle cache capabilities captcha cgi checkin checkout clearsign clone comformat configure content cookies db delta deltacmd deltafunc descendants diff diffcmd dispatch doc encode etag event export extcgi file finfo foci forum fshell fusefs fuzz glob graph gzip hname 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_status json_tag json_timeline json_user json_wiki leaf loadctrl login lookslike main manifest markdown markdown_html md5 merge merge3 moderate name path piechart pivot popen pqueue printf publish purge rebuild regexp repolist report rss schema search security_audit setup setupuser sha1 sha1hard sha3 shun sitemap skins smtp sqlcmd stash stat statrep style sync tag tar terminal th_main timeline tkt tktsetup undo unicode unversioned update url user utf8 util verify vfile webmail wiki wikiformat winfile winhttp wysiwyg xfer xfersetup zip shell sqlite3 th th_lang > $@ | |
| 55 | 55 | +echo fossil >> $@ |
| 56 | 56 | +echo fossil >> $@ |
| 57 | 57 | +echo $(LIBS) >> $@ |
| 58 | 58 | +echo. >> $@ |
| 59 | 59 | +echo fossil >> $@ |
| @@ -830,10 +830,16 @@ | ||
| 830 | 830 | $(OBJDIR)\tar$O : tar_.c tar.h |
| 831 | 831 | $(TCC) -o$@ -c tar_.c |
| 832 | 832 | |
| 833 | 833 | tar_.c : $(SRCDIR)\tar.c |
| 834 | 834 | +translate$E $** > $@ |
| 835 | + | |
| 836 | +$(OBJDIR)\terminal$O : terminal_.c terminal.h | |
| 837 | + $(TCC) -o$@ -c terminal_.c | |
| 838 | + | |
| 839 | +terminal_.c : $(SRCDIR)\terminal.c | |
| 840 | + +translate$E $** > $@ | |
| 835 | 841 | |
| 836 | 842 | $(OBJDIR)\th_main$O : th_main_.c th_main.h |
| 837 | 843 | $(TCC) -o$@ -c th_main_.c |
| 838 | 844 | |
| 839 | 845 | th_main_.c : $(SRCDIR)\th_main.c |
| @@ -970,7 +976,7 @@ | ||
| 970 | 976 | |
| 971 | 977 | zip_.c : $(SRCDIR)\zip.c |
| 972 | 978 | +translate$E $** > $@ |
| 973 | 979 | |
| 974 | 980 | headers: makeheaders$E page_index.h builtin_data.h default_css.h VERSION.h |
| 975 | - +makeheaders$E add_.c:add.h alerts_.c:alerts.h allrepo_.c:allrepo.h attach_.c:attach.h backlink_.c:backlink.h backoffice_.c:backoffice.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h builtin_.c:builtin.h bundle_.c:bundle.h cache_.c:cache.h capabilities_.c:capabilities.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 cookies_.c:cookies.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h deltafunc_.c:deltafunc.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h dispatch_.c:dispatch.h doc_.c:doc.h encode_.c:encode.h etag_.c:etag.h event_.c:event.h export_.c:export.h extcgi_.c:extcgi.h file_.c:file.h finfo_.c:finfo.h foci_.c:foci.h forum_.c:forum.h fshell_.c:fshell.h fusefs_.c:fusefs.h fuzz_.c:fuzz.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h hname_.c:hname.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_status_.c:json_status.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 loadctrl_.c:loadctrl.h login_.c:login.h lookslike_.c:lookslike.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 piechart_.c:piechart.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h publish_.c:publish.h purge_.c:purge.h rebuild_.c:rebuild.h regexp_.c:regexp.h repolist_.c:repolist.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h security_audit_.c:security_audit.h setup_.c:setup.h setupuser_.c:setupuser.h sha1_.c:sha1.h sha1hard_.c:sha1hard.h sha3_.c:sha3.h shun_.c:shun.h sitemap_.c:sitemap.h skins_.c:skins.h smtp_.c:smtp.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h statrep_.c:statrep.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 unicode_.c:unicode.h unversioned_.c:unversioned.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h util_.c:util.h verify_.c:verify.h vfile_.c:vfile.h webmail_.c:webmail.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winfile_.c:winfile.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 | |
| 981 | + +makeheaders$E add_.c:add.h alerts_.c:alerts.h allrepo_.c:allrepo.h attach_.c:attach.h backlink_.c:backlink.h backoffice_.c:backoffice.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h builtin_.c:builtin.h bundle_.c:bundle.h cache_.c:cache.h capabilities_.c:capabilities.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 cookies_.c:cookies.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h deltafunc_.c:deltafunc.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h dispatch_.c:dispatch.h doc_.c:doc.h encode_.c:encode.h etag_.c:etag.h event_.c:event.h export_.c:export.h extcgi_.c:extcgi.h file_.c:file.h finfo_.c:finfo.h foci_.c:foci.h forum_.c:forum.h fshell_.c:fshell.h fusefs_.c:fusefs.h fuzz_.c:fuzz.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h hname_.c:hname.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_status_.c:json_status.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 loadctrl_.c:loadctrl.h login_.c:login.h lookslike_.c:lookslike.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 piechart_.c:piechart.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h publish_.c:publish.h purge_.c:purge.h rebuild_.c:rebuild.h regexp_.c:regexp.h repolist_.c:repolist.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h security_audit_.c:security_audit.h setup_.c:setup.h setupuser_.c:setupuser.h sha1_.c:sha1.h sha1hard_.c:sha1hard.h sha3_.c:sha3.h shun_.c:shun.h sitemap_.c:sitemap.h skins_.c:skins.h smtp_.c:smtp.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h statrep_.c:statrep.h style_.c:style.h sync_.c:sync.h tag_.c:tag.h tar_.c:tar.h terminal_.c:terminal.h th_main_.c:th_main.h timeline_.c:timeline.h tkt_.c:tkt.h tktsetup_.c:tktsetup.h undo_.c:undo.h unicode_.c:unicode.h unversioned_.c:unversioned.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h util_.c:util.h verify_.c:verify.h vfile_.c:vfile.h webmail_.c:webmail.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winfile_.c:winfile.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 | |
| 976 | 982 | @copy /Y nul: headers |
| 977 | 983 |
| --- win/Makefile.dmc | |
| +++ win/Makefile.dmc | |
| @@ -28,13 +28,13 @@ | |
| 28 | |
| 29 | SQLITE_OPTIONS = -DNDEBUG=1 -DSQLITE_DQS=0 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_MEMSTATUS=0 -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1 -DSQLITE_LIKE_DOESNT_MATCH_BLOBS -DSQLITE_OMIT_DECLTYPE -DSQLITE_OMIT_DEPRECATED -DSQLITE_OMIT_GET_TABLE -DSQLITE_OMIT_PROGRESS_CALLBACK -DSQLITE_OMIT_SHARED_CACHE -DSQLITE_OMIT_LOAD_EXTENSION -DSQLITE_MAX_EXPR_DEPTH=0 -DSQLITE_USE_ALLOCA -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_EXPLAIN_COMMENTS -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_STMTVTAB -DSQLITE_HAVE_ZLIB -DSQLITE_INTROSPECTION_PRAGMAS -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_TRUSTED_SCHEMA=0 |
| 30 | |
| 31 | SHELL_OPTIONS = -DNDEBUG=1 -DSQLITE_DQS=0 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_MEMSTATUS=0 -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1 -DSQLITE_LIKE_DOESNT_MATCH_BLOBS -DSQLITE_OMIT_DECLTYPE -DSQLITE_OMIT_DEPRECATED -DSQLITE_OMIT_GET_TABLE -DSQLITE_OMIT_PROGRESS_CALLBACK -DSQLITE_OMIT_SHARED_CACHE -DSQLITE_OMIT_LOAD_EXTENSION -DSQLITE_MAX_EXPR_DEPTH=0 -DSQLITE_USE_ALLOCA -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_EXPLAIN_COMMENTS -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_STMTVTAB -DSQLITE_HAVE_ZLIB -DSQLITE_INTROSPECTION_PRAGMAS -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_TRUSTED_SCHEMA=0 -Dmain=sqlite3_shell -DSQLITE_SHELL_IS_UTF8=1 -DSQLITE_OMIT_LOAD_EXTENSION=1 -DUSE_SYSTEM_SQLITE=$(USE_SYSTEM_SQLITE) -DSQLITE_SHELL_DBNAME_PROC=sqlcmd_get_dbname -DSQLITE_SHELL_INIT_PROC=sqlcmd_init_proc -Daccess=file_access -Dsystem=fossil_system -Dgetenv=fossil_getenv -Dfopen=fossil_fopen |
| 32 | |
| 33 | SRC = add_.c alerts_.c allrepo_.c attach_.c backlink_.c backoffice_.c bag_.c bisect_.c blob_.c branch_.c browse_.c builtin_.c bundle_.c cache_.c capabilities_.c captcha_.c cgi_.c checkin_.c checkout_.c clearsign_.c clone_.c comformat_.c configure_.c content_.c cookies_.c db_.c delta_.c deltacmd_.c deltafunc_.c descendants_.c diff_.c diffcmd_.c dispatch_.c doc_.c encode_.c etag_.c event_.c export_.c extcgi_.c file_.c finfo_.c foci_.c forum_.c fshell_.c fusefs_.c fuzz_.c glob_.c graph_.c gzip_.c hname_.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_status_.c json_tag_.c json_timeline_.c json_user_.c json_wiki_.c leaf_.c loadctrl_.c login_.c lookslike_.c main_.c manifest_.c markdown_.c markdown_html_.c md5_.c merge_.c merge3_.c moderate_.c name_.c path_.c piechart_.c pivot_.c popen_.c pqueue_.c printf_.c publish_.c purge_.c rebuild_.c regexp_.c repolist_.c report_.c rss_.c schema_.c search_.c security_audit_.c setup_.c setupuser_.c sha1_.c sha1hard_.c sha3_.c shun_.c sitemap_.c skins_.c smtp_.c sqlcmd_.c stash_.c stat_.c statrep_.c style_.c sync_.c tag_.c tar_.c th_main_.c timeline_.c tkt_.c tktsetup_.c undo_.c unicode_.c unversioned_.c update_.c url_.c user_.c utf8_.c util_.c verify_.c vfile_.c webmail_.c wiki_.c wikiformat_.c winfile_.c winhttp_.c wysiwyg_.c xfer_.c xfersetup_.c zip_.c |
| 34 | |
| 35 | OBJ = $(OBJDIR)\add$O $(OBJDIR)\alerts$O $(OBJDIR)\allrepo$O $(OBJDIR)\attach$O $(OBJDIR)\backlink$O $(OBJDIR)\backoffice$O $(OBJDIR)\bag$O $(OBJDIR)\bisect$O $(OBJDIR)\blob$O $(OBJDIR)\branch$O $(OBJDIR)\browse$O $(OBJDIR)\builtin$O $(OBJDIR)\bundle$O $(OBJDIR)\cache$O $(OBJDIR)\capabilities$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)\cookies$O $(OBJDIR)\db$O $(OBJDIR)\delta$O $(OBJDIR)\deltacmd$O $(OBJDIR)\deltafunc$O $(OBJDIR)\descendants$O $(OBJDIR)\diff$O $(OBJDIR)\diffcmd$O $(OBJDIR)\dispatch$O $(OBJDIR)\doc$O $(OBJDIR)\encode$O $(OBJDIR)\etag$O $(OBJDIR)\event$O $(OBJDIR)\export$O $(OBJDIR)\extcgi$O $(OBJDIR)\file$O $(OBJDIR)\finfo$O $(OBJDIR)\foci$O $(OBJDIR)\forum$O $(OBJDIR)\fshell$O $(OBJDIR)\fusefs$O $(OBJDIR)\fuzz$O $(OBJDIR)\glob$O $(OBJDIR)\graph$O $(OBJDIR)\gzip$O $(OBJDIR)\hname$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_status$O $(OBJDIR)\json_tag$O $(OBJDIR)\json_timeline$O $(OBJDIR)\json_user$O $(OBJDIR)\json_wiki$O $(OBJDIR)\leaf$O $(OBJDIR)\loadctrl$O $(OBJDIR)\login$O $(OBJDIR)\lookslike$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)\piechart$O $(OBJDIR)\pivot$O $(OBJDIR)\popen$O $(OBJDIR)\pqueue$O $(OBJDIR)\printf$O $(OBJDIR)\publish$O $(OBJDIR)\purge$O $(OBJDIR)\rebuild$O $(OBJDIR)\regexp$O $(OBJDIR)\repolist$O $(OBJDIR)\report$O $(OBJDIR)\rss$O $(OBJDIR)\schema$O $(OBJDIR)\search$O $(OBJDIR)\security_audit$O $(OBJDIR)\setup$O $(OBJDIR)\setupuser$O $(OBJDIR)\sha1$O $(OBJDIR)\sha1hard$O $(OBJDIR)\sha3$O $(OBJDIR)\shun$O $(OBJDIR)\sitemap$O $(OBJDIR)\skins$O $(OBJDIR)\smtp$O $(OBJDIR)\sqlcmd$O $(OBJDIR)\stash$O $(OBJDIR)\stat$O $(OBJDIR)\statrep$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)\unicode$O $(OBJDIR)\unversioned$O $(OBJDIR)\update$O $(OBJDIR)\url$O $(OBJDIR)\user$O $(OBJDIR)\utf8$O $(OBJDIR)\util$O $(OBJDIR)\verify$O $(OBJDIR)\vfile$O $(OBJDIR)\webmail$O $(OBJDIR)\wiki$O $(OBJDIR)\wikiformat$O $(OBJDIR)\winfile$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 |
| 36 | |
| 37 | |
| 38 | RC=$(DMDIR)\bin\rcc |
| 39 | RCFLAGS=-32 -w1 -I$(SRCDIR) /D__DMC__ |
| 40 | |
| @@ -49,11 +49,11 @@ | |
| 49 | |
| 50 | $(OBJDIR)\fossil.res: $B\win\fossil.rc |
| 51 | $(RC) $(RCFLAGS) -o$@ $** |
| 52 | |
| 53 | $(OBJDIR)\link: $B\win\Makefile.dmc $(OBJDIR)\fossil.res |
| 54 | +echo add alerts allrepo attach backlink backoffice bag bisect blob branch browse builtin bundle cache capabilities captcha cgi checkin checkout clearsign clone comformat configure content cookies db delta deltacmd deltafunc descendants diff diffcmd dispatch doc encode etag event export extcgi file finfo foci forum fshell fusefs fuzz glob graph gzip hname 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_status json_tag json_timeline json_user json_wiki leaf loadctrl login lookslike main manifest markdown markdown_html md5 merge merge3 moderate name path piechart pivot popen pqueue printf publish purge rebuild regexp repolist report rss schema search security_audit setup setupuser sha1 sha1hard sha3 shun sitemap skins smtp sqlcmd stash stat statrep style sync tag tar th_main timeline tkt tktsetup undo unicode unversioned update url user utf8 util verify vfile webmail wiki wikiformat winfile winhttp wysiwyg xfer xfersetup zip shell sqlite3 th th_lang > $@ |
| 55 | +echo fossil >> $@ |
| 56 | +echo fossil >> $@ |
| 57 | +echo $(LIBS) >> $@ |
| 58 | +echo. >> $@ |
| 59 | +echo fossil >> $@ |
| @@ -830,10 +830,16 @@ | |
| 830 | $(OBJDIR)\tar$O : tar_.c tar.h |
| 831 | $(TCC) -o$@ -c tar_.c |
| 832 | |
| 833 | tar_.c : $(SRCDIR)\tar.c |
| 834 | +translate$E $** > $@ |
| 835 | |
| 836 | $(OBJDIR)\th_main$O : th_main_.c th_main.h |
| 837 | $(TCC) -o$@ -c th_main_.c |
| 838 | |
| 839 | th_main_.c : $(SRCDIR)\th_main.c |
| @@ -970,7 +976,7 @@ | |
| 970 | |
| 971 | zip_.c : $(SRCDIR)\zip.c |
| 972 | +translate$E $** > $@ |
| 973 | |
| 974 | headers: makeheaders$E page_index.h builtin_data.h default_css.h VERSION.h |
| 975 | +makeheaders$E add_.c:add.h alerts_.c:alerts.h allrepo_.c:allrepo.h attach_.c:attach.h backlink_.c:backlink.h backoffice_.c:backoffice.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h builtin_.c:builtin.h bundle_.c:bundle.h cache_.c:cache.h capabilities_.c:capabilities.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 cookies_.c:cookies.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h deltafunc_.c:deltafunc.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h dispatch_.c:dispatch.h doc_.c:doc.h encode_.c:encode.h etag_.c:etag.h event_.c:event.h export_.c:export.h extcgi_.c:extcgi.h file_.c:file.h finfo_.c:finfo.h foci_.c:foci.h forum_.c:forum.h fshell_.c:fshell.h fusefs_.c:fusefs.h fuzz_.c:fuzz.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h hname_.c:hname.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_status_.c:json_status.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 loadctrl_.c:loadctrl.h login_.c:login.h lookslike_.c:lookslike.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 piechart_.c:piechart.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h publish_.c:publish.h purge_.c:purge.h rebuild_.c:rebuild.h regexp_.c:regexp.h repolist_.c:repolist.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h security_audit_.c:security_audit.h setup_.c:setup.h setupuser_.c:setupuser.h sha1_.c:sha1.h sha1hard_.c:sha1hard.h sha3_.c:sha3.h shun_.c:shun.h sitemap_.c:sitemap.h skins_.c:skins.h smtp_.c:smtp.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h statrep_.c:statrep.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 unicode_.c:unicode.h unversioned_.c:unversioned.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h util_.c:util.h verify_.c:verify.h vfile_.c:vfile.h webmail_.c:webmail.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winfile_.c:winfile.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 |
| 976 | @copy /Y nul: headers |
| 977 |
| --- win/Makefile.dmc | |
| +++ win/Makefile.dmc | |
| @@ -28,13 +28,13 @@ | |
| 28 | |
| 29 | SQLITE_OPTIONS = -DNDEBUG=1 -DSQLITE_DQS=0 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_MEMSTATUS=0 -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1 -DSQLITE_LIKE_DOESNT_MATCH_BLOBS -DSQLITE_OMIT_DECLTYPE -DSQLITE_OMIT_DEPRECATED -DSQLITE_OMIT_GET_TABLE -DSQLITE_OMIT_PROGRESS_CALLBACK -DSQLITE_OMIT_SHARED_CACHE -DSQLITE_OMIT_LOAD_EXTENSION -DSQLITE_MAX_EXPR_DEPTH=0 -DSQLITE_USE_ALLOCA -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_EXPLAIN_COMMENTS -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_STMTVTAB -DSQLITE_HAVE_ZLIB -DSQLITE_INTROSPECTION_PRAGMAS -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_TRUSTED_SCHEMA=0 |
| 30 | |
| 31 | SHELL_OPTIONS = -DNDEBUG=1 -DSQLITE_DQS=0 -DSQLITE_THREADSAFE=0 -DSQLITE_DEFAULT_MEMSTATUS=0 -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1 -DSQLITE_LIKE_DOESNT_MATCH_BLOBS -DSQLITE_OMIT_DECLTYPE -DSQLITE_OMIT_DEPRECATED -DSQLITE_OMIT_GET_TABLE -DSQLITE_OMIT_PROGRESS_CALLBACK -DSQLITE_OMIT_SHARED_CACHE -DSQLITE_OMIT_LOAD_EXTENSION -DSQLITE_MAX_EXPR_DEPTH=0 -DSQLITE_USE_ALLOCA -DSQLITE_ENABLE_LOCKING_STYLE=0 -DSQLITE_DEFAULT_FILE_FORMAT=4 -DSQLITE_ENABLE_EXPLAIN_COMMENTS -DSQLITE_ENABLE_FTS4 -DSQLITE_ENABLE_DBSTAT_VTAB -DSQLITE_ENABLE_JSON1 -DSQLITE_ENABLE_FTS5 -DSQLITE_ENABLE_STMTVTAB -DSQLITE_HAVE_ZLIB -DSQLITE_INTROSPECTION_PRAGMAS -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_TRUSTED_SCHEMA=0 -Dmain=sqlite3_shell -DSQLITE_SHELL_IS_UTF8=1 -DSQLITE_OMIT_LOAD_EXTENSION=1 -DUSE_SYSTEM_SQLITE=$(USE_SYSTEM_SQLITE) -DSQLITE_SHELL_DBNAME_PROC=sqlcmd_get_dbname -DSQLITE_SHELL_INIT_PROC=sqlcmd_init_proc -Daccess=file_access -Dsystem=fossil_system -Dgetenv=fossil_getenv -Dfopen=fossil_fopen |
| 32 | |
| 33 | SRC = add_.c alerts_.c allrepo_.c attach_.c backlink_.c backoffice_.c bag_.c bisect_.c blob_.c branch_.c browse_.c builtin_.c bundle_.c cache_.c capabilities_.c captcha_.c cgi_.c checkin_.c checkout_.c clearsign_.c clone_.c comformat_.c configure_.c content_.c cookies_.c db_.c delta_.c deltacmd_.c deltafunc_.c descendants_.c diff_.c diffcmd_.c dispatch_.c doc_.c encode_.c etag_.c event_.c export_.c extcgi_.c file_.c finfo_.c foci_.c forum_.c fshell_.c fusefs_.c fuzz_.c glob_.c graph_.c gzip_.c hname_.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_status_.c json_tag_.c json_timeline_.c json_user_.c json_wiki_.c leaf_.c loadctrl_.c login_.c lookslike_.c main_.c manifest_.c markdown_.c markdown_html_.c md5_.c merge_.c merge3_.c moderate_.c name_.c path_.c piechart_.c pivot_.c popen_.c pqueue_.c printf_.c publish_.c purge_.c rebuild_.c regexp_.c repolist_.c report_.c rss_.c schema_.c search_.c security_audit_.c setup_.c setupuser_.c sha1_.c sha1hard_.c sha3_.c shun_.c sitemap_.c skins_.c smtp_.c sqlcmd_.c stash_.c stat_.c statrep_.c style_.c sync_.c tag_.c tar_.c terminal_.c th_main_.c timeline_.c tkt_.c tktsetup_.c undo_.c unicode_.c unversioned_.c update_.c url_.c user_.c utf8_.c util_.c verify_.c vfile_.c webmail_.c wiki_.c wikiformat_.c winfile_.c winhttp_.c wysiwyg_.c xfer_.c xfersetup_.c zip_.c |
| 34 | |
| 35 | OBJ = $(OBJDIR)\add$O $(OBJDIR)\alerts$O $(OBJDIR)\allrepo$O $(OBJDIR)\attach$O $(OBJDIR)\backlink$O $(OBJDIR)\backoffice$O $(OBJDIR)\bag$O $(OBJDIR)\bisect$O $(OBJDIR)\blob$O $(OBJDIR)\branch$O $(OBJDIR)\browse$O $(OBJDIR)\builtin$O $(OBJDIR)\bundle$O $(OBJDIR)\cache$O $(OBJDIR)\capabilities$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)\cookies$O $(OBJDIR)\db$O $(OBJDIR)\delta$O $(OBJDIR)\deltacmd$O $(OBJDIR)\deltafunc$O $(OBJDIR)\descendants$O $(OBJDIR)\diff$O $(OBJDIR)\diffcmd$O $(OBJDIR)\dispatch$O $(OBJDIR)\doc$O $(OBJDIR)\encode$O $(OBJDIR)\etag$O $(OBJDIR)\event$O $(OBJDIR)\export$O $(OBJDIR)\extcgi$O $(OBJDIR)\file$O $(OBJDIR)\finfo$O $(OBJDIR)\foci$O $(OBJDIR)\forum$O $(OBJDIR)\fshell$O $(OBJDIR)\fusefs$O $(OBJDIR)\fuzz$O $(OBJDIR)\glob$O $(OBJDIR)\graph$O $(OBJDIR)\gzip$O $(OBJDIR)\hname$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_status$O $(OBJDIR)\json_tag$O $(OBJDIR)\json_timeline$O $(OBJDIR)\json_user$O $(OBJDIR)\json_wiki$O $(OBJDIR)\leaf$O $(OBJDIR)\loadctrl$O $(OBJDIR)\login$O $(OBJDIR)\lookslike$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)\piechart$O $(OBJDIR)\pivot$O $(OBJDIR)\popen$O $(OBJDIR)\pqueue$O $(OBJDIR)\printf$O $(OBJDIR)\publish$O $(OBJDIR)\purge$O $(OBJDIR)\rebuild$O $(OBJDIR)\regexp$O $(OBJDIR)\repolist$O $(OBJDIR)\report$O $(OBJDIR)\rss$O $(OBJDIR)\schema$O $(OBJDIR)\search$O $(OBJDIR)\security_audit$O $(OBJDIR)\setup$O $(OBJDIR)\setupuser$O $(OBJDIR)\sha1$O $(OBJDIR)\sha1hard$O $(OBJDIR)\sha3$O $(OBJDIR)\shun$O $(OBJDIR)\sitemap$O $(OBJDIR)\skins$O $(OBJDIR)\smtp$O $(OBJDIR)\sqlcmd$O $(OBJDIR)\stash$O $(OBJDIR)\stat$O $(OBJDIR)\statrep$O $(OBJDIR)\style$O $(OBJDIR)\sync$O $(OBJDIR)\tag$O $(OBJDIR)\tar$O $(OBJDIR)\terminal$O $(OBJDIR)\th_main$O $(OBJDIR)\timeline$O $(OBJDIR)\tkt$O $(OBJDIR)\tktsetup$O $(OBJDIR)\undo$O $(OBJDIR)\unicode$O $(OBJDIR)\unversioned$O $(OBJDIR)\update$O $(OBJDIR)\url$O $(OBJDIR)\user$O $(OBJDIR)\utf8$O $(OBJDIR)\util$O $(OBJDIR)\verify$O $(OBJDIR)\vfile$O $(OBJDIR)\webmail$O $(OBJDIR)\wiki$O $(OBJDIR)\wikiformat$O $(OBJDIR)\winfile$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 |
| 36 | |
| 37 | |
| 38 | RC=$(DMDIR)\bin\rcc |
| 39 | RCFLAGS=-32 -w1 -I$(SRCDIR) /D__DMC__ |
| 40 | |
| @@ -49,11 +49,11 @@ | |
| 49 | |
| 50 | $(OBJDIR)\fossil.res: $B\win\fossil.rc |
| 51 | $(RC) $(RCFLAGS) -o$@ $** |
| 52 | |
| 53 | $(OBJDIR)\link: $B\win\Makefile.dmc $(OBJDIR)\fossil.res |
| 54 | +echo add alerts allrepo attach backlink backoffice bag bisect blob branch browse builtin bundle cache capabilities captcha cgi checkin checkout clearsign clone comformat configure content cookies db delta deltacmd deltafunc descendants diff diffcmd dispatch doc encode etag event export extcgi file finfo foci forum fshell fusefs fuzz glob graph gzip hname 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_status json_tag json_timeline json_user json_wiki leaf loadctrl login lookslike main manifest markdown markdown_html md5 merge merge3 moderate name path piechart pivot popen pqueue printf publish purge rebuild regexp repolist report rss schema search security_audit setup setupuser sha1 sha1hard sha3 shun sitemap skins smtp sqlcmd stash stat statrep style sync tag tar terminal th_main timeline tkt tktsetup undo unicode unversioned update url user utf8 util verify vfile webmail wiki wikiformat winfile winhttp wysiwyg xfer xfersetup zip shell sqlite3 th th_lang > $@ |
| 55 | +echo fossil >> $@ |
| 56 | +echo fossil >> $@ |
| 57 | +echo $(LIBS) >> $@ |
| 58 | +echo. >> $@ |
| 59 | +echo fossil >> $@ |
| @@ -830,10 +830,16 @@ | |
| 830 | $(OBJDIR)\tar$O : tar_.c tar.h |
| 831 | $(TCC) -o$@ -c tar_.c |
| 832 | |
| 833 | tar_.c : $(SRCDIR)\tar.c |
| 834 | +translate$E $** > $@ |
| 835 | |
| 836 | $(OBJDIR)\terminal$O : terminal_.c terminal.h |
| 837 | $(TCC) -o$@ -c terminal_.c |
| 838 | |
| 839 | terminal_.c : $(SRCDIR)\terminal.c |
| 840 | +translate$E $** > $@ |
| 841 | |
| 842 | $(OBJDIR)\th_main$O : th_main_.c th_main.h |
| 843 | $(TCC) -o$@ -c th_main_.c |
| 844 | |
| 845 | th_main_.c : $(SRCDIR)\th_main.c |
| @@ -970,7 +976,7 @@ | |
| 976 | |
| 977 | zip_.c : $(SRCDIR)\zip.c |
| 978 | +translate$E $** > $@ |
| 979 | |
| 980 | headers: makeheaders$E page_index.h builtin_data.h default_css.h VERSION.h |
| 981 | +makeheaders$E add_.c:add.h alerts_.c:alerts.h allrepo_.c:allrepo.h attach_.c:attach.h backlink_.c:backlink.h backoffice_.c:backoffice.h bag_.c:bag.h bisect_.c:bisect.h blob_.c:blob.h branch_.c:branch.h browse_.c:browse.h builtin_.c:builtin.h bundle_.c:bundle.h cache_.c:cache.h capabilities_.c:capabilities.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 cookies_.c:cookies.h db_.c:db.h delta_.c:delta.h deltacmd_.c:deltacmd.h deltafunc_.c:deltafunc.h descendants_.c:descendants.h diff_.c:diff.h diffcmd_.c:diffcmd.h dispatch_.c:dispatch.h doc_.c:doc.h encode_.c:encode.h etag_.c:etag.h event_.c:event.h export_.c:export.h extcgi_.c:extcgi.h file_.c:file.h finfo_.c:finfo.h foci_.c:foci.h forum_.c:forum.h fshell_.c:fshell.h fusefs_.c:fusefs.h fuzz_.c:fuzz.h glob_.c:glob.h graph_.c:graph.h gzip_.c:gzip.h hname_.c:hname.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_status_.c:json_status.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 loadctrl_.c:loadctrl.h login_.c:login.h lookslike_.c:lookslike.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 piechart_.c:piechart.h pivot_.c:pivot.h popen_.c:popen.h pqueue_.c:pqueue.h printf_.c:printf.h publish_.c:publish.h purge_.c:purge.h rebuild_.c:rebuild.h regexp_.c:regexp.h repolist_.c:repolist.h report_.c:report.h rss_.c:rss.h schema_.c:schema.h search_.c:search.h security_audit_.c:security_audit.h setup_.c:setup.h setupuser_.c:setupuser.h sha1_.c:sha1.h sha1hard_.c:sha1hard.h sha3_.c:sha3.h shun_.c:shun.h sitemap_.c:sitemap.h skins_.c:skins.h smtp_.c:smtp.h sqlcmd_.c:sqlcmd.h stash_.c:stash.h stat_.c:stat.h statrep_.c:statrep.h style_.c:style.h sync_.c:sync.h tag_.c:tag.h tar_.c:tar.h terminal_.c:terminal.h th_main_.c:th_main.h timeline_.c:timeline.h tkt_.c:tkt.h tktsetup_.c:tktsetup.h undo_.c:undo.h unicode_.c:unicode.h unversioned_.c:unversioned.h update_.c:update.h url_.c:url.h user_.c:user.h utf8_.c:utf8.h util_.c:util.h verify_.c:verify.h vfile_.c:vfile.h webmail_.c:webmail.h wiki_.c:wiki.h wikiformat_.c:wikiformat.h winfile_.c:winfile.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 |
| 982 | @copy /Y nul: headers |
| 983 |
+12
| --- win/Makefile.mingw | ||
| +++ win/Makefile.mingw | ||
| @@ -553,10 +553,11 @@ | ||
| 553 | 553 | $(SRCDIR)/statrep.c \ |
| 554 | 554 | $(SRCDIR)/style.c \ |
| 555 | 555 | $(SRCDIR)/sync.c \ |
| 556 | 556 | $(SRCDIR)/tag.c \ |
| 557 | 557 | $(SRCDIR)/tar.c \ |
| 558 | + $(SRCDIR)/terminal.c \ | |
| 558 | 559 | $(SRCDIR)/th_main.c \ |
| 559 | 560 | $(SRCDIR)/timeline.c \ |
| 560 | 561 | $(SRCDIR)/tkt.c \ |
| 561 | 562 | $(SRCDIR)/tktsetup.c \ |
| 562 | 563 | $(SRCDIR)/undo.c \ |
| @@ -786,10 +787,11 @@ | ||
| 786 | 787 | $(OBJDIR)/statrep_.c \ |
| 787 | 788 | $(OBJDIR)/style_.c \ |
| 788 | 789 | $(OBJDIR)/sync_.c \ |
| 789 | 790 | $(OBJDIR)/tag_.c \ |
| 790 | 791 | $(OBJDIR)/tar_.c \ |
| 792 | + $(OBJDIR)/terminal_.c \ | |
| 791 | 793 | $(OBJDIR)/th_main_.c \ |
| 792 | 794 | $(OBJDIR)/timeline_.c \ |
| 793 | 795 | $(OBJDIR)/tkt_.c \ |
| 794 | 796 | $(OBJDIR)/tktsetup_.c \ |
| 795 | 797 | $(OBJDIR)/undo_.c \ |
| @@ -928,10 +930,11 @@ | ||
| 928 | 930 | $(OBJDIR)/statrep.o \ |
| 929 | 931 | $(OBJDIR)/style.o \ |
| 930 | 932 | $(OBJDIR)/sync.o \ |
| 931 | 933 | $(OBJDIR)/tag.o \ |
| 932 | 934 | $(OBJDIR)/tar.o \ |
| 935 | + $(OBJDIR)/terminal.o \ | |
| 933 | 936 | $(OBJDIR)/th_main.o \ |
| 934 | 937 | $(OBJDIR)/timeline.o \ |
| 935 | 938 | $(OBJDIR)/tkt.o \ |
| 936 | 939 | $(OBJDIR)/tktsetup.o \ |
| 937 | 940 | $(OBJDIR)/undo.o \ |
| @@ -1290,10 +1293,11 @@ | ||
| 1290 | 1293 | $(OBJDIR)/statrep_.c:$(OBJDIR)/statrep.h \ |
| 1291 | 1294 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 1292 | 1295 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 1293 | 1296 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 1294 | 1297 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 1298 | + $(OBJDIR)/terminal_.c:$(OBJDIR)/terminal.h \ | |
| 1295 | 1299 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 1296 | 1300 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 1297 | 1301 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 1298 | 1302 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 1299 | 1303 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| @@ -2257,10 +2261,18 @@ | ||
| 2257 | 2261 | |
| 2258 | 2262 | $(OBJDIR)/tar.o: $(OBJDIR)/tar_.c $(OBJDIR)/tar.h $(SRCDIR)/config.h |
| 2259 | 2263 | $(XTCC) -o $(OBJDIR)/tar.o -c $(OBJDIR)/tar_.c |
| 2260 | 2264 | |
| 2261 | 2265 | $(OBJDIR)/tar.h: $(OBJDIR)/headers |
| 2266 | + | |
| 2267 | +$(OBJDIR)/terminal_.c: $(SRCDIR)/terminal.c $(TRANSLATE) | |
| 2268 | + $(TRANSLATE) $(SRCDIR)/terminal.c >$@ | |
| 2269 | + | |
| 2270 | +$(OBJDIR)/terminal.o: $(OBJDIR)/terminal_.c $(OBJDIR)/terminal.h $(SRCDIR)/config.h | |
| 2271 | + $(XTCC) -o $(OBJDIR)/terminal.o -c $(OBJDIR)/terminal_.c | |
| 2272 | + | |
| 2273 | +$(OBJDIR)/terminal.h: $(OBJDIR)/headers | |
| 2262 | 2274 | |
| 2263 | 2275 | $(OBJDIR)/th_main_.c: $(SRCDIR)/th_main.c $(TRANSLATE) |
| 2264 | 2276 | $(TRANSLATE) $(SRCDIR)/th_main.c >$@ |
| 2265 | 2277 | |
| 2266 | 2278 | $(OBJDIR)/th_main.o: $(OBJDIR)/th_main_.c $(OBJDIR)/th_main.h $(SRCDIR)/config.h |
| 2267 | 2279 |
| --- win/Makefile.mingw | |
| +++ win/Makefile.mingw | |
| @@ -553,10 +553,11 @@ | |
| 553 | $(SRCDIR)/statrep.c \ |
| 554 | $(SRCDIR)/style.c \ |
| 555 | $(SRCDIR)/sync.c \ |
| 556 | $(SRCDIR)/tag.c \ |
| 557 | $(SRCDIR)/tar.c \ |
| 558 | $(SRCDIR)/th_main.c \ |
| 559 | $(SRCDIR)/timeline.c \ |
| 560 | $(SRCDIR)/tkt.c \ |
| 561 | $(SRCDIR)/tktsetup.c \ |
| 562 | $(SRCDIR)/undo.c \ |
| @@ -786,10 +787,11 @@ | |
| 786 | $(OBJDIR)/statrep_.c \ |
| 787 | $(OBJDIR)/style_.c \ |
| 788 | $(OBJDIR)/sync_.c \ |
| 789 | $(OBJDIR)/tag_.c \ |
| 790 | $(OBJDIR)/tar_.c \ |
| 791 | $(OBJDIR)/th_main_.c \ |
| 792 | $(OBJDIR)/timeline_.c \ |
| 793 | $(OBJDIR)/tkt_.c \ |
| 794 | $(OBJDIR)/tktsetup_.c \ |
| 795 | $(OBJDIR)/undo_.c \ |
| @@ -928,10 +930,11 @@ | |
| 928 | $(OBJDIR)/statrep.o \ |
| 929 | $(OBJDIR)/style.o \ |
| 930 | $(OBJDIR)/sync.o \ |
| 931 | $(OBJDIR)/tag.o \ |
| 932 | $(OBJDIR)/tar.o \ |
| 933 | $(OBJDIR)/th_main.o \ |
| 934 | $(OBJDIR)/timeline.o \ |
| 935 | $(OBJDIR)/tkt.o \ |
| 936 | $(OBJDIR)/tktsetup.o \ |
| 937 | $(OBJDIR)/undo.o \ |
| @@ -1290,10 +1293,11 @@ | |
| 1290 | $(OBJDIR)/statrep_.c:$(OBJDIR)/statrep.h \ |
| 1291 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 1292 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 1293 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 1294 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 1295 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 1296 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 1297 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 1298 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 1299 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| @@ -2257,10 +2261,18 @@ | |
| 2257 | |
| 2258 | $(OBJDIR)/tar.o: $(OBJDIR)/tar_.c $(OBJDIR)/tar.h $(SRCDIR)/config.h |
| 2259 | $(XTCC) -o $(OBJDIR)/tar.o -c $(OBJDIR)/tar_.c |
| 2260 | |
| 2261 | $(OBJDIR)/tar.h: $(OBJDIR)/headers |
| 2262 | |
| 2263 | $(OBJDIR)/th_main_.c: $(SRCDIR)/th_main.c $(TRANSLATE) |
| 2264 | $(TRANSLATE) $(SRCDIR)/th_main.c >$@ |
| 2265 | |
| 2266 | $(OBJDIR)/th_main.o: $(OBJDIR)/th_main_.c $(OBJDIR)/th_main.h $(SRCDIR)/config.h |
| 2267 |
| --- win/Makefile.mingw | |
| +++ win/Makefile.mingw | |
| @@ -553,10 +553,11 @@ | |
| 553 | $(SRCDIR)/statrep.c \ |
| 554 | $(SRCDIR)/style.c \ |
| 555 | $(SRCDIR)/sync.c \ |
| 556 | $(SRCDIR)/tag.c \ |
| 557 | $(SRCDIR)/tar.c \ |
| 558 | $(SRCDIR)/terminal.c \ |
| 559 | $(SRCDIR)/th_main.c \ |
| 560 | $(SRCDIR)/timeline.c \ |
| 561 | $(SRCDIR)/tkt.c \ |
| 562 | $(SRCDIR)/tktsetup.c \ |
| 563 | $(SRCDIR)/undo.c \ |
| @@ -786,10 +787,11 @@ | |
| 787 | $(OBJDIR)/statrep_.c \ |
| 788 | $(OBJDIR)/style_.c \ |
| 789 | $(OBJDIR)/sync_.c \ |
| 790 | $(OBJDIR)/tag_.c \ |
| 791 | $(OBJDIR)/tar_.c \ |
| 792 | $(OBJDIR)/terminal_.c \ |
| 793 | $(OBJDIR)/th_main_.c \ |
| 794 | $(OBJDIR)/timeline_.c \ |
| 795 | $(OBJDIR)/tkt_.c \ |
| 796 | $(OBJDIR)/tktsetup_.c \ |
| 797 | $(OBJDIR)/undo_.c \ |
| @@ -928,10 +930,11 @@ | |
| 930 | $(OBJDIR)/statrep.o \ |
| 931 | $(OBJDIR)/style.o \ |
| 932 | $(OBJDIR)/sync.o \ |
| 933 | $(OBJDIR)/tag.o \ |
| 934 | $(OBJDIR)/tar.o \ |
| 935 | $(OBJDIR)/terminal.o \ |
| 936 | $(OBJDIR)/th_main.o \ |
| 937 | $(OBJDIR)/timeline.o \ |
| 938 | $(OBJDIR)/tkt.o \ |
| 939 | $(OBJDIR)/tktsetup.o \ |
| 940 | $(OBJDIR)/undo.o \ |
| @@ -1290,10 +1293,11 @@ | |
| 1293 | $(OBJDIR)/statrep_.c:$(OBJDIR)/statrep.h \ |
| 1294 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 1295 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 1296 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 1297 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 1298 | $(OBJDIR)/terminal_.c:$(OBJDIR)/terminal.h \ |
| 1299 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 1300 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 1301 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 1302 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 1303 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| @@ -2257,10 +2261,18 @@ | |
| 2261 | |
| 2262 | $(OBJDIR)/tar.o: $(OBJDIR)/tar_.c $(OBJDIR)/tar.h $(SRCDIR)/config.h |
| 2263 | $(XTCC) -o $(OBJDIR)/tar.o -c $(OBJDIR)/tar_.c |
| 2264 | |
| 2265 | $(OBJDIR)/tar.h: $(OBJDIR)/headers |
| 2266 | |
| 2267 | $(OBJDIR)/terminal_.c: $(SRCDIR)/terminal.c $(TRANSLATE) |
| 2268 | $(TRANSLATE) $(SRCDIR)/terminal.c >$@ |
| 2269 | |
| 2270 | $(OBJDIR)/terminal.o: $(OBJDIR)/terminal_.c $(OBJDIR)/terminal.h $(SRCDIR)/config.h |
| 2271 | $(XTCC) -o $(OBJDIR)/terminal.o -c $(OBJDIR)/terminal_.c |
| 2272 | |
| 2273 | $(OBJDIR)/terminal.h: $(OBJDIR)/headers |
| 2274 | |
| 2275 | $(OBJDIR)/th_main_.c: $(SRCDIR)/th_main.c $(TRANSLATE) |
| 2276 | $(TRANSLATE) $(SRCDIR)/th_main.c >$@ |
| 2277 | |
| 2278 | $(OBJDIR)/th_main.o: $(OBJDIR)/th_main_.c $(OBJDIR)/th_main.h $(SRCDIR)/config.h |
| 2279 |
| --- win/Makefile.mingw.mistachkin | ||
| +++ win/Makefile.mingw.mistachkin | ||
| @@ -553,10 +553,11 @@ | ||
| 553 | 553 | $(SRCDIR)/statrep.c \ |
| 554 | 554 | $(SRCDIR)/style.c \ |
| 555 | 555 | $(SRCDIR)/sync.c \ |
| 556 | 556 | $(SRCDIR)/tag.c \ |
| 557 | 557 | $(SRCDIR)/tar.c \ |
| 558 | + $(SRCDIR)/terminal.c \ | |
| 558 | 559 | $(SRCDIR)/th_main.c \ |
| 559 | 560 | $(SRCDIR)/timeline.c \ |
| 560 | 561 | $(SRCDIR)/tkt.c \ |
| 561 | 562 | $(SRCDIR)/tktsetup.c \ |
| 562 | 563 | $(SRCDIR)/undo.c \ |
| @@ -786,10 +787,11 @@ | ||
| 786 | 787 | $(OBJDIR)/statrep_.c \ |
| 787 | 788 | $(OBJDIR)/style_.c \ |
| 788 | 789 | $(OBJDIR)/sync_.c \ |
| 789 | 790 | $(OBJDIR)/tag_.c \ |
| 790 | 791 | $(OBJDIR)/tar_.c \ |
| 792 | + $(OBJDIR)/terminal_.c \ | |
| 791 | 793 | $(OBJDIR)/th_main_.c \ |
| 792 | 794 | $(OBJDIR)/timeline_.c \ |
| 793 | 795 | $(OBJDIR)/tkt_.c \ |
| 794 | 796 | $(OBJDIR)/tktsetup_.c \ |
| 795 | 797 | $(OBJDIR)/undo_.c \ |
| @@ -928,10 +930,11 @@ | ||
| 928 | 930 | $(OBJDIR)/statrep.o \ |
| 929 | 931 | $(OBJDIR)/style.o \ |
| 930 | 932 | $(OBJDIR)/sync.o \ |
| 931 | 933 | $(OBJDIR)/tag.o \ |
| 932 | 934 | $(OBJDIR)/tar.o \ |
| 935 | + $(OBJDIR)/terminal.o \ | |
| 933 | 936 | $(OBJDIR)/th_main.o \ |
| 934 | 937 | $(OBJDIR)/timeline.o \ |
| 935 | 938 | $(OBJDIR)/tkt.o \ |
| 936 | 939 | $(OBJDIR)/tktsetup.o \ |
| 937 | 940 | $(OBJDIR)/undo.o \ |
| @@ -1290,10 +1293,11 @@ | ||
| 1290 | 1293 | $(OBJDIR)/statrep_.c:$(OBJDIR)/statrep.h \ |
| 1291 | 1294 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 1292 | 1295 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 1293 | 1296 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 1294 | 1297 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 1298 | + $(OBJDIR)/terminal_.c:$(OBJDIR)/terminal.h \ | |
| 1295 | 1299 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 1296 | 1300 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 1297 | 1301 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 1298 | 1302 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 1299 | 1303 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| @@ -2257,10 +2261,18 @@ | ||
| 2257 | 2261 | |
| 2258 | 2262 | $(OBJDIR)/tar.o: $(OBJDIR)/tar_.c $(OBJDIR)/tar.h $(SRCDIR)/config.h |
| 2259 | 2263 | $(XTCC) -o $(OBJDIR)/tar.o -c $(OBJDIR)/tar_.c |
| 2260 | 2264 | |
| 2261 | 2265 | $(OBJDIR)/tar.h: $(OBJDIR)/headers |
| 2266 | + | |
| 2267 | +$(OBJDIR)/terminal_.c: $(SRCDIR)/terminal.c $(TRANSLATE) | |
| 2268 | + $(TRANSLATE) $(SRCDIR)/terminal.c >$@ | |
| 2269 | + | |
| 2270 | +$(OBJDIR)/terminal.o: $(OBJDIR)/terminal_.c $(OBJDIR)/terminal.h $(SRCDIR)/config.h | |
| 2271 | + $(XTCC) -o $(OBJDIR)/terminal.o -c $(OBJDIR)/terminal_.c | |
| 2272 | + | |
| 2273 | +$(OBJDIR)/terminal.h: $(OBJDIR)/headers | |
| 2262 | 2274 | |
| 2263 | 2275 | $(OBJDIR)/th_main_.c: $(SRCDIR)/th_main.c $(TRANSLATE) |
| 2264 | 2276 | $(TRANSLATE) $(SRCDIR)/th_main.c >$@ |
| 2265 | 2277 | |
| 2266 | 2278 | $(OBJDIR)/th_main.o: $(OBJDIR)/th_main_.c $(OBJDIR)/th_main.h $(SRCDIR)/config.h |
| 2267 | 2279 |
| --- win/Makefile.mingw.mistachkin | |
| +++ win/Makefile.mingw.mistachkin | |
| @@ -553,10 +553,11 @@ | |
| 553 | $(SRCDIR)/statrep.c \ |
| 554 | $(SRCDIR)/style.c \ |
| 555 | $(SRCDIR)/sync.c \ |
| 556 | $(SRCDIR)/tag.c \ |
| 557 | $(SRCDIR)/tar.c \ |
| 558 | $(SRCDIR)/th_main.c \ |
| 559 | $(SRCDIR)/timeline.c \ |
| 560 | $(SRCDIR)/tkt.c \ |
| 561 | $(SRCDIR)/tktsetup.c \ |
| 562 | $(SRCDIR)/undo.c \ |
| @@ -786,10 +787,11 @@ | |
| 786 | $(OBJDIR)/statrep_.c \ |
| 787 | $(OBJDIR)/style_.c \ |
| 788 | $(OBJDIR)/sync_.c \ |
| 789 | $(OBJDIR)/tag_.c \ |
| 790 | $(OBJDIR)/tar_.c \ |
| 791 | $(OBJDIR)/th_main_.c \ |
| 792 | $(OBJDIR)/timeline_.c \ |
| 793 | $(OBJDIR)/tkt_.c \ |
| 794 | $(OBJDIR)/tktsetup_.c \ |
| 795 | $(OBJDIR)/undo_.c \ |
| @@ -928,10 +930,11 @@ | |
| 928 | $(OBJDIR)/statrep.o \ |
| 929 | $(OBJDIR)/style.o \ |
| 930 | $(OBJDIR)/sync.o \ |
| 931 | $(OBJDIR)/tag.o \ |
| 932 | $(OBJDIR)/tar.o \ |
| 933 | $(OBJDIR)/th_main.o \ |
| 934 | $(OBJDIR)/timeline.o \ |
| 935 | $(OBJDIR)/tkt.o \ |
| 936 | $(OBJDIR)/tktsetup.o \ |
| 937 | $(OBJDIR)/undo.o \ |
| @@ -1290,10 +1293,11 @@ | |
| 1290 | $(OBJDIR)/statrep_.c:$(OBJDIR)/statrep.h \ |
| 1291 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 1292 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 1293 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 1294 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 1295 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 1296 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 1297 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 1298 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 1299 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| @@ -2257,10 +2261,18 @@ | |
| 2257 | |
| 2258 | $(OBJDIR)/tar.o: $(OBJDIR)/tar_.c $(OBJDIR)/tar.h $(SRCDIR)/config.h |
| 2259 | $(XTCC) -o $(OBJDIR)/tar.o -c $(OBJDIR)/tar_.c |
| 2260 | |
| 2261 | $(OBJDIR)/tar.h: $(OBJDIR)/headers |
| 2262 | |
| 2263 | $(OBJDIR)/th_main_.c: $(SRCDIR)/th_main.c $(TRANSLATE) |
| 2264 | $(TRANSLATE) $(SRCDIR)/th_main.c >$@ |
| 2265 | |
| 2266 | $(OBJDIR)/th_main.o: $(OBJDIR)/th_main_.c $(OBJDIR)/th_main.h $(SRCDIR)/config.h |
| 2267 |
| --- win/Makefile.mingw.mistachkin | |
| +++ win/Makefile.mingw.mistachkin | |
| @@ -553,10 +553,11 @@ | |
| 553 | $(SRCDIR)/statrep.c \ |
| 554 | $(SRCDIR)/style.c \ |
| 555 | $(SRCDIR)/sync.c \ |
| 556 | $(SRCDIR)/tag.c \ |
| 557 | $(SRCDIR)/tar.c \ |
| 558 | $(SRCDIR)/terminal.c \ |
| 559 | $(SRCDIR)/th_main.c \ |
| 560 | $(SRCDIR)/timeline.c \ |
| 561 | $(SRCDIR)/tkt.c \ |
| 562 | $(SRCDIR)/tktsetup.c \ |
| 563 | $(SRCDIR)/undo.c \ |
| @@ -786,10 +787,11 @@ | |
| 787 | $(OBJDIR)/statrep_.c \ |
| 788 | $(OBJDIR)/style_.c \ |
| 789 | $(OBJDIR)/sync_.c \ |
| 790 | $(OBJDIR)/tag_.c \ |
| 791 | $(OBJDIR)/tar_.c \ |
| 792 | $(OBJDIR)/terminal_.c \ |
| 793 | $(OBJDIR)/th_main_.c \ |
| 794 | $(OBJDIR)/timeline_.c \ |
| 795 | $(OBJDIR)/tkt_.c \ |
| 796 | $(OBJDIR)/tktsetup_.c \ |
| 797 | $(OBJDIR)/undo_.c \ |
| @@ -928,10 +930,11 @@ | |
| 930 | $(OBJDIR)/statrep.o \ |
| 931 | $(OBJDIR)/style.o \ |
| 932 | $(OBJDIR)/sync.o \ |
| 933 | $(OBJDIR)/tag.o \ |
| 934 | $(OBJDIR)/tar.o \ |
| 935 | $(OBJDIR)/terminal.o \ |
| 936 | $(OBJDIR)/th_main.o \ |
| 937 | $(OBJDIR)/timeline.o \ |
| 938 | $(OBJDIR)/tkt.o \ |
| 939 | $(OBJDIR)/tktsetup.o \ |
| 940 | $(OBJDIR)/undo.o \ |
| @@ -1290,10 +1293,11 @@ | |
| 1293 | $(OBJDIR)/statrep_.c:$(OBJDIR)/statrep.h \ |
| 1294 | $(OBJDIR)/style_.c:$(OBJDIR)/style.h \ |
| 1295 | $(OBJDIR)/sync_.c:$(OBJDIR)/sync.h \ |
| 1296 | $(OBJDIR)/tag_.c:$(OBJDIR)/tag.h \ |
| 1297 | $(OBJDIR)/tar_.c:$(OBJDIR)/tar.h \ |
| 1298 | $(OBJDIR)/terminal_.c:$(OBJDIR)/terminal.h \ |
| 1299 | $(OBJDIR)/th_main_.c:$(OBJDIR)/th_main.h \ |
| 1300 | $(OBJDIR)/timeline_.c:$(OBJDIR)/timeline.h \ |
| 1301 | $(OBJDIR)/tkt_.c:$(OBJDIR)/tkt.h \ |
| 1302 | $(OBJDIR)/tktsetup_.c:$(OBJDIR)/tktsetup.h \ |
| 1303 | $(OBJDIR)/undo_.c:$(OBJDIR)/undo.h \ |
| @@ -2257,10 +2261,18 @@ | |
| 2261 | |
| 2262 | $(OBJDIR)/tar.o: $(OBJDIR)/tar_.c $(OBJDIR)/tar.h $(SRCDIR)/config.h |
| 2263 | $(XTCC) -o $(OBJDIR)/tar.o -c $(OBJDIR)/tar_.c |
| 2264 | |
| 2265 | $(OBJDIR)/tar.h: $(OBJDIR)/headers |
| 2266 | |
| 2267 | $(OBJDIR)/terminal_.c: $(SRCDIR)/terminal.c $(TRANSLATE) |
| 2268 | $(TRANSLATE) $(SRCDIR)/terminal.c >$@ |
| 2269 | |
| 2270 | $(OBJDIR)/terminal.o: $(OBJDIR)/terminal_.c $(OBJDIR)/terminal.h $(SRCDIR)/config.h |
| 2271 | $(XTCC) -o $(OBJDIR)/terminal.o -c $(OBJDIR)/terminal_.c |
| 2272 | |
| 2273 | $(OBJDIR)/terminal.h: $(OBJDIR)/headers |
| 2274 | |
| 2275 | $(OBJDIR)/th_main_.c: $(SRCDIR)/th_main.c $(TRANSLATE) |
| 2276 | $(TRANSLATE) $(SRCDIR)/th_main.c >$@ |
| 2277 | |
| 2278 | $(OBJDIR)/th_main.o: $(OBJDIR)/th_main_.c $(OBJDIR)/th_main.h $(SRCDIR)/config.h |
| 2279 |
+10
| --- win/Makefile.msc | ||
| +++ win/Makefile.msc | ||
| @@ -461,10 +461,11 @@ | ||
| 461 | 461 | statrep_.c \ |
| 462 | 462 | style_.c \ |
| 463 | 463 | sync_.c \ |
| 464 | 464 | tag_.c \ |
| 465 | 465 | tar_.c \ |
| 466 | + terminal_.c \ | |
| 466 | 467 | th_main_.c \ |
| 467 | 468 | timeline_.c \ |
| 468 | 469 | tkt_.c \ |
| 469 | 470 | tktsetup_.c \ |
| 470 | 471 | undo_.c \ |
| @@ -695,10 +696,11 @@ | ||
| 695 | 696 | $(OX)\statrep$O \ |
| 696 | 697 | $(OX)\style$O \ |
| 697 | 698 | $(OX)\sync$O \ |
| 698 | 699 | $(OX)\tag$O \ |
| 699 | 700 | $(OX)\tar$O \ |
| 701 | + $(OX)\terminal$O \ | |
| 700 | 702 | $(OX)\th$O \ |
| 701 | 703 | $(OX)\th_lang$O \ |
| 702 | 704 | $(OX)\th_main$O \ |
| 703 | 705 | $(OX)\th_tcl$O \ |
| 704 | 706 | $(OX)\timeline$O \ |
| @@ -899,10 +901,11 @@ | ||
| 899 | 901 | echo $(OX)\statrep.obj >> $@ |
| 900 | 902 | echo $(OX)\style.obj >> $@ |
| 901 | 903 | echo $(OX)\sync.obj >> $@ |
| 902 | 904 | echo $(OX)\tag.obj >> $@ |
| 903 | 905 | echo $(OX)\tar.obj >> $@ |
| 906 | + echo $(OX)\terminal.obj >> $@ | |
| 904 | 907 | echo $(OX)\th.obj >> $@ |
| 905 | 908 | echo $(OX)\th_lang.obj >> $@ |
| 906 | 909 | echo $(OX)\th_main.obj >> $@ |
| 907 | 910 | echo $(OX)\th_tcl.obj >> $@ |
| 908 | 911 | echo $(OX)\timeline.obj >> $@ |
| @@ -1744,10 +1747,16 @@ | ||
| 1744 | 1747 | $(OX)\tar$O : tar_.c tar.h |
| 1745 | 1748 | $(TCC) /Fo$@ -c tar_.c |
| 1746 | 1749 | |
| 1747 | 1750 | tar_.c : $(SRCDIR)\tar.c |
| 1748 | 1751 | translate$E $** > $@ |
| 1752 | + | |
| 1753 | +$(OX)\terminal$O : terminal_.c terminal.h | |
| 1754 | + $(TCC) /Fo$@ -c terminal_.c | |
| 1755 | + | |
| 1756 | +terminal_.c : $(SRCDIR)\terminal.c | |
| 1757 | + translate$E $** > $@ | |
| 1749 | 1758 | |
| 1750 | 1759 | $(OX)\th_main$O : th_main_.c th_main.h |
| 1751 | 1760 | $(TCC) /Fo$@ -c th_main_.c |
| 1752 | 1761 | |
| 1753 | 1762 | th_main_.c : $(SRCDIR)\th_main.c |
| @@ -2004,10 +2013,11 @@ | ||
| 2004 | 2013 | statrep_.c:statrep.h \ |
| 2005 | 2014 | style_.c:style.h \ |
| 2006 | 2015 | sync_.c:sync.h \ |
| 2007 | 2016 | tag_.c:tag.h \ |
| 2008 | 2017 | tar_.c:tar.h \ |
| 2018 | + terminal_.c:terminal.h \ | |
| 2009 | 2019 | th_main_.c:th_main.h \ |
| 2010 | 2020 | timeline_.c:timeline.h \ |
| 2011 | 2021 | tkt_.c:tkt.h \ |
| 2012 | 2022 | tktsetup_.c:tktsetup.h \ |
| 2013 | 2023 | undo_.c:undo.h \ |
| 2014 | 2024 |
| --- win/Makefile.msc | |
| +++ win/Makefile.msc | |
| @@ -461,10 +461,11 @@ | |
| 461 | statrep_.c \ |
| 462 | style_.c \ |
| 463 | sync_.c \ |
| 464 | tag_.c \ |
| 465 | tar_.c \ |
| 466 | th_main_.c \ |
| 467 | timeline_.c \ |
| 468 | tkt_.c \ |
| 469 | tktsetup_.c \ |
| 470 | undo_.c \ |
| @@ -695,10 +696,11 @@ | |
| 695 | $(OX)\statrep$O \ |
| 696 | $(OX)\style$O \ |
| 697 | $(OX)\sync$O \ |
| 698 | $(OX)\tag$O \ |
| 699 | $(OX)\tar$O \ |
| 700 | $(OX)\th$O \ |
| 701 | $(OX)\th_lang$O \ |
| 702 | $(OX)\th_main$O \ |
| 703 | $(OX)\th_tcl$O \ |
| 704 | $(OX)\timeline$O \ |
| @@ -899,10 +901,11 @@ | |
| 899 | echo $(OX)\statrep.obj >> $@ |
| 900 | echo $(OX)\style.obj >> $@ |
| 901 | echo $(OX)\sync.obj >> $@ |
| 902 | echo $(OX)\tag.obj >> $@ |
| 903 | echo $(OX)\tar.obj >> $@ |
| 904 | echo $(OX)\th.obj >> $@ |
| 905 | echo $(OX)\th_lang.obj >> $@ |
| 906 | echo $(OX)\th_main.obj >> $@ |
| 907 | echo $(OX)\th_tcl.obj >> $@ |
| 908 | echo $(OX)\timeline.obj >> $@ |
| @@ -1744,10 +1747,16 @@ | |
| 1744 | $(OX)\tar$O : tar_.c tar.h |
| 1745 | $(TCC) /Fo$@ -c tar_.c |
| 1746 | |
| 1747 | tar_.c : $(SRCDIR)\tar.c |
| 1748 | translate$E $** > $@ |
| 1749 | |
| 1750 | $(OX)\th_main$O : th_main_.c th_main.h |
| 1751 | $(TCC) /Fo$@ -c th_main_.c |
| 1752 | |
| 1753 | th_main_.c : $(SRCDIR)\th_main.c |
| @@ -2004,10 +2013,11 @@ | |
| 2004 | statrep_.c:statrep.h \ |
| 2005 | style_.c:style.h \ |
| 2006 | sync_.c:sync.h \ |
| 2007 | tag_.c:tag.h \ |
| 2008 | tar_.c:tar.h \ |
| 2009 | th_main_.c:th_main.h \ |
| 2010 | timeline_.c:timeline.h \ |
| 2011 | tkt_.c:tkt.h \ |
| 2012 | tktsetup_.c:tktsetup.h \ |
| 2013 | undo_.c:undo.h \ |
| 2014 |
| --- win/Makefile.msc | |
| +++ win/Makefile.msc | |
| @@ -461,10 +461,11 @@ | |
| 461 | statrep_.c \ |
| 462 | style_.c \ |
| 463 | sync_.c \ |
| 464 | tag_.c \ |
| 465 | tar_.c \ |
| 466 | terminal_.c \ |
| 467 | th_main_.c \ |
| 468 | timeline_.c \ |
| 469 | tkt_.c \ |
| 470 | tktsetup_.c \ |
| 471 | undo_.c \ |
| @@ -695,10 +696,11 @@ | |
| 696 | $(OX)\statrep$O \ |
| 697 | $(OX)\style$O \ |
| 698 | $(OX)\sync$O \ |
| 699 | $(OX)\tag$O \ |
| 700 | $(OX)\tar$O \ |
| 701 | $(OX)\terminal$O \ |
| 702 | $(OX)\th$O \ |
| 703 | $(OX)\th_lang$O \ |
| 704 | $(OX)\th_main$O \ |
| 705 | $(OX)\th_tcl$O \ |
| 706 | $(OX)\timeline$O \ |
| @@ -899,10 +901,11 @@ | |
| 901 | echo $(OX)\statrep.obj >> $@ |
| 902 | echo $(OX)\style.obj >> $@ |
| 903 | echo $(OX)\sync.obj >> $@ |
| 904 | echo $(OX)\tag.obj >> $@ |
| 905 | echo $(OX)\tar.obj >> $@ |
| 906 | echo $(OX)\terminal.obj >> $@ |
| 907 | echo $(OX)\th.obj >> $@ |
| 908 | echo $(OX)\th_lang.obj >> $@ |
| 909 | echo $(OX)\th_main.obj >> $@ |
| 910 | echo $(OX)\th_tcl.obj >> $@ |
| 911 | echo $(OX)\timeline.obj >> $@ |
| @@ -1744,10 +1747,16 @@ | |
| 1747 | $(OX)\tar$O : tar_.c tar.h |
| 1748 | $(TCC) /Fo$@ -c tar_.c |
| 1749 | |
| 1750 | tar_.c : $(SRCDIR)\tar.c |
| 1751 | translate$E $** > $@ |
| 1752 | |
| 1753 | $(OX)\terminal$O : terminal_.c terminal.h |
| 1754 | $(TCC) /Fo$@ -c terminal_.c |
| 1755 | |
| 1756 | terminal_.c : $(SRCDIR)\terminal.c |
| 1757 | translate$E $** > $@ |
| 1758 | |
| 1759 | $(OX)\th_main$O : th_main_.c th_main.h |
| 1760 | $(TCC) /Fo$@ -c th_main_.c |
| 1761 | |
| 1762 | th_main_.c : $(SRCDIR)\th_main.c |
| @@ -2004,10 +2013,11 @@ | |
| 2013 | statrep_.c:statrep.h \ |
| 2014 | style_.c:style.h \ |
| 2015 | sync_.c:sync.h \ |
| 2016 | tag_.c:tag.h \ |
| 2017 | tar_.c:tar.h \ |
| 2018 | terminal_.c:terminal.h \ |
| 2019 | th_main_.c:th_main.h \ |
| 2020 | timeline_.c:timeline.h \ |
| 2021 | tkt_.c:tkt.h \ |
| 2022 | tktsetup_.c:tktsetup.h \ |
| 2023 | undo_.c:undo.h \ |
| 2024 |