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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 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 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 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 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 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 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 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 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
|
--- a/Library/abs_theory/Manual/Makefile
+++ b/Library/abs_theory/Manual/Makefile
@@ -15,13 +15,13 @@
clean:; \
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg entries.tex; \
- echo "\begin{theindex}" >index.tex; \
- echo "\mbox{}" >>index.tex; \
- echo "\end{theindex}" >>index.tex
+ printf '\\begin{theindex}' >index.tex; \
+ printf '\\mbox{}' >>index.tex; \
+ printf '\\end{theindex}' >>index.tex
ids:; \
- echo "\chapter{ML Functions in the {\tt abs\_theory} Library}" >entries.tex; \
- echo "\input{entries-intro}" >>entries.tex; \
+ printf '\\chapter{ML Functions in the {\\tt abs\\_theory} Library}' >entries.tex; \
+ printf '\\input{entries-intro}' >>entries.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
index:; \
--- a/Library/arith/Manual/Makefile
+++ b/Library/arith/Manual/Makefile
@@ -26,16 +26,16 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: ids
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the arith Library}">entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the arith Library}'>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
index:
--- a/Library/finite_sets/Manual/Makefile
+++ b/Library/finite_sets/Manual/Makefile
@@ -26,45 +26,45 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: theorems ids
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the Library}">entries.tex
- @echo "\label{entries}">>entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the Library}'>entries.tex
+ @printf '\\label{entries}'>>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
- @echo "\section{The type definition}">>theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
+ @printf '\\section{The type definition}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/sdef theorems.tex
- @echo "\section{Basic properties of {\tt EMPTY}, {\tt INSERT}, and {\tt IN}}">>theorems.tex
+ @printf '\\section{Basic properties of {\\tt EMPTY}, {\\tt INSERT}, and {\\tt IN}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/basic theorems.tex
- @echo "\section{Set inclusion}">>theorems.tex
+ @printf '\\section{Set inclusion}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/subs theorems.tex
- @echo "\section{Intersection and union}">>theorems.tex
+ @printf '\\section{Intersection and union}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/unin theorems.tex
- @echo "\section{Set difference}">>theorems.tex
+ @printf '\\section{Set difference}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/diff theorems.tex
- @echo "\section{Deletion of an element}">>theorems.tex
+ @printf '\\section{Deletion of an element}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/del theorems.tex
- @echo "\section{Disjoint sets}">>theorems.tex
+ @printf '\\section{Disjoint sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/disj theorems.tex
- @echo "\section{The {\tt CHOICE} and {\tt REST} functions}">>theorems.tex
+ @printf '\\section{The {\\tt CHOICE} and {\\tt REST} functions}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/chre theorems.tex
- @echo "\section{Image of a function on a set}">>theorems.tex
+ @printf '\\section{Image of a function on a set}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/image theorems.tex
- @echo "\section{Mappings between sets}">>theorems.tex
+ @printf '\\section{Mappings between sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/fun theorems.tex
- @echo "\section{Singleton sets}">>theorems.tex
+ @printf '\\section{Singleton sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/sing theorems.tex
- @echo "\section{Cardinality of sets}">>theorems.tex
+ @printf '\\section{Cardinality of sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/card theorems.tex
index:
--- a/Library/latex-hol/Manual/Makefile
+++ b/Library/latex-hol/Manual/Makefile
@@ -28,16 +28,16 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: ids
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the {\tt latex-hol} Library}">entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the {\\tt latex-hol} Library}'>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
--- a/Library/more_arithmetic/Manual/Makefile
+++ b/Library/more_arithmetic/Manual/Makefile
@@ -26,40 +26,40 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: ids theorems
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the more\_arithmetic Library}">entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the more\\_arithmetic Library}'>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}\label{thms}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
- @echo "\section{Theorems about Inequalities}">>theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}\\label{thms}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
+ @printf '\\section{Theorems about Inequalities}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/ineq theorems.tex
- @echo "\section{Theorems about {\tt 0}}">>theorems.tex
+ @printf '\\section{Theorems about {\\tt 0}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/zero_ineq theorems.tex
- @echo "\section{Theorems about {\tt SUC}}">>theorems.tex
+ @printf '\\section{Theorems about {\\tt SUC}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/suc theorems.tex
- @echo "\section{Theorems about {\tt PRE}}">>theorems.tex
+ @printf '\\section{Theorems about {\\tt PRE}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/pre theorems.tex
- @echo "\section{Theorems about Addition}">>theorems.tex
+ @printf '\\section{Theorems about Addition}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/add theorems.tex
- @echo "\section{Theorems about Subtraction}">>theorems.tex
+ @printf '\\section{Theorems about Subtraction}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/sub theorems.tex
- @echo "\section{Theorems about Multiplication and Exponential Functions}">>theorems.tex
+ @printf '\\section{Theorems about Multiplication and Exponential Functions}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/mult theorems.tex
- @echo "\section{Theorems about Division}">>theorems.tex
+ @printf '\\section{Theorems about Division}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/div_mod theorems.tex
- @echo "\section{Theorems about Maximum and Minimum}">>theorems.tex
+ @printf '\\section{Theorems about Maximum and Minimum}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/min_max theorems.tex
- @echo "\section{Theorems about Odd and Even Numbers}">>theorems.tex
+ @printf '\\section{Theorems about Odd and Even Numbers}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/odd_even theorems.tex
index:
--- a/Library/numeral/Manual/Makefile
+++ b/Library/numeral/Manual/Makefile
@@ -15,19 +15,19 @@
clean:; \
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg entries.tex; \
- echo "\begin{theindex}" >index.tex; \
- echo "\mbox{}" >>index.tex; \
- echo "\end{theindex}" >>index.tex
+ printf '\\begin{theindex}' >index.tex; \
+ printf '\\mbox{}' >>index.tex; \
+ printf '\\end{theindex}' >>index.tex
ids:; \
- echo "\chapter{ML Functions in the numeral Library}" >entries.tex; \
- echo "\input{entries-intro}" >>entries.tex; \
+ printf '\\chapter{ML Functions in the numeral Library}' >entries.tex; \
+ printf '\\input{entries-intro}' >>entries.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
thms:; \
- echo "\chapter{Pre-proved Theorems}" > theorems.tex; \
- echo "\input{theorems-intro}" >> theorems.tex; \
- echo "\section{Numeral theory}" >> theorems.tex; \
+ printf '\\chapter{Pre-proved Theorems}' > theorems.tex; \
+ printf '\\input{theorems-intro}' >> theorems.tex; \
+ printf '\\section{Numeral theory}' >> theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/numeral theorems.tex
index:; \
--- a/Library/pair/Manual/Makefile
+++ b/Library/pair/Manual/Makefile
@@ -26,19 +26,19 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg entries.tex theorems.tex; \
- echo "\begin{theindex}" >index.tex; \
- echo "\mbox{}" >>index.tex; \
- echo "\end{theindex}" >>index.tex
+ printf '\\begin{theindex}' >index.tex; \
+ printf '\\mbox{}' >>index.tex; \
+ printf '\\end{theindex}' >>index.tex
ids:
- echo "\chapter{ML Functions in the pair Library}" >entries.tex; \
- echo "\input{entries-intro}" >>entries.tex; \
+ printf '\\chapter{ML Functions in the pair Library}' >entries.tex; \
+ printf '\\input{entries-intro}' >>entries.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
- @echo "\section{Theorems}">>theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
+ @printf '\\section{Theorems}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms theorems.tex
index:
--- a/Library/parser/Manual/Makefile
+++ b/Library/parser/Manual/Makefile
@@ -25,20 +25,20 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: ids theorems
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the parser Library}">entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the parser Library}'>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
index:
${MAKEINDEX} parser.idx index.tex
--- a/Library/pred_sets/Manual/Makefile
+++ b/Library/pred_sets/Manual/Makefile
@@ -25,47 +25,47 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: theorems ids
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the Library}">entries.tex
- @echo "\label{entries}">>entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the Library}'>entries.tex
+ @printf '\\label{entries}'>>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
- @echo "\section{Membership, equality, and set specifications}">>theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
+ @printf '\\section{Membership, equality, and set specifications}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/mem theorems.tex
- @echo "\section{The empty and universal sets}">>theorems.tex
+ @printf '\\section{The empty and universal sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/emuniv theorems.tex
- @echo "\section{Set inclusion}">>theorems.tex
+ @printf '\\section{Set inclusion}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/subs theorems.tex
- @echo "\section{Intersection and union}">>theorems.tex
+ @printf '\\section{Intersection and union}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/unin theorems.tex
- @echo "\section{Set difference}">>theorems.tex
+ @printf '\\section{Set difference}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/diff theorems.tex
- @echo "\section{Disjoint sets}">>theorems.tex
+ @printf '\\section{Disjoint sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/disj theorems.tex
- @echo "\section{Insertion and deletion of an element}">>theorems.tex
+ @printf '\\section{Insertion and deletion of an element}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/insdel theorems.tex
- @echo "\section{The {\tt CHOICE} and {\tt REST} functions}">>theorems.tex
+ @printf '\\section{The {\\tt CHOICE} and {\\tt REST} functions}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/chre theorems.tex
- @echo "\section{Image of a function on a set}">>theorems.tex
+ @printf '\\section{Image of a function on a set}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/image theorems.tex
- @echo "\section{Mappings between sets}">>theorems.tex
+ @printf '\\section{Mappings between sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/fun theorems.tex
- @echo "\section{Singleton sets}">>theorems.tex
+ @printf '\\section{Singleton sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/sing theorems.tex
- @echo "\section{Finite and infinite sets}">>theorems.tex
+ @printf '\\section{Finite and infinite sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/fin theorems.tex
- @echo "\section{Cardinality of sets}">>theorems.tex
+ @printf '\\section{Cardinality of sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/card theorems.tex
index:
--- a/Library/prettyp/Manual/Makefile
+++ b/Library/prettyp/Manual/Makefile
@@ -26,16 +26,16 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: ids
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the prettyp Library}">entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the prettyp Library}'>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
index:
--- a/Library/reals/Manual/Makefile
+++ b/Library/reals/Manual/Makefile
@@ -15,34 +15,34 @@
clean:; \
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg; \
- echo "\begin{theindex}" >index.tex; \
- echo "\mbox{}" >>index.tex; \
- echo "\end{theindex}" >>index.tex
+ printf '\\begin{theindex}' >index.tex; \
+ printf '\\mbox{}' >>index.tex; \
+ printf '\\end{theindex}' >>index.tex
tex: theorems
theorems:; \
- echo "\chapter{Pre-proved Theorems}" >theorems.tex; \
- echo "\input{theorems-intro}" >>theorems.tex; \
- echo "\section{HRAT}" >>theorems.tex; \
+ printf '\\chapter{Pre-proved Theorems}' >theorems.tex; \
+ printf '\\input{theorems-intro}' >>theorems.tex; \
+ printf '\\section{HRAT}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/HRAT theorems.tex; \
- echo "\section{HREAL}" >>theorems.tex; \
+ printf '\\section{HREAL}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/HREAL theorems.tex; \
- echo "\section{REALAX}" >>theorems.tex; \
+ printf '\\section{REALAX}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/REALAX theorems.tex; \
- echo "\section{REAL}" >>theorems.tex; \
+ printf '\\section{REAL}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/REAL theorems.tex; \
- echo "\section{TOPOLOGY}" >>theorems.tex; \
+ printf '\\section{TOPOLOGY}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/TOPOLOGY theorems.tex; \
- echo "\section{NETS}" >>theorems.tex; \
+ printf '\\section{NETS}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/NETS theorems.tex; \
- echo "\section{LIM}" >>theorems.tex; \
+ printf '\\section{LIM}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/LIM theorems.tex; \
- echo "\section{SEQ}" >>theorems.tex; \
+ printf '\\section{SEQ}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/SEQ theorems.tex; \
- echo "\section{POWSER}" >>theorems.tex; \
+ printf '\\section{POWSER}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/POWSER theorems.tex; \
- echo "\section{TRANSC}" >>theorems.tex; \
+ printf '\\section{TRANSC}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/TRANSC theorems.tex
reals:; \
--- a/Library/record_proof/Manual/Makefile
+++ b/Library/record_proof/Manual/Makefile
@@ -27,17 +27,17 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: functions
@echo "TeX files made"
functions:
- @echo "\chapter{ML Functions in the {\tt record\_proof} Library}">entries.tex
- @echo "\label{entries}">>entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the {\\tt record\\_proof} Library}'>entries.tex
+ @printf '\\label{entries}'>>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help} entries.tex
index:
--- a/Library/reduce/Manual/Makefile
+++ b/Library/reduce/Manual/Makefile
@@ -15,13 +15,13 @@
clean:; \
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg entries.tex; \
- echo "\begin{theindex}" >index.tex; \
- echo "\mbox{}" >>index.tex; \
- echo "\end{theindex}" >>index.tex
+ printf '\\begin{theindex}' >index.tex; \
+ printf '\\mbox{}' >>index.tex; \
+ printf '\\end{theindex}' >>index.tex
ids:; \
- echo "\chapter{ML Functions in the reduce Library}" >entries.tex; \
- echo "\input{entries-intro}" >>entries.tex; \
+ printf '\\chapter{ML Functions in the reduce Library}' >entries.tex; \
+ printf '\\input{entries-intro}' >>entries.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
index:; \
--- a/Library/res_quan/Manual/Makefile
+++ b/Library/res_quan/Manual/Makefile
@@ -27,22 +27,22 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: theorems functions
@echo "TeX files made"
functions:
- @echo "\chapter{ML Functions in the {\tt res\_quan} Library}">entries.tex
- @echo "\label{entries}">>entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the {\\tt res\\_quan} Library}'>entries.tex
+ @printf '\\label{entries}'>>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms theorems.tex
index:
--- a/Library/sets/Manual/Makefile
+++ b/Library/sets/Manual/Makefile
@@ -26,49 +26,49 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: theorems ids
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the sets Library}">entries.tex
- @echo "\label{entries}">>entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the sets Library}'>entries.tex
+ @printf '\\label{entries}'>>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
- @echo "\section{The type definition}">>theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
+ @printf '\\section{The type definition}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/sdef theorems.tex
- @echo "\section{Membership, equality, and set specifications}">>theorems.tex
+ @printf '\\section{Membership, equality, and set specifications}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/mem theorems.tex
- @echo "\section{The empty and universal sets}">>theorems.tex
+ @printf '\\section{The empty and universal sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/emuniv theorems.tex
- @echo "\section{Set inclusion}">>theorems.tex
+ @printf '\\section{Set inclusion}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/subs theorems.tex
- @echo "\section{Intersection and union}">>theorems.tex
+ @printf '\\section{Intersection and union}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/unin theorems.tex
- @echo "\section{Set difference}">>theorems.tex
+ @printf '\\section{Set difference}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/diff theorems.tex
- @echo "\section{Disjoint sets}">>theorems.tex
+ @printf '\\section{Disjoint sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/disj theorems.tex
- @echo "\section{Insertion and deletion of an element}">>theorems.tex
+ @printf '\\section{Insertion and deletion of an element}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/insdel theorems.tex
- @echo "\section{The {\tt CHOICE} and {\tt REST} functions}">>theorems.tex
+ @printf '\\section{The {\\tt CHOICE} and {\\tt REST} functions}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/chre theorems.tex
- @echo "\section{Image of a function on a set}">>theorems.tex
+ @printf '\\section{Image of a function on a set}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/image theorems.tex
- @echo "\section{Mappings between sets}">>theorems.tex
+ @printf '\\section{Mappings between sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/fun theorems.tex
- @echo "\section{Singleton sets}">>theorems.tex
+ @printf '\\section{Singleton sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/sing theorems.tex
- @echo "\section{Finite and infinite sets}">>theorems.tex
+ @printf '\\section{Finite and infinite sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/fin theorems.tex
- @echo "\section{Cardinality of sets}">>theorems.tex
+ @printf '\\section{Cardinality of sets}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/card theorems.tex
index:
--- a/Library/string/Manual/Makefile
+++ b/Library/string/Manual/Makefile
@@ -26,24 +26,24 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: ids theorems
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the string Library}">entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the string Library}'>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
- @echo "\section{Definitions}">>theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
+ @printf '\\section{Definitions}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/defs theorems.tex
- @echo "\section{Theorems}">>theorems.tex
+ @printf '\\section{Theorems}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms theorems.tex
index:
--- a/Library/taut/Manual/Makefile
+++ b/Library/taut/Manual/Makefile
@@ -26,16 +26,16 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: ids
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the taut Library}">entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the taut Library}'>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
index:
--- a/Library/trs/Manual/Makefile
+++ b/Library/trs/Manual/Makefile
@@ -26,16 +26,16 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: ids
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the trs Library}">entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the trs Library}'>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
index:
--- a/Library/unwind/Manual/Makefile
+++ b/Library/unwind/Manual/Makefile
@@ -26,16 +26,16 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: ids
@echo "TeX files made"
ids:
- @echo "\chapter{ML Functions in the unwind Library}">entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the unwind Library}'>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
index:
--- a/Library/wellorder/Manual/Makefile
+++ b/Library/wellorder/Manual/Makefile
@@ -14,26 +14,26 @@
clean:; \
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg entries.tex; \
- echo "\begin{theindex}" >index.tex; \
- echo "\mbox{}" >>index.tex; \
- echo "\end{theindex}" >>index.tex
+ printf '\\begin{theindex}' >index.tex; \
+ printf '\\mbox{}' >>index.tex; \
+ printf '\\end{theindex}' >>index.tex
tex: theorems ids
ids:; \
- echo "\chapter{ML Functions in the wellorder Library}" >entries.tex;\
- echo "\label{entries}" >>entries.tex; \
- echo "\input{entries-intro}" >>entries.tex; \
+ printf '\\chapter{ML Functions in the wellorder Library}' >entries.tex;\
+ printf '\\label{entries}' >>entries.tex; \
+ printf '\\input{entries-intro}' >>entries.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:; \
- echo "\chapter{Pre-proved Theorems}" >theorems.tex; \
- echo "\input{theorems-intro}" >>theorems.tex; \
- echo "\section{Basic definitions}" >>theorems.tex; \
+ printf '\\chapter{Pre-proved Theorems}' >theorems.tex; \
+ printf '\\input{theorems-intro}' >>theorems.tex; \
+ printf '\\section{Basic definitions}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/defs theorems.tex; \
- echo "\section{Miscellaneous lemmas}" >>theorems.tex; \
+ printf '\\section{Miscellaneous lemmas}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/lemmas theorems.tex;\
- echo "\section{Main theorems}" >>theorems.tex; \
+ printf '\\section{Main theorems}' >>theorems.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/main theorems.tex
wellorder:; \
--- a/Library/window/Manual/Makefile
+++ b/Library/window/Manual/Makefile
@@ -26,24 +26,24 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg entries.tex *.bak; \
- echo "\begin{theindex}" >index.tex; \
- echo "\mbox{}" >>index.tex; \
- echo "\end{theindex}" >>index.tex
+ printf '\\begin{theindex}' >index.tex; \
+ printf '\\mbox{}' >>index.tex; \
+ printf '\\end{theindex}' >>index.tex
tex: ids theorems
@echo "TeX files makde"
ids:
- echo "\chapter{ML Functions in the window Library}" >entries.tex; \
- echo "\input{entries-intro}" >>entries.tex; \
+ printf '\\chapter{ML Functions in the window Library}' >entries.tex; \
+ printf '\\input{entries-intro}' >>entries.tex; \
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
- @echo "\section{Definitions}">>theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
+ @printf '\\section{Definitions}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/defs theorems.tex
- @echo "\section{Theorems}">>theorems.tex
+ @printf '\\section{Theorems}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms theorems.tex
index:
--- a/Library/word/Manual/Makefile
+++ b/Library/word/Manual/Makefile
@@ -27,33 +27,33 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: theorems functions
@echo "TeX files made"
functions:
- @echo "\chapter{ML Functions in the {\tt word} Library}">entries.tex
- @echo "\label{entries}">>entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the {\\tt word} Library}'>entries.tex
+ @printf '\\label{entries}'>>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/entries entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
- @echo "\section{The theory {\tt word\_base}}">>theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
+ @printf '\\section{The theory {\\tt word\\_base}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/word_base theorems.tex
- @echo "\section{The theory {\tt word\_bitop}}">>theorems.tex
+ @printf '\\section{The theory {\\tt word\\_bitop}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/word_bitop theorems.tex
- @echo "\section{The theory {\tt word\_num}}">>theorems.tex
+ @printf '\\section{The theory {\\tt word\\_num}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/word_num theorems.tex
- @echo "\section{The theory {\tt bword\_bitop}}">>theorems.tex
+ @printf '\\section{The theory {\\tt bword\\_bitop}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/bword_bitop theorems.tex
- @echo "\section{The theory {\tt bword\_num}}">>theorems.tex
+ @printf '\\section{The theory {\\tt bword\\_num}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/bword_num theorems.tex
- @echo "\section{The theory {\tt bword\_arith}}">>theorems.tex
+ @printf '\\section{The theory {\\tt bword\\_arith}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/thms/bword_arith theorems.tex
index:
--- a/Manual/Reference/Makefile
+++ b/Manual/Reference/Makefile
@@ -19,46 +19,46 @@
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: ids theorems
@echo "TeX files made"
ids:
- @echo "\chapter{Pre-defined ML Identifiers}" > entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{Pre-defined ML Identifiers}' > entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/ENTRIES entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
- @echo "\section{Definitions of Basic Logical Constants}">>theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
+ @printf '\\section{Definitions of Basic Logical Constants}'>>theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/basic-logic theorems.tex
- @echo "\section{Constants for syntactic abbreviations}" >> theorems.tex
+ @printf '\\section{Constants for syntactic abbreviations}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/syntax theorems.tex
- @echo "\section{Axioms}" >> theorems.tex
+ @printf '\\section{Axioms}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/axioms theorems.tex
- @echo "\section{Logical tautologies}" >> theorems.tex
+ @printf '\\section{Logical tautologies}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/logic theorems.tex
- @echo "\section{Theorems about functions}" >> theorems.tex
+ @printf '\\section{Theorems about functions}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/functions theorems.tex
- @echo "\section{Theorems about the type {\tt one}}" >> theorems.tex
+ @printf '\\section{Theorems about the type {\\tt one}}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/one theorems.tex
- @echo "\section{Theorems about combinators}" >> theorems.tex
+ @printf '\\section{Theorems about combinators}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/combin theorems.tex
- @echo "\section{Theorems about pairs}" >> theorems.tex
+ @printf '\\section{Theorems about pairs}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/pairs theorems.tex
- @echo "\section{Theorems about disjoint sums}" >> theorems.tex
+ @printf '\\section{Theorems about disjoint sums}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/sum theorems.tex
- @echo "\section{Theorems about arithmetic}" >> theorems.tex
+ @printf '\\section{Theorems about arithmetic}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/arith theorems.tex
- @echo "\section{Theorems about lists}" >> theorems.tex
+ @printf '\\section{Theorems about lists}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/list theorems.tex
- @echo "\section{Theorems about trees}" >> theorems.tex
+ @printf '\\section{Theorems about trees}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/tree theorems.tex
- @echo "\section{Theorems used to define types}" >> theorems.tex
+ @printf '\\section{Theorems used to define types}' >> theorems.tex
/bin/sh bin/doc-to-tex ${D2TSED} ${Helpd}/THEOREMS/tydefs theorems.tex
reference:
--- a/contrib/wordn/Manual/Makefile
+++ b/contrib/wordn/Manual/Makefile
@@ -26,27 +26,27 @@
# ---------------------------------------------------------------------
clean:
rm -f *.dvi *.aux *.toc *.log *.idx *.ilg
- @echo "\begin{theindex}" > index.tex
- @echo "\mbox{}" >> index.tex
- @echo "\end{theindex}" >> index.tex
+ @printf '\\begin{theindex}' > index.tex
+ @printf '\\mbox{}' >> index.tex
+ @printf '\\end{theindex}' >> index.tex
tex: entries theorems
@echo "TeX files made"
entries:
- @echo "\chapter{ML Functions in the wordn Library}">entries.tex
- @echo "\label{entries}">>entries.tex
- @echo "\input{entries-intro}" >> entries.tex
+ @printf '\\chapter{ML Functions in the wordn Library}'>entries.tex
+ @printf '\\label{entries}'>>entries.tex
+ @printf '\\input{entries-intro}' >> entries.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/ENTRIES entries.tex
theorems:
- @echo "\chapter{Pre-proved Theorems}" > theorems.tex
- @echo "\input{theorems-intro}" >> theorems.tex
- @echo "\section{The theory {\tt wordn\_base}}">>theorems.tex
+ @printf '\\chapter{Pre-proved Theorems}' > theorems.tex
+ @printf '\\input{theorems-intro}' >> theorems.tex
+ @printf '\\section{The theory {\\tt wordn\\_base}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/THEOREMS/base theorems.tex
- @echo "\section{The theory {\tt wordn\_bitops}}">>theorems.tex
+ @printf '\\section{The theory {\\tt wordn\\_bitops}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/THEOREMS/bitops theorems.tex
- @echo "\section{The theory {\tt wordn\_num}}">>theorems.tex
+ @printf '\\section{The theory {\\tt wordn\\_num}}'>>theorems.tex
/bin/sh ${DOCTOTEX} ${DOCTOTEXSED} ${Help}/THEOREMS/num theorems.tex
index:
|