Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch version-cmd-describe Excluding Merge-Ins
This is equivalent to a diff from b0f84d8d17 to 56614cb6a9
|
2022-06-17
| ||
| 11:04 | Made a cryptic 'not found' error message when failing to resolve a symbolic name slightly less cryptic in response to confusion reported in [forum:1eaa68bb75 | forum post 1eaa68bb75]. ... (check-in: 30f669b004 user: stephan tags: trunk) | |
| 10:57 | Create a placeholder manifest.descr file via auto.def, analog to [a198cde661ca]. ... (Leaf check-in: 56614cb6a9 user: stephan tags: version-cmd-describe) | |
| 09:57 | Merged in trunk. ... (Closed-Leaf check-in: c97ad9d6d2 user: danield tags: diff-show-versions) | |
| 09:49 | Merged in trunk. ... (Closed-Leaf check-in: 20c1ba2ea9 user: danield tags: timeline-cmd-by-branch) | |
| 09:43 | Merged in trunk. ... (check-in: 6bdb2fbe99 user: danield tags: version-cmd-describe) | |
|
2022-06-15
| ||
| 17:37 | Update the built-in SQLite to the latest 3.39.0 beta, for testing. ... (check-in: b0f84d8d17 user: drh tags: trunk) | |
|
2022-06-14
| ||
| 17:42 | Latest upstream pikchr.c to enable HTML entities which contain digits. ... (check-in: b1ffe209f3 user: stephan tags: trunk) | |
Changes to auto.def.
| ︙ | |||
752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 | 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 | + + + + + + + + + + + + + + - |
}
if {[opt-bool static]} {
# Linux can only infer the dependency on pthread from OpenSSL when
# doing dynamic linkage.
define-append LIBS -lpthread
}
# If manifest.descr does not exist, create one. It's needed by the
# build process. It will normally be updated by way of the
# repository's `manifest` setting, but this file is a new (2022-06)
# part of that setting so we need to create a dummy placeholder as a
# transitionary step. We can remove this after the manifest.descr
# support has been around for a few versions.
if {![file exists manifest.descr]} {
msg-result "Creating dummy manifest.descr as transitionary step."
set fid [open manifest.descr w]
puts $fid "Placeholder manifest.descr. Will be udpated by fossil."
close $fid
}
# Create or remove tools/emcc.sh...
if {[get-define EMSDK_HOME] ne ""} {
define EMCC_WRAPPER $::autosetup(dir)/../tools/emcc.sh
make-template tools/emcc.sh.in
catch {exec chmod u+x tools/emcc.sh}
} else {
define EMCC_WRAPPER ""
catch {exec rm -f tools/emcc.sh}
}
|
Changes to src/add.c.
| ︙ | |||
60 61 62 63 64 65 66 | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + + - + |
*/
static const struct {
const char *fname;
int flg;
}aManifestflags[] = {
{ "manifest", MFESTFLG_RAW },
{ "manifest.uuid", MFESTFLG_UUID },
|
| ︙ |
Changes to src/checkin.c.
| ︙ | |||
2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 | 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 | + + | int forceDelta = 0; /* Force a delta-manifest */ int forceBaseline = 0; /* Force a baseline-manifest */ int allowConflict = 0; /* Allow unresolve merge conflicts */ int allowEmpty = 0; /* Allow a commit with no changes */ int allowFork = 0; /* Allow the commit to fork */ int allowOlder = 0; /* Allow a commit older than its ancestor */ char *zManifestFile; /* Name of the manifest file */ char *zDescrFile; /* Name of the description file */ int useCksum; /* True if checksums should be computed and verified */ int outputManifest; /* True to output "manifest" and "manifest.uuid" */ int dryRunFlag; /* True for a test run. Debugging only */ CheckinInfo sCiInfo; /* Information about this check-in */ const char *zComFile; /* Read commit message from this file */ int nTag = 0; /* Number of --tag arguments */ const char *zTag; /* A single --tag argument */ ManifestFile *pFile; /* File structure in the manifest */ Manifest *pManifest; /* Manifest structure */ Blob manifest; /* Manifest in baseline form */ Blob muuid; /* Manifest uuid */ Blob descr; /* Commit description */ Blob cksum1, cksum2; /* Before and after commit checksums */ Blob cksum1b; /* Checksum recorded in the manifest */ int szD; /* Size of the delta manifest */ int szB; /* Size of the baseline manifest */ int nConflict = 0; /* Number of unresolved merge conflicts */ int abortCommit = 0; /* Abort the commit due to text format conversions */ Blob ans; /* Answer to continuation prompts */ |
| ︙ | |||
2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 | 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 | + + + + + + + + + + + + |
zManifestFile = mprintf("%smanifest.uuid", g.zLocalRoot);
blob_zero(&muuid);
blob_appendf(&muuid, "%s\n", zUuid);
blob_write_to_file(&muuid, zManifestFile);
free(zManifestFile);
blob_reset(&muuid);
}
if( outputManifest & MFESTFLG_DESCR ){
CommitDescr cd;
zDescrFile = mprintf("%smanifest.descr", g.zLocalRoot);
blob_zero(&descr);
describe_commit(zUuid, "version*", &cd);
blob_appendf(&descr, "%s-%d-%10.10s%s\n", cd.zRelTagname, cd.nCommitsSince,
cd.zCommitHash, cd.isDirty ? "-dirty" : "");
blob_write_to_file(&descr, zDescrFile);
free(zDescrFile);
blob_reset(&descr);
}
/* Update the vfile and vmerge tables */
db_multi_exec(
"DELETE FROM vfile WHERE (vid!=%d OR deleted) AND is_selected(id);"
"DELETE FROM vmerge;"
"UPDATE vfile SET vid=%d;"
"UPDATE vfile SET rid=mrid, mhash=NULL, chnged=0, deleted=0, origname=NULL"
|
| ︙ |
Changes to src/checkout.c.
| ︙ | |||
171 172 173 174 175 176 177 178 179 180 181 182 183 184 | 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | + |
** each character as a flag to enable writing "manifest", "manifest.uuid" or
** "manifest.tags".
*/
void manifest_to_disk(int vid){
char *zManFile;
Blob manifest;
Blob taglist;
Blob descr;
int flg;
flg = db_get_manifest_setting();
if( flg & MFESTFLG_RAW ){
blob_zero(&manifest);
content_get(vid, &manifest);
|
| ︙ | |||
217 218 219 220 221 222 223 224 225 226 227 228 229 230 | 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | + + + + + + + + + + + + + + + + + |
blob_reset(&taglist);
}else{
if( !db_exists("SELECT 1 FROM vfile WHERE pathname='manifest.tags'") ){
zManFile = mprintf("%smanifest.tags", g.zLocalRoot);
file_delete(zManFile);
free(zManFile);
}
}
if( flg & MFESTFLG_DESCR ){
CommitDescr cd;
blob_zero(&descr);
zManFile = mprintf("%smanifest.descr", g.zLocalRoot);
describe_commit(rid_to_uuid(vid), "version*", &cd);
blob_appendf(&descr, "%s-%d-%10.10s%s\n", cd.zRelTagname, cd.nCommitsSince,
cd.zCommitHash, cd.isDirty ? "-dirty" : "");
blob_write_to_file(&descr, zManFile);
free(zManFile);
blob_reset(&descr);
}else{
if( !db_exists("SELECT 1 FROM vfile WHERE pathname='manifest.descr'") ){
zManFile = mprintf("%smanifest.descr", g.zLocalRoot);
file_delete(zManFile);
free(zManFile);
}
}
}
/*
** Find the branch name and all symbolic tags for a particular check-in
** identified by "rid".
**
|
| ︙ | |||
350 351 352 353 354 355 356 357 358 | 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 | + - |
uncheckout(prior);
}
db_multi_exec("DELETE FROM vfile WHERE vid!=%d", vid);
if( !keepFlag ){
vfile_to_disk(vid, 0, !g.fQuiet, promptFlag);
}
checkout_set_all_exe(vid);
db_set_checkout(vid);
manifest_to_disk(vid);
ensure_empty_dirs_created(0);
|
| ︙ |
Changes to src/db.c.
| ︙ | |||
3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 | 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 | + - + + |
}
#if INTERFACE
/* Manifest generation flags */
#define MFESTFLG_RAW 0x01
#define MFESTFLG_UUID 0x02
#define MFESTFLG_TAGS 0x04
#define MFESTFLG_DESCR 0x08
#endif /* INTERFACE */
/*
** Get the manifest setting. For backwards compatibility first check if the
** value is a boolean. If it's not a boolean, treat each character as a flag
** to enable a manifest type. This system puts certain boundary conditions on
** which letters can be used to represent flags (any permutation of flags must
** not be able to fully form one of the boolean values).
*/
int db_get_manifest_setting(void){
int flg;
char *zVal = db_get("manifest", 0);
if( zVal==0 || is_false(zVal) ){
return 0;
}else if( is_truth(zVal) ){
|
| ︙ | |||
4323 4324 4325 4326 4327 4328 4329 | 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 | - - + + + | */ /* ** SETTING: manifest width=5 versionable ** If enabled, automatically create files "manifest" and "manifest.uuid" ** in every checkout. ** ** Optionally use combinations of characters 'r' for "manifest", |
| ︙ |
Changes to src/export.c.
| ︙ | |||
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 | 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 | + + + + + + + + + + + |
if( fManifest & MFESTFLG_TAGS ){
Blob tagslist;
blob_init(&tagslist, 0, 0);
get_checkin_taglist(rid, &tagslist);
fprintf(xCmd,"M 100644 inline manifest.tags\ndata %d\n%s\n",
blob_strlen(&tagslist), blob_str(&tagslist));
blob_reset(&tagslist);
}
if( fManifest & MFESTFLG_DESCR ){
CommitDescr cd;
Blob descr;
blob_init(&descr, 0, 0);
describe_commit(rid_to_uuid(rid), "version*", &cd);
blob_appendf(&descr, "%s-%d-%10.10s\n", cd.zRelTagname,
cd.nCommitsSince, cd.zCommitHash);
fprintf(xCmd,"M 100644 inline manifest.descr\ndata %d\n%s\n",
blob_strlen(&descr), blob_str(&descr));
blob_reset(&descr);
}
/* The check-in is finished, so decrement the counter */
(*pnLimit)--;
return 0;
}
|
| ︙ |
Changes to src/info.c.
| ︙ | |||
245 246 247 248 249 250 251 | 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | - + |
}
fossil_print("check-ins: %d\n",
db_int(-1, "SELECT count(*) FROM event WHERE type='ci' /*scan*/"));
}
if( verboseFlag || !g.repositoryOpen ){
Blob vx;
char *z;
|
| ︙ |
Changes to src/main.c.
| ︙ | |||
1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 | 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 | + + + + + + + + + + + + + + + - + + - + + |
** This function returns a human readable version string.
*/
const char *get_version(){
static const char version[] = RELEASE_VERSION " " MANIFEST_VERSION " "
MANIFEST_DATE " UTC";
return version;
}
/*
** This function returns a human readable version string based on 'describe'.
*/
const char *get_describe_version(){
#ifndef MANIFEST_DESCRIPTION
#define MANIFEST_DESCRIPTION MANIFEST_VERSION
#endif
#ifndef DESCRIPTION_DATE
#define DESCRIPTION_DATE MANIFEST_DATE
#endif
static const char version[] = RELEASE_VERSION " " MANIFEST_DESCRIPTION " "
DESCRIPTION_DATE " UTC";
return version;
}
/*
** This function populates a blob with version information. It is used by
** the "version" command and "test-version" web page. It assumes the blob
** passed to it is uninitialized; otherwise, it will leak memory.
*/
void fossil_version_blob(
Blob *pOut, /* Write the manifest here */
|
| ︙ | |||
1285 1286 1287 1288 1289 1290 1291 | 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 | - + + + + + + + + + - + + + - + | return version; } /* ** COMMAND: version ** |
| ︙ |
Changes to src/main.mk.
| ︙ | |||
617 618 619 620 621 622 623 | 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 | - + - + + | # # TESTFLAGS can also include names of specific test files to limit # the run to just those test cases. # test: $(OBJDIR) $(APPNAME) $(TCLSH) $(SRCDIR)/../test/tester.tcl $(APPNAME) $(TESTFLAGS) |
| ︙ |
Changes to src/tar.c.
| ︙ | |||
514 515 516 517 518 519 520 | 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 | + + + + - - + + |
eflg |= MFESTFLG_UUID;
}
if( (pInclude==0 || glob_match(pInclude, "manifest.tags"))
&& !glob_match(pExclude, "manifest.tags")
&& (flg & MFESTFLG_TAGS) ){
eflg |= MFESTFLG_TAGS;
}
if( (pInclude==0 || glob_match(pInclude, "manifest.descr"))
&& !glob_match(pExclude, "manifest.descr")
&& (flg & MFESTFLG_DESCR) ){
eflg |= MFESTFLG_DESCR;
|
| ︙ | |||
548 549 550 551 552 553 554 555 556 557 558 559 560 561 | 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 | + + + + + + + + + + + + + + + + |
if( pTar ){
Blob tagslist;
blob_zero(&tagslist);
get_checkin_taglist(rid, &tagslist);
tar_add_file(zName, &tagslist, 0, mTime);
blob_reset(&tagslist);
}
}
if( eflg & MFESTFLG_DESCR ){
blob_resize(&filename, nPrefix);
blob_append(&filename, "manifest.descr", -1);
zName = blob_str(&filename);
if( listFlag ) fossil_print("%s\n", zName);
if( pTar ){
CommitDescr cd;
Blob descr;
blob_zero(&descr);
describe_commit(rid_to_uuid(rid), "version*", &cd);
blob_appendf(&descr, "%s-%d-%10.10s\n", cd.zRelTagname,
cd.nCommitsSince, cd.zCommitHash);
tar_add_file(zName, &descr, 0, mTime);
blob_reset(&descr);
}
}
}
manifest_file_rewind(pManifest);
while( (pFile = manifest_file_next(pManifest,0))!=0 ){
int fid;
if( pInclude!=0 && !glob_match(pInclude, pFile->zName) ) continue;
if( glob_match(pExclude, pFile->zName) ) continue;
|
| ︙ |
Changes to src/update.c.
| ︙ | |||
623 624 625 626 627 628 629 | 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 | - + |
g.zLocalRoot, g.zLocalRoot, zPwd
);
fossil_free(zPwd);
if( g.argc<=3 ){
/* All files updated. Shift the current checkout to the target. */
db_multi_exec("DELETE FROM vfile WHERE vid!=%d", tid);
checkout_set_all_exe(tid);
|
| ︙ |
Changes to src/zip.c.
| ︙ | |||
668 669 670 671 672 673 674 | 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 | + + + + - + |
eflg |= MFESTFLG_UUID;
}
if( (pInclude==0 || glob_match(pInclude, "manifest.tags"))
&& !glob_match(pExclude, "manifest.tags")
&& (flg & MFESTFLG_TAGS) ){
eflg |= MFESTFLG_TAGS;
}
if( (pInclude==0 || glob_match(pInclude, "manifest.descr"))
&& !glob_match(pExclude, "manifest.descr")
&& (flg & MFESTFLG_DESCR) ){
eflg |= MFESTFLG_DESCR;
|
| ︙ | |||
702 703 704 705 706 707 708 709 710 711 712 713 714 715 | 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 | + + + + + + + + + + + + + + + + + |
Blob tagslist;
blob_zero(&tagslist);
get_checkin_taglist(rid, &tagslist);
zip_add_folders(&sArchive, zName);
zip_add_file(&sArchive, zName, &tagslist, 0);
blob_reset(&tagslist);
}
}
if( eflg & MFESTFLG_DESCR ){
blob_resize(&filename, nPrefix);
blob_append(&filename, "manifest.descr", -1);
zName = blob_str(&filename);
if( listFlag ) fossil_print("%s\n", zName);
if( pZip ){
CommitDescr cd;
Blob descr;
blob_zero(&descr);
describe_commit(rid_to_uuid(rid), "version*", &cd);
blob_appendf(&descr, "%s-%d-%10.10s\n", cd.zRelTagname,
cd.nCommitsSince, cd.zCommitHash);
zip_add_folders(&sArchive, zName);
zip_add_file(&sArchive, zName, &descr, 0);
blob_reset(&descr);
}
}
}
manifest_file_rewind(pManifest);
if( pZip ) zip_add_file(&sArchive, "", 0, 0);
while( (pFile = manifest_file_next(pManifest,0))!=0 ){
int fid;
if( pInclude!=0 && !glob_match(pInclude, pFile->zName) ) continue;
|
| ︙ |
Changes to tools/makemake.tcl.
| ︙ | |||
408 409 410 411 412 413 414 | 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | - + - + + | # # TESTFLAGS can also include names of specific test files to limit # the run to just those test cases. # test: $(OBJDIR) $(APPNAME) $(TCLSH) $(SRCDIR)/../test/tester.tcl $(APPNAME) $(TESTFLAGS) |
| ︙ | |||
1108 1109 1110 1111 1112 1113 1114 | 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 | - - + + | # WARNING. DANGER. Running the test suite modifies the repository the # build is done from, i.e. the checkout belongs to. Do not sync/push # the repository after running the tests. test: $(OBJDIR) $(APPNAME) $(TCLSH) $(SRCDIR)/../test/tester.tcl $(APPNAME) |
| ︙ | |||
1416 1417 1418 1419 1420 1421 1422 | 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 | - + | $(OBJDIR)\th_lang$O : $(SRCDIR)\th_lang.c $(TCC) -o$@ -c $** $(OBJDIR)\cson_amalgamation.h : $(SRCDIR_extsrc)\cson_amalgamation.h cp $@ $@ |
| ︙ | |||
1978 1979 1980 1981 1982 1983 1984 | 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 | - - + + + + + | "$(OX)\th_tcl$O" : "$(SRCDIR)\th_tcl.c" $(TCC) /Fo$@ /Fd$(@D)\ -c $** "$(OX)\pikchr$O" : "$(SRCDIR_extsrc)\pikchr.c" $(TCC) $(PIKCHR_OPTIONS) /Fo$@ /Fd$(@D)\ -c $** |
| ︙ |
Changes to tools/mkversion.c.
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | - - + + + - + + - + + + + + | /* ** This C program generates the "VERSION.h" header file from information |
| ︙ | |||
91 92 93 94 95 96 97 | 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | - - + + |
int i = 0;
#endif
int j = 0, x = 0, d = 0;
size_t n;
int vn[3];
char b[1000];
char vx[1000];
|
| ︙ | |||
188 189 190 191 192 193 194 195 196 197 198 199 200 201 | 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 | + + + + + + + + + + + + + + + + + + |
z[0] = '\0';
break;
}
}
printf("#define RELEASE_RESOURCE_VERSION %s", vx);
while( d<3 ){ printf(",0"); d++; }
printf("\n");
FILE *dd = fopen(argv[4], "r");
if( dd!=0 ){
if( fgets(b, sizeof(b)-1,dd) ){
for(z=b; z[0] && z[0]!='\r' && z[0]!='\n'; z++){}
*z = 0;
printf("#define MANIFEST_DESCRIPTION \"[%s]\"\n",b);
if( strstr(b, "dirty") ){
/* If dirty, use current time. Another option would be
to use the latest mtime among the modified files. */
time_t now = time(0);
struct tm* tm_now = gmtime(&now);
char zNow[20];
strftime(zNow, sizeof(zNow), "%Y-%m-%d %H:%M:%S", tm_now);
printf("#define DESCRIPTION_DATE \"%s\"\n", zNow);
}
}
fclose(dd);
}
#if defined(__DMC__) /* e.g. 0x857 */
d = (__DMC__ & 0xF00) >> 8; /* major */
x = (__DMC__ & 0x0F0) >> 4; /* minor */
i = (__DMC__ & 0x00F); /* revision */
printf("#define COMPILER_VERSION \"%d.%d.%d\"\n", d, x, i);
#elif defined(__POCC__) /* e.g. 700 */
d = (__POCC__ / 100); /* major */
|
| ︙ |
Changes to win/Makefile.dmc.
| ︙ | |||
91 92 93 94 95 96 97 | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | - + | $(OBJDIR)\th_lang$O : $(SRCDIR)\th_lang.c $(TCC) -o$@ -c $** $(OBJDIR)\cson_amalgamation.h : $(SRCDIR_extsrc)\cson_amalgamation.h cp $@ $@ |
| ︙ |
Changes to win/Makefile.mingw.
| ︙ | |||
1052 1053 1054 1055 1056 1057 1058 | 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 | - - + + | # WARNING. DANGER. Running the test suite modifies the repository the # build is done from, i.e. the checkout belongs to. Do not sync/push # the repository after running the tests. test: $(OBJDIR) $(APPNAME) $(TCLSH) $(SRCDIR)/../test/tester.tcl $(APPNAME) |
| ︙ |
Changes to win/Makefile.mingw.mistachkin.
| ︙ | |||
1047 1048 1049 1050 1051 1052 1053 | 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 | - - + + | # WARNING. DANGER. Running the test suite modifies the repository the # build is done from, i.e. the checkout belongs to. Do not sync/push # the repository after running the tests. test: $(OBJDIR) $(APPNAME) $(TCLSH) $(SRCDIR)/../test/tester.tcl $(APPNAME) |
| ︙ |
Changes to win/Makefile.msc.
| ︙ | |||
1067 1068 1069 1070 1071 1072 1073 | 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 | - - + + + + + | "$(OX)\th_tcl$O" : "$(SRCDIR)\th_tcl.c" $(TCC) /Fo$@ /Fd$(@D)\ -c $** "$(OX)\pikchr$O" : "$(SRCDIR_extsrc)\pikchr.c" $(TCC) $(PIKCHR_OPTIONS) /Fo$@ /Fd$(@D)\ -c $** |
| ︙ |