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 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 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 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
|
#$Id: Makefile,v 1.64 1998/11/07 23:05:13 lindberg Exp $
#$Name: ezmlm-idx-0313 $
SHELL=/bin/sh
default: it
clean: \
TARGETS
rm -f `cat TARGETS`
alloc.0: \
alloc.3
nroff -man alloc.3 > alloc.0
alloc.a: \
makelib alloc.o alloc_re.o
./makelib alloc.a alloc.o alloc_re.o
alloc.o: \
compile alloc.c alloc.h alloc.c error.h alloc.c
./compile alloc.c
alloc_re.o: \
compile alloc_re.c alloc.h alloc_re.c byte.h alloc_re.c
./compile alloc_re.c
auto-ccld.sh: \
conf-cc conf-ld warn-auto.sh
( cat warn-auto.sh; \
echo CC=\'`head -1 conf-cc`\'; \
echo LD=\'`head -1 conf-ld`\' \
) > auto-ccld.sh
auto-str: \
load auto-str.o substdio.a error.a str.a
./load auto-str substdio.a error.a str.a
auto-str.o: \
compile auto-str.c substdio.h auto-str.c readwrite.h auto-str.c \
exit.h auto-str.c
./compile auto-str.c
auto_cron.c: \
auto-str conf-cron
./auto-str auto_cron `head -1 conf-cron` > auto_cron.c
auto_cron.o: \
compile auto_cron.c
./compile auto_cron.c
auto_bin.c: \
auto-str conf-bin
./auto-str auto_bin `head -1 conf-bin` > auto_bin.c
auto_bin.o: \
compile auto_bin.c
./compile auto_bin.c
auto_qmail.c: \
auto-str conf-qmail
./auto-str auto_qmail `head -1 conf-qmail` > auto_qmail.c
auto_qmail.o: \
compile auto_qmail.c
./compile auto_qmail.c
byte_chr.o: \
compile byte_chr.c byte.h byte_chr.c
./compile byte_chr.c
byte_copy.o: \
compile byte_copy.c byte.h byte_copy.c
./compile byte_copy.c
byte_cr.o: \
compile byte_cr.c byte.h byte_cr.c
./compile byte_cr.c
byte_diff.o: \
compile byte_diff.c byte.h byte_diff.c
./compile byte_diff.c
byte_rchr.o: \
compile byte_rchr.c byte.h byte_rchr.c
./compile byte_rchr.c
byte_zero.o: \
compile byte_zero.c byte.h byte_zero.c
./compile byte_zero.c
case.0: \
case.3
nroff -man case.3 > case.0
case.a: \
makelib case_diffb.o case_diffs.o case_starts.o case_lowerb.o case_startb.o
./makelib case.a case_diffb.o case_lowerb.o case_startb.o \
case_diffs.o case_starts.o
case_diffb.o: \
compile case_diffb.c case.h case_diffb.c
./compile case_diffb.c
case_diffs.o: \
compile case_diffs.c case.h
./compile case_diffs.c
case_lowerb.o: \
compile case_lowerb.c case.h case_lowerb.c
./compile case_lowerb.c
case_startb.o: \
compile case_startb.c case.h case_startb.c
./compile case_startb.c
case_starts.o: \
compile case_starts.c case.h
./compile case_starts.c
compile: \
make-compile warn-auto.sh systype
( cat warn-auto.sh; ./make-compile "`cat systype`" ) > \
compile
chmod 755 compile
constmap.o: \
compile constmap.c constmap.h constmap.c alloc.h constmap.c case.h \
constmap.c
./compile constmap.c
cookie.o: \
compile cookie.c cookie.h cookie.c str.h cookie.c uint32.h cookie.c \
surfpcs.h uint32.h surfpcs.h cookie.c
./compile cookie.c
copy.o: \
compile copy.c copy.h stralloc.h substdio.h str.h readwrite.h open.h qmail.h \
strerr.h getln.h case.h errtxt.h mime.h error.h
./compile copy.c
date822fmt.o: \
compile date822fmt.c datetime.h date822fmt.c fmt.h date822fmt.c \
date822fmt.h date822fmt.c
./compile date822fmt.c
datetime.0: \
datetime.3
nroff -man datetime.3 > datetime.0
datetime.o: \
compile datetime.c datetime.h datetime.c
./compile datetime.c
direntry.0: \
direntry.3
nroff -man direntry.3 > direntry.0
direntry.h: \
compile trydrent.c direntry.h1 direntry.h2
( ./compile trydrent.c >/dev/null 2>&1 \
&& cat direntry.h2 || cat direntry.h1 ) > direntry.h
rm -f trydrent.o
concatHDR.o: \
compile concatHDR.c mime.h stralloc.h strerr.h byte.h errtxt.h
./compile concatHDR.c
decodeB.o: \
compile decodeB.c mime.h uint32.h stralloc.h strerr.h errtxt.h
./compile decodeB.c
decodeHDR.o: \
compile decodeHDR.c mime.h stralloc.h strerr.h error.h case.h byte.h \
uint32.h errtxt.h
./compile decodeHDR.c
decodeQ.o: \
compile decodeQ.c mime.h stralloc.h strerr.h errtxt.h
./compile decodeQ.c
encodeB.o: \
compile encodeB.c mime.h uint32.h stralloc.h strerr.h errtxt.h
./compile encodeB.c
encodeQ.o: \
compile encodeQ.c mime.h stralloc.h strerr.h errtxt.h
./compile encodeQ.c
unfoldHDR.o: \
compile unfoldHDR.c mime.h stralloc.h strerr.h errtxt.h
./compile unfoldHDR.c
env.0: \
env.3
nroff -man env.3 > env.0
env.a: \
makelib env.o envread.o
./makelib env.a env.o envread.o
env.o: \
compile env.c env.h str.h
./compile env.c
envread.o: \
compile envread.c env.h envread.c str.h envread.c
./compile envread.c
error.0: \
error.3
nroff -man error.3 > error.0
error.a: \
makelib error.o error_str.o
./makelib error.a error.o error_str.o
error.o: \
compile error.c error.c error.h error.c
./compile error.c
error_str.0: \
error_str.3
nroff -man error_str.3 > error_str.0
error_str.o: \
compile error_str.c error_str.c error.h error_str.c
./compile error_str.c
error_temp.0: \
error_temp.3
nroff -man error_temp.3 > error_temp.0
ezmlm-accept: \
ezmlm-accept.sh warn-auto.sh conf-bin
(cat warn-auto.sh; \
echo EZPATH=\'`head -1 conf-bin`\'; \
cat ezmlm-accept.sh ) > ezmlm-accept
ezmlm-accept.0: \
ezmlm-accept.1
nroff -man ezmlm-accept.1 > ezmlm-accept.0
ezmlm-both: \
ezmlm-both.sh warn-auto.sh conf-bin
(cat warn-auto.sh; \
echo EZPATH=\'`head -1 conf-bin`\'; \
cat ezmlm-both.sh ) > ezmlm-both
ezmlm-both.0: \
ezmlm-both.1
nroff -man ezmlm-both.1 > ezmlm-both.0
ezmlm-check: \
ezmlm-check.sh warn-auto.sh conf-bin
(cat warn-auto.sh; \
echo EZPATH=\'`head -1 conf-bin`\'; \
echo QMPATH=\'`head -1 conf-qmail`\'; \
cat ezmlm-check.sh ) > ezmlm-check
ezmlm-check.0: \
ezmlm-check.1
nroff -man ezmlm-check.1 > ezmlm-check.0
ezmlm-gate: \
load ezmlm-gate.o subdb.a auto_bin.o getopt.a getln.a env.a sig.a strerr.a \
stralloc.a alloc.a error.a str.a case.a wait.a substdio.a open.a lock.a
./load ezmlm-gate subdb.a getopt.a getln.a auto_bin.o \
env.a sig.a \
strerr.a substdio.a stralloc.a alloc.a error.a str.a case.a wait.a \
open.a lock.a
ezmlm-gate.0: \
ezmlm-gate.1
nroff -man ezmlm-gate.1 > ezmlm-gate.0
ezmlm-gate.o: \
compile ezmlm-gate.c idx.h errtxt.h subscribe.h auto_bin.h \
sgetopt.h subgetopt.h substdio.h \
env.h sig.h strerr.h stralloc.h alloc.h error.h str.h case.h \
fork.h wait.h exit.h getln.h open.h
./compile ezmlm-gate.c
ezmlm-get: \
load ezmlm-get.o idxthread.o subdb.a auto_qmail.o getopt.a now.o getconf.o \
datetime.o date822fmt.o slurpclose.o slurp.o qmail.o quote.o cookie.o surf.a \
constmap.o getln.a env.a sig.a strerr.a substdio.a mime.a stralloc.a alloc.a \
error.a str.a fs.a case.a open.a seek.a wait.a lock.a fd.a copy.o
./load ezmlm-get idxthread.o subdb.a auto_qmail.o getopt.a getconf.o \
now.o datetime.o date822fmt.o cookie.o slurpclose.o slurp.o \
constmap.o substdio.a copy.o mime.a strerr.a stralloc.a alloc.a \
qmail.o quote.o surf.a getln.a env.a sig.a \
error.a str.a fs.a case.a \
open.a seek.a wait.a lock.a fd.a
ezmlm-get.o: \
compile ezmlm-get.c idx.h errtxt.h error.h getconf.h stralloc.h gen_alloc.h \
str.h cookie.h env.h sig.h slurp.h strerr.h byte.h getln.h case.h qmail.h \
substdio.h readwrite.h seek.h quote.h sgetopt.h subgetopt.h datetime.h now.h \
date822fmt.h fmt.h strerr.h copy.h errtxt.h idx.h idxthread.h mime.h constmap.h
./compile ezmlm-get.c
ezmlm-get.0: \
ezmlm-get.1
nroff -man ezmlm-get.1 > ezmlm-get.0
ezmlm-idx: \
load ezmlm-idx.o slurp.o slurpclose.o mime.a wait.a \
getln.a strerr.a sig.h sig.a open.a lock.a substdio.a stralloc.a \
alloc.a error.a str.a fd.a case.a fs.a getconf.o makehash.o surf.o mime.a
./load ezmlm-idx \
mime.a slurp.o slurpclose.o wait.a getln.a strerr.a sig.a open.a \
lock.a mime.a substdio.a stralloc.a alloc.a error.a str.a fd.a \
case.a fs.a getconf.o makehash.o surf.o
ezmlm-idx.o: \
compile ezmlm-idx.c stralloc.h getconf.h \
substdio.h subfd.h strerr.h error.h \
lock.h sig.h slurp.h open.h getln.h case.h \
str.h fmt.h readwrite.h exit.h idx.h mime.h errtxt.h uint32.h
./compile ezmlm-idx.c
ezmlm-idx.0: \
ezmlm-idx.1
nroff -man ezmlm-idx.1 > ezmlm-idx.0
ezmlm-clean: \
load ezmlm-clean.o auto_qmail.o getconf.o copy.o mime.a \
now.o datetime.o date822fmt.o slurpclose.o slurp.o qmail.o quote.o \
getln.a env.a sig.a strerr.a substdio.a stralloc.a alloc.a surf.a \
error.a str.a fs.a case.a open.a seek.a wait.a lock.a fd.a cookie.o getopt.a
./load ezmlm-clean auto_qmail.o getconf.o copy.o mime.a \
now.o datetime.o date822fmt.o slurpclose.o \
slurp.o qmail.o quote.o getln.a env.a sig.a strerr.a \
substdio.a stralloc.a alloc.a error.a str.a fs.a case.a \
open.a seek.a wait.a lock.a fd.a cookie.o getopt.a surf.a
ezmlm-clean.0: \
ezmlm-clean.1
nroff -man ezmlm-clean.1 > ezmlm-clean.0
ezmlm-clean.o: \
compile ezmlm-clean.c error.h stralloc.h gen_alloc.h str.h \
env.h sig.h slurp.h getconf.h strerr.h byte.h getln.h case.h copy.h mime.h \
qmail.h substdio.h readwrite.h seek.h quote.h datetime.h now.h cookie.h \
date822fmt.h direntry.h fmt.h strerr.h errtxt.h idx.h sgetopt.h subgetopt.h
./compile ezmlm-clean.c
ezmlm-cron: \
load ezmlm-cron.o strerr.a stralloc.a alloc.a error.a open.a auto_qmail.o \
getopt.a getln.a str.a substdio.a sig.a fs.a open.a fd.a lock.a wait.a \
case.a auto_cron.o
./load ezmlm-cron getopt.a getln.a strerr.a substdio.a \
stralloc.a alloc.a sig.a fs.a open.a fd.a lock.a error.a \
wait.a case.a str.a auto_qmail.o auto_cron.o
ezmlm-cron.0: \
ezmlm-cron.1
nroff -man ezmlm-cron.1 > ezmlm-cron.0
ezmlm-cron.o: \
compile ezmlm-cron.c strerr.h substdio.h stralloc.h error.h str.h \
fork.h readwrite.h wait.h errtxt.h idx.h sgetopt.h auto_qmail.h \
fmt.h auto_cron.h
./compile ezmlm-cron.c
ezmlm-issubn: \
load ezmlm-issubn.o subdb.a env.a fs.a strerr.a getln.a \
substdio.a stralloc.a alloc.a error.a str.a case.a open.a lock.a
./load ezmlm-issubn subdb.a env.a fs.a strerr.a \
getln.a substdio.a stralloc.a alloc.a error.a str.a case.a \
open.a lock.a
ezmlm-issubn.0: \
ezmlm-issubn.1
nroff -man ezmlm-issubn.1 > ezmlm-issubn.0
ezmlm-issubn.o: \
compile ezmlm-issubn.c strerr.h subscribe.h env.h errtxt.h
./compile ezmlm-issubn.c
ezmlm-list: \
load ezmlm-list.o strerr.a getln.a substdio.a stralloc.a alloc.a \
error.a open.a str.a subdb.a case.a
./load ezmlm-list subdb.a \
strerr.a getln.a substdio.a stralloc.a \
alloc.a error.a open.a str.a case.a
ezmlm-list.0: \
ezmlm-list.1
nroff -man ezmlm-list.1 > ezmlm-list.0
ezmlm-list.o: \
compile ezmlm-list.c stralloc.h gen_alloc.h stralloc.h ezmlm-list.c \
substdio.h ezmlm-list.c getln.h ezmlm-list.c strerr.h ezmlm-list.c \
error.h ezmlm-list.c readwrite.h ezmlm-list.c exit.h ezmlm-list.c \
open.h ezmlm-list.c errtxt.h subscribe.h exit.h
./compile ezmlm-list.c
ezmlm-make: \
load ezmlm-make.o auto_bin.o open.a getln.a getopt.a substdio.a strerr.a \
stralloc.a alloc.a error.a lock.a str.a
./load ezmlm-make auto_bin.o open.a getln.a getopt.a substdio.a \
strerr.a stralloc.a alloc.a error.a lock.a str.a
ezmlm-make.0: \
ezmlm-make.1
nroff -man ezmlm-make.1 > ezmlm-make.0
ezmlm-make.o: \
compile ezmlm-make.c ezmlm-make.c ezmlm-make.c sgetopt.h subgetopt.h \
sgetopt.h ezmlm-make.c stralloc.h gen_alloc.h stralloc.h ezmlm-make.c \
strerr.h ezmlm-make.c exit.h ezmlm-make.c readwrite.h ezmlm-make.c \
open.h ezmlm-make.c substdio.h ezmlm-make.c str.h ezmlm-make.c \
auto_bin.h ezmlm-make.c ezmlm-make.c ezmlm-make.c ezmlm-make.c \
errtxt.h idx.h getln.h lock.h
./compile ezmlm-make.c
ezmlm-manage: \
load ezmlm-manage.o auto_qmail.o getconf.o subdb.a log.o cookie.o \
now.o datetime.o date822fmt.o slurpclose.o slurp.o qmail.o quote.o \
surf.a getln.a env.a sig.a strerr.a substdio.a stralloc.a alloc.a \
error.a str.a fs.a case.a open.a seek.a wait.a lock.a fd.a getopt.a \
mime.a copy.o
./load ezmlm-manage auto_qmail.o getconf.o subdb.a copy.o \
mime.a log.o cookie.o now.o datetime.o date822fmt.o slurpclose.o \
slurp.o qmail.o quote.o surf.a getln.a env.a sig.a strerr.a \
substdio.a stralloc.a alloc.a error.a str.a fs.a case.a \
open.a seek.a wait.a lock.a fd.a getopt.a
ezmlm-manage.0: \
ezmlm-manage.1
nroff -man ezmlm-manage.1 > ezmlm-manage.0
ezmlm-manage.o: \
compile ezmlm-manage.c ezmlm-manage.c ezmlm-manage.c error.h \
ezmlm-manage.c stralloc.h gen_alloc.h stralloc.h ezmlm-manage.c str.h \
ezmlm-manage.c env.h ezmlm-manage.c sig.h ezmlm-manage.c slurp.h \
ezmlm-manage.c getconf.h ezmlm-manage.c strerr.h ezmlm-manage.c \
byte.h ezmlm-manage.c getln.h ezmlm-manage.c case.h ezmlm-manage.c \
qmail.h substdio.h qmail.h ezmlm-manage.c substdio.h substdio.h \
ezmlm-manage.c readwrite.h ezmlm-manage.c seek.h ezmlm-manage.c \
quote.h ezmlm-manage.c datetime.h ezmlm-manage.c now.h datetime.h \
datetime.h now.h ezmlm-manage.c date822fmt.h ezmlm-manage.c fmt.h \
ezmlm-manage.c subscribe.h strerr.h strerr.h subscribe.h \
sgetopt.h subgetopt.h cookie.h idx.h errtxt.h copy.h
./compile ezmlm-manage.c
ezmlm-glmake: \
ezmlm-glmake.sh warn-auto.sh conf-bin
(cat warn-auto.sh; \
echo EZPATH=\'`head -1 conf-bin`\'; \
cat ezmlm-glmake.sh ) > ezmlm-glmake
ezmlm-glmake.0: \
ezmlm-glmake.1
nroff -man ezmlm-glmake.1 > ezmlm-glmake.0
ezmlm-glconf: \
ezmlm-glconf.sh warn-auto.sh conf-bin
(cat warn-auto.sh; \
echo EZPATH=\'`head -1 conf-bin`\'; \
cat ezmlm-glconf.sh ) > ezmlm-glconf
ezmlm-glconf.0: \
ezmlm-glconf.1
nroff -man ezmlm-glconf.1 > ezmlm-glconf.0
ezmlm-moderate: \
load ezmlm-moderate.o auto_qmail.o getconf.o auto_bin.o copy.o mime.a \
cookie.o now.o datetime.o date822fmt.o slurpclose.o slurp.o qmail.o quote.o \
surf.a getln.a env.a sig.a strerr.a substdio.a stralloc.a alloc.a \
error.a str.a fs.a case.a open.a seek.a wait.a lock.a fd.a getopt.a
./load ezmlm-moderate auto_qmail.o getconf.o copy.o mime.a \
cookie.o now.o datetime.o date822fmt.o slurpclose.o \
slurp.o qmail.o quote.o surf.a getln.a env.a sig.a strerr.a \
substdio.a stralloc.a alloc.a error.a str.a fs.a case.a \
auto_bin.o open.a seek.a wait.a lock.a fd.a getopt.a
ezmlm-moderate.0: \
ezmlm-moderate.1
nroff -man ezmlm-moderate.1 > ezmlm-moderate.0
ezmlm-moderate.o: \
compile ezmlm-moderate.c error.h stralloc.h gen_alloc.h str.h \
env.h sig.h slurp.h getconf.h strerr.h byte.h getln.h case.h \
qmail.h substdio.h readwrite.h seek.h quote.h datetime.h now.h \
date822fmt.h fmt.h strerr.h cookie.h errtxt.h idx.h copy.h mime.h \
subgetopt.h sgetopt.h auto_bin.h fork.h wait.h
./compile ezmlm-moderate.c
ezmlm-request: \
load ezmlm-request.o getconf.o constmap.o getln.a auto_qmail.o qmail.o \
strerr.a slurpclose.o slurp.o getopt.a env.a open.a fd.a sig.a case.a \
substdio.a error.a stralloc.a alloc.a str.a case.a fs.a wait.a seek.a \
date822fmt.o now.o datetime.o quote.o subdb.a copy.o mime.a
./load ezmlm-request getconf.o constmap.o getln.a auto_qmail.o \
qmail.o date822fmt.o datetime.o now.o quote.o subdb.a \
slurpclose.o slurp.o env.a open.a sig.a wait.a getopt.a \
strerr.a substdio.a error.a copy.o stralloc.a alloc.a substdio.a \
str.a case.a fs.a fd.a sig.a wait.a seek.a mime.a
ezmlm-request.0:
nroff -man ezmlm-request.1 > ezmlm-request.0
ezmlm-request.o: \
compile ezmlm-request.c stralloc.h subfd.h strerr.h error.h qmail.h env.h \
sig.h open.h getln.h case.h str.h readwrite.h exit.h substdio.h quote.h \
getconf.h constmap.h fmt.h byte.h errtxt.h idx.h datetime.h date822fmt.h \
subscribe.h now.h copy.h
./compile ezmlm-request.c
ezmlm-reject: \
load ezmlm-reject.o getln.a strerr.a substdio.a error.a stralloc.a open.a \
alloc.a getconf.o slurp.o slurpclose.o str.a getopt.a case.a constmap.o fs.a
./load ezmlm-reject getln.a strerr.a substdio.a error.a fs.a \
constmap.o getconf.o slurp.o slurpclose.o stralloc.a alloc.a \
str.a getopt.a case.a open.a
ezmlm-reject.0: \
ezmlm-reject.1
nroff -man ezmlm-reject.1 > ezmlm-reject.0
ezmlm-reject.o: \
compile ezmlm-reject.c strerr.h ezmlm-reject.c substdio.h \
ezmlm-reject.c readwrite.h ezmlm-reject.c stralloc.h gen_alloc.h \
stralloc.h ezmlm-reject.c getln.h ezmlm-reject.c sgetopt.h \
subgetopt.h sgetopt.h constmap.h getconf.h errtxt.h scan.h fmt.h
./compile ezmlm-reject.c
ezmlm-return: \
load ezmlm-return.o quote.o getconf.o subdb.a log.o \
slurpclose.o slurp.o now.o cookie.o surf.a lock.a env.a sig.a \
strerr.a getln.a substdio.a stralloc.a alloc.a error.a str.a fs.a \
case.a open.a
./load ezmlm-return quote.o getconf.o subdb.a \
log.o slurpclose.o slurp.o now.o cookie.o surf.a lock.a \
env.a sig.a strerr.a getln.a substdio.a stralloc.a alloc.a \
error.a str.a fs.a case.a open.a
ezmlm-return.0: \
ezmlm-return.1
nroff -man ezmlm-return.1 > ezmlm-return.0
ezmlm-return.o: \
compile ezmlm-return.c stralloc.h gen_alloc.h stralloc.h \
ezmlm-return.c str.h ezmlm-return.c env.h ezmlm-return.c sig.h \
ezmlm-return.c slurp.h ezmlm-return.c getconf.h ezmlm-return.c \
strerr.h ezmlm-return.c byte.h ezmlm-return.c case.h ezmlm-return.c \
getln.h ezmlm-return.c substdio.h ezmlm-return.c error.h \
ezmlm-return.c quote.h ezmlm-return.c readwrite.h ezmlm-return.c \
fmt.h ezmlm-return.c now.h datetime.h now.h ezmlm-return.c cookie.h \
ezmlm-return.c subscribe.h strerr.h strerr.h subscribe.h \
ezmlm-return.c strerr.h strerr.h ezmlm-return.c
./compile ezmlm-return.c
ezmlm-send: \
load ezmlm-send.o auto_qmail.o getconf.o qmail.o constmap.o slurp.o \
slurpclose.o wait.a getln.a strerr.a sig.a env.a open.a lock.a \
substdio.a stralloc.a alloc.a error.a str.a fd.a case.a fs.a \
getopt.a mime.a subdb.a makehash.o surf.o makehash.o str.a quote.o
./load ezmlm-send subdb.a auto_qmail.o getconf.o getopt.a qmail.o \
quote.o constmap.o slurp.o slurpclose.o wait.a getln.a strerr.a \
sig.a env.a open.a lock.a substdio.a stralloc.a alloc.a error.a \
fd.a case.a fs.a getopt.a mime.a makehash.o surf.o str.a
ezmlm-send.0: \
ezmlm-send.1
nroff -man ezmlm-send.1 > ezmlm-send.0
ezmlm-send.o: \
compile ezmlm-send.c stralloc.h gen_alloc.h ezmlm-send.c \
subfd.h substdio.h strerr.h error.h qmail.h env.h makehash.h sgetopt.h \
lock.h sig.h open.h getln.h case.h scan.h str.h fmt.h readwrite.h quote.h \
exit.h getconf.h constmap.h byte.h errtxt.h idx.h mime.h subscribe.h uint32.h
./compile ezmlm-send.c
ezmlm-store: \
load ezmlm-store.o auto_qmail.o getconf.o subdb.a log.o auto_bin.o mime.a \
cookie.o now.o datetime.o date822fmt.o slurpclose.o slurp.o qmail.o quote.o \
surf.a getln.a env.a sig.a strerr.a substdio.a stralloc.a alloc.a \
error.a str.a fs.a case.a open.a seek.a wait.a lock.a fd.a getopt.a copy.o
./load ezmlm-store auto_qmail.o getconf.o subdb.a copy.o mime.a \
log.o cookie.o now.o datetime.o date822fmt.o slurpclose.o \
slurp.o qmail.o quote.o surf.a getln.a env.a sig.a strerr.a \
substdio.a stralloc.a alloc.a error.a str.a fs.a case.a \
open.a seek.a wait.a lock.a fd.a getopt.a auto_bin.o
ezmlm-store.0: \
ezmlm-store.1
nroff -man ezmlm-store.1 > ezmlm-store.0
ezmlm-store.o: \
compile ezmlm-store.c error.h stralloc.h gen_alloc.h str.h \
sgetopt.h subgetopt.h fork.h wait.h auto_bin.h lock.h mime.h \
env.h sig.h slurp.h getconf.h strerr.h byte.h getln.h case.h \
qmail.h substdio.h readwrite.h seek.h quote.h datetime.h now.h \
date822fmt.h fmt.h subscribe.h strerr.h cookie.h errtxt.h idx.h copy.h
./compile ezmlm-store.c
ezmlm-sub: \
load ezmlm-sub.o subdb.a log.o now.o fs.a strerr.a getln.a \
substdio.a stralloc.a alloc.a error.a str.a case.a open.a lock.a
./load ezmlm-sub subdb.a log.o now.o fs.a strerr.a \
getln.a substdio.a stralloc.a alloc.a error.a str.a case.a \
open.a lock.a
ezmlm-sub.0: \
ezmlm-sub.1
nroff -man ezmlm-sub.1 > ezmlm-sub.0
ezmlm-sub.o: \
compile ezmlm-sub.c strerr.h ezmlm-sub.c subscribe.h strerr.h \
strerr.h subscribe.h log.h errtxt.h
./compile ezmlm-sub.c
ezmlm-tstdig: \
load ezmlm-tstdig.o getopt.a getconf.o now.o fs.a strerr.a getln.a \
lock.a \
substdio.a stralloc.a alloc.a error.a str.a case.a sig.a \
open.a slurpclose.o slurp.o env.a
./load ezmlm-tstdig getopt.a getconf.o env.a now.o fs.a strerr.a \
lock.a getln.a substdio.a stralloc.a alloc.a error.a str.a case.a \
sig.a slurpclose.o slurp.o open.a
ezmlm-tstdig.0: \
ezmlm-tstdig.1
nroff -man ezmlm-tstdig.1 > ezmlm-tstdig.0
ezmlm-tstdig.o: \
compile ezmlm-tstdig.c strerr.h sgetopt.h getconf.h \
sig.h now.h errtxt.h stralloc.h sig.h env.h fmt.h substdio.h readwrite.h \
now.h
./compile ezmlm-tstdig.c
ezmlm-unsub: \
load ezmlm-unsub.o subdb.a log.o now.o fs.a strerr.a getln.a \
substdio.a stralloc.a alloc.a error.a str.a case.a open.a lock.a
./load ezmlm-unsub subdb.a log.o now.o fs.a strerr.a \
getln.a substdio.a stralloc.a alloc.a error.a str.a case.a \
open.a lock.a
ezmlm-unsub.0: \
ezmlm-unsub.1
nroff -man ezmlm-unsub.1 > ezmlm-unsub.0
ezmlm-unsub.o: \
compile ezmlm-unsub.c strerr.h ezmlm-unsub.c subscribe.h strerr.h \
strerr.h subscribe.h ezmlm-unsub.c log.h errtxt.h
./compile ezmlm-unsub.c
ezmlm-warn: \
load ezmlm-warn.o auto_qmail.o getconf.o mime.a cookie.o subdb.a now.o \
slurpclose.o slurp.o quote.o datetime.o date822fmt.o qmail.o surf.a \
case.a strerr.a sig.a getln.a substdio.a stralloc.a alloc.a error.a \
open.a lock.a str.a fs.a fd.a wait.a copy.o getopt.a
./load ezmlm-warn auto_qmail.o getconf.o mime.a \
cookie.o subdb.a getopt.a \
now.o slurpclose.o slurp.o quote.o datetime.o date822fmt.o \
qmail.o surf.a case.a strerr.a sig.a getln.a substdio.a \
stralloc.a alloc.a error.a open.a lock.a str.a fs.a fd.a \
wait.a copy.o
ezmlm-warn.0: \
ezmlm-warn.1
nroff -man ezmlm-warn.1 > ezmlm-warn.0
ezmlm-warn.o: \
compile ezmlm-warn.c ezmlm-warn.c ezmlm-warn.c direntry.h direntry.h \
direntry.h ezmlm-warn.c readwrite.h ezmlm-warn.c getln.h ezmlm-warn.c \
substdio.h ezmlm-warn.c stralloc.h gen_alloc.h stralloc.h \
ezmlm-warn.c slurp.h ezmlm-warn.c getconf.h ezmlm-warn.c byte.h \
ezmlm-warn.c error.h ezmlm-warn.c str.h ezmlm-warn.c strerr.h \
ezmlm-warn.c sig.h ezmlm-warn.c now.h datetime.h now.h ezmlm-warn.c \
datetime.h datetime.h ezmlm-warn.c date822fmt.h ezmlm-warn.c fmt.h \
ezmlm-warn.c cookie.h ezmlm-warn.c qmail.h substdio.h substdio.h \
qmail.h ezmlm-warn.c copy.h mime.h idx.h errtxt.h sgetopt.h subgetopt.h
./compile ezmlm-warn.c
ezmlm-weed: \
load ezmlm-weed.o getln.a strerr.a substdio.a error.a stralloc.a \
alloc.a str.a
./load ezmlm-weed getln.a strerr.a substdio.a error.a \
stralloc.a alloc.a str.a
ezmlm-weed.0: \
ezmlm-weed.1
nroff -man ezmlm-weed.1 > ezmlm-weed.0
ezmlm-weed.o: \
compile ezmlm-weed.c stralloc.h gen_alloc.h stralloc.h ezmlm-weed.c \
str.h ezmlm-weed.c byte.h ezmlm-weed.c readwrite.h ezmlm-weed.c \
substdio.h ezmlm-weed.c getln.h ezmlm-weed.c strerr.h ezmlm-weed.c
./compile ezmlm-weed.c
ezmlm.0: \
ezmlm.5
nroff -man ezmlm.5 > ezmlm.0
ezmlmrc.0: \
ezmlmrc.5
nroff -man ezmlmrc.5 > ezmlmrc.0
fd.a: \
makelib fd_copy.o fd_move.o
./makelib fd.a fd_copy.o fd_move.o
fd_copy.0: \
fd_copy.3
nroff -man fd_copy.3 > fd_copy.0
fd_copy.o: \
compile fd_copy.c fd_copy.c fd.h fd_copy.c
./compile fd_copy.c
fd_move.0: \
fd_move.3
nroff -man fd_move.3 > fd_move.0
fd_move.o: \
compile fd_move.c fd.h fd_move.c
./compile fd_move.c
find-systype: \
find-systype.sh auto-ccld.sh
cat auto-ccld.sh find-systype.sh > find-systype
chmod 755 find-systype
fmt_str.o: \
compile fmt_str.c fmt.h fmt_str.c
./compile fmt_str.c
fmt_uint.o: \
compile fmt_uint.c fmt.h fmt_uint.c
./compile fmt_uint.c
fmt_uint0.o: \
compile fmt_uint0.c fmt.h fmt_uint0.c
./compile fmt_uint0.c
fmt_ulong.o: \
compile fmt_ulong.c fmt.h fmt_ulong.c
./compile fmt_ulong.c
fork.h: \
compile load tryvfork.c fork.h1 fork.h2
( ( ./compile tryvfork.c && ./load tryvfork ) >/dev/null \
2>&1 \
&& cat fork.h2 || cat fork.h1 ) > fork.h
rm -f tryvfork.o tryvfork
fs.a: \
makelib fmt_str.o fmt_uint.o fmt_uint0.o fmt_ulong.o scan_ulong.o \
scan_8long.o
./makelib fs.a fmt_str.o fmt_uint.o fmt_uint0.o \
fmt_ulong.o scan_ulong.o scan_8long.o
getconf.o: \
compile getconf.c stralloc.h gen_alloc.h stralloc.h getconf.c slurp.h \
getconf.c strerr.h getconf.c getconf.h getconf.c
./compile getconf.c
getln.0: \
getln.3
nroff -man getln.3 > getln.0
getln.a: \
makelib getln.o getln2.o
./makelib getln.a getln.o getln2.o
getln.o: \
compile getln.c substdio.h getln.c byte.h getln.c stralloc.h \
gen_alloc.h stralloc.h getln.c getln.h getln.c
./compile getln.c
getln2.0: \
getln2.3
nroff -man getln2.3 > getln2.0
getln2.o: \
compile getln2.c substdio.h getln2.c stralloc.h gen_alloc.h \
stralloc.h getln2.c byte.h getln2.c getln.h getln2.c
./compile getln2.c
getopt.0: \
getopt.3
nroff -man getopt.3 > getopt.0
getopt.a: \
makelib subgetopt.o sgetopt.o
./makelib getopt.a subgetopt.o sgetopt.o
hasflock.h: \
tryflock.c compile load
( ( ./compile tryflock.c && ./load tryflock ) >/dev/null \
2>&1 \
&& echo \#define HASFLOCK 1 || exit 0 ) > hasflock.h
rm -f tryflock.o tryflock
hassgact.h: \
trysgact.c compile load
( ( ./compile trysgact.c && ./load trysgact ) >/dev/null \
2>&1 \
&& echo \#define HASSIGACTION 1 || exit 0 ) > hassgact.h
rm -f trysgact.o trysgact
install: \
load install.o getln.a strerr.a substdio.a stralloc.a alloc.a open.a \
error.a str.a fs.a
./load install getln.a strerr.a substdio.a stralloc.a \
alloc.a open.a error.a str.a fs.a
install.o: \
compile install.c substdio.h install.c stralloc.h gen_alloc.h \
stralloc.h install.c getln.h install.c readwrite.h install.c exit.h \
install.c open.h install.c error.h install.c strerr.h install.c \
byte.h install.c
./compile install.c
idxsub.o: \
compile idxsub.c stralloc.h strerr.h error.h open.h getln.h case.h \
readwrite.h substdio.h fmt.h idx.h errtxt.h byte.h
./compile idxsub.c
idxthread.o: \
compile idxthread.c alloc.h error.h stralloc.h str.h lock.h idx.h \
substdio.h fmt.h readwrite.h idx.h errtxt.h substdio.h byte.h
./compile idxthread.c
issub.o: \
compile issub.c stralloc.h gen_alloc.h stralloc.h issub.c getln.h \
issub.c readwrite.h issub.c substdio.h issub.c open.h issub.c byte.h \
issub.c case.h issub.c lock.h issub.c error.h issub.c subscribe.h \
strerr.h uint32.h issub.c
./compile issub.c
it: \
ezmlm-idx ezmlm-accept ezmlm-check ezmlm-gate ezmlm-get \
ezmlm-clean ezmlm-glconf ezmlm-glmake ezmlm-moderate ezmlm-store ezmlm-tstdig \
ezmlm-make ezmlm-manage ezmlm-send ezmlm-reject ezmlm-return \
ezmlm-warn ezmlm-weed ezmlm-list ezmlm-sub ezmlm-unsub \
ezmlm-issubn ezmlm-both ezmlm-cron ezmlm-request ezmlmrc
load: \
make-load warn-auto.sh systype
( cat warn-auto.sh; ./make-load "`cat systype`" ) > load
chmod 755 load
lock.a: \
makelib lock_ex.o
./makelib lock.a lock_ex.o
lock_ex.o: \
compile lock_ex.c lock_ex.c lock_ex.c lock_ex.c hasflock.h lock_ex.c \
lock.h lock_ex.c
./compile lock_ex.c
log.o: \
compile log.c substdio.h log.c readwrite.h log.c stralloc.h \
gen_alloc.h stralloc.h log.c log.h log.c now.h datetime.h now.h log.c \
fmt.h log.c open.h log.c
./compile log.c
make-compile: \
make-compile.sh auto-ccld.sh
cat auto-ccld.sh make-compile.sh > make-compile
chmod 755 make-compile
make-load: \
make-load.sh auto-ccld.sh
cat auto-ccld.sh make-load.sh > make-load
chmod 755 make-load
make-makelib: \
make-makelib.sh auto-ccld.sh
cat auto-ccld.sh make-makelib.sh > make-makelib
chmod 755 make-makelib
makehash.o: \
makehash.c makehash.h surf.h uint32.h
./compile makehash.c
makelib: \
make-makelib warn-auto.sh systype
( cat warn-auto.sh; ./make-makelib "`cat systype`" ) > \
makelib
chmod 755 makelib
man: \
ezmlm.0 ezmlm-gate.0 ezmlm-idx.0 ezmlm-get.0 ezmlm-check.0 ezmlm-tstdig.0 \
ezmlm-make.0 ezmlm-manage.0 ezmlm-send.0 ezmlm-reject.0 ezmlm-accept.0 \
ezmlm-return.0 ezmlm-warn.0 ezmlm-weed.0 ezmlm-list.0 ezmlm-sub.0 \
ezmlm-unsub.0 alloc.0 case.0 datetime.0 direntry.0 env.0 error.0 \
error_str.0 error_temp.0 ezmlm.0 fd_copy.0 fd_move.0 getln.0 getln2.0 \
ezmlm-issubn.0 ezmlm-both.0 ezmlm-cron.0 ezmlm-glconf.0 ezmlm-glmake.0 \
getopt.0 now.0 sgetopt.0 stralloc.0 subfd.0 subgetopt.0 substdio.0 \
substdio_copy.0 substdio_in.0 substdio_out.0 surf.0 surfpcs.0 wait.0 \
ezmlm-clean.0 ezmlm-moderate.0 ezmlm-store.0 ezmlm-request.0 ezmlmrc.0
mime.a: \
makelib concatHDR.o decodeHDR.o unfoldHDR.o \
decodeQ.o encodeQ.o decodeB.o encodeB.o
./makelib mime.a concatHDR.o decodeHDR.o decodeQ.o encodeQ.o \
decodeB.o encodeB.o unfoldHDR.o
now.0: \
now.3
nroff -man now.3 > now.0
now.o: \
compile now.c now.c datetime.h now.c now.h datetime.h datetime.h \
now.h now.c
./compile now.c
open.a: \
makelib open_append.o open_read.o open_trunc.o
./makelib open.a open_append.o open_read.o open_trunc.o
open_append.o: \
compile open_append.c open_append.c open_append.c open.h \
open_append.c
./compile open_append.c
open_read.o: \
compile open_read.c open_read.c open_read.c open.h open_read.c
./compile open_read.c
open_trunc.o: \
compile open_trunc.c open_trunc.c open_trunc.c open.h open_trunc.c
./compile open_trunc.c
putsubs.o: \
compile putsubs.c error.h substdio.h strerr.h readwrite.h \
str.h open.h case.h errtxt.h stralloc.h subscribe.h qmail.h
./compile putsubs.c
tosubs.o: \
compile tosubs.c error.h substdio.h strerr.h readwrite.h \
str.h open.h case.h errtxt.h stralloc.h subscribe.h qmail.h
./compile tosubs.c
qmail.o: \
compile qmail.c substdio.h qmail.c readwrite.h qmail.c wait.h qmail.c \
exit.h qmail.c fork.h qmail.c fd.h qmail.c qmail.h substdio.h \
substdio.h qmail.h qmail.c auto_qmail.h qmail.c
./compile qmail.c
quote.o: \
compile quote.c stralloc.h gen_alloc.h stralloc.h quote.c str.h \
quote.c quote.h quote.c
./compile quote.c
scan_8long.o: \
compile scan_8long.c scan.h scan_8long.c
./compile scan_8long.c
scan_ulong.o: \
compile scan_ulong.c scan.h scan_ulong.c
./compile scan_ulong.c
seek.a: \
makelib seek_set.o
./makelib seek.a seek_set.o
seek_set.o: \
compile seek_set.c seek_set.c seek.h seek_set.c
./compile seek_set.c
setup: \
it man install conf-bin conf-man
./install "`head -1 conf-bin`" < BIN
./install "`head -1 conf-man`" < MAN
sgetopt.0: \
sgetopt.3
nroff -man sgetopt.3 > sgetopt.0
sgetopt.o: \
compile sgetopt.c substdio.h sgetopt.c subfd.h substdio.h substdio.h \
subfd.h sgetopt.c sgetopt.h sgetopt.h subgetopt.h sgetopt.h sgetopt.c \
subgetopt.h subgetopt.h sgetopt.c
./compile sgetopt.c
shar: \
FILES BLURB README INSTALL TODO THANKS CHANGES FILES BIN MAN VERSION \
SYSDEPS Makefile ezmlm.5 ezmlm-make.1 ezmlm-make.c ezmlm-send.1 \
ezmlm-send.c ezmlm-reject.1 ezmlm-reject.c ezmlm-list.1 ezmlm-list.c \
ezmlm-sub.1 ezmlm-sub.c ezmlm-unsub.1 ezmlm-unsub.c ezmlm-manage.1 \
ezmlm-manage.c ezmlm-return.1 ezmlm-return.c ezmlm-warn.1 \
ezmlm-warn.c ezmlm-weed.1 ezmlm-weed.c getconf.h getconf.c log.h \
log.c issub.h issub.c subscribe.h subscribe.c cookie.h cookie.c \
auto-str.c conf-bin auto_bin.h conf-man install.c conf-cc conf-ld \
find-systype.sh make-compile.sh make-load.sh make-makelib.sh trycpp.c \
warn-auto.sh fork.h1 fork.h2 tryvfork.c wait.3 wait.h wait_pid.c \
trywaitp.c error.3 error_str.3 error_temp.3 error.h error.c \
error_str.c substdio.3 substdio_copy.3 substdio_in.3 substdio_out.3 \
substdio.h substdio.c substdi.c substdo.c substdio_copy.c subfd.3 \
subfd.h subfderr.c readwrite.h exit.h byte.h byte_chr.c byte_copy.c \
byte_cr.c byte_diff.c byte_rchr.c byte_zero.c str.h str_chr.c \
str_cpy.c str_diff.c str_diffn.c str_len.c str_rchr.c str_start.c \
getopt.3 sgetopt.3 subgetopt.3 sgetopt.h sgetopt.c subgetopt.h \
subgetopt.c strerr.h strerr.c strerr_sys.c strerr_die.c gen_alloc.h \
gen_allocdefs.h stralloc.3 stralloc.h stralloc_eady.c stralloc_pend.c \
stralloc_copy.c stralloc_opyb.c stralloc_opys.c stralloc_cat.c \
stralloc_catb.c stralloc_cats.c stralloc_arts.c alloc.3 alloc.h \
alloc.c alloc_re.c open.h open_append.c open_read.c open_trunc.c \
uint32.h1 uint32.h2 tryulong32.c case.3 case.h case_diffb.c \
case_lowerb.c case_startb.c fmt.h fmt_str.c fmt_uint.c fmt_uint0.c \
fmt_ulong.c scan.h scan_ulong.c scan_8long.c lock.h lock_ex.c \
tryflock.c env.3 env.h envread.c slurpclose.h slurpclose.c sig.h \
sig_catch.c sig_pipe.c trysgact.c datetime.3 datetime.h datetime.c \
date822fmt.h date822fmt.c now.3 now.h now.c quote.h quote.c seek.h \
seek_set.c conf-qmail auto_qmail.h qmail.h qmail.c direntry.3 \
direntry.h1 direntry.h2 trydrent.c getln.3 getln.h getln.c getln2.3 \
getln2.c fd.h fd_copy.3 fd_copy.c fd_move.3 fd_move.c surf.3 surf.h \
surf.c surfpcs.3 surfpcs.h surfpcs.c slurp.h slurp.c constmap.h \
constmap.c
shar -m `cat FILES` > shar
chmod 400 shar
sig.a: \
makelib sig_catch.o sig_pipe.o
./makelib sig.a sig_catch.o sig_pipe.o
sig_catch.o: \
compile sig_catch.c sig_catch.c sig.h sig_catch.c hassgact.h \
sig_catch.c
./compile sig_catch.c
sig_pipe.o: \
compile sig_pipe.c sig_pipe.c sig.h sig_pipe.c
./compile sig_pipe.c
slurp.o: \
compile slurp.c stralloc.h gen_alloc.h stralloc.h slurp.c slurp.h \
slurp.c error.h slurp.c open.h slurp.c
./compile slurp.c
slurpclose.o: \
compile slurpclose.c stralloc.h gen_alloc.h stralloc.h slurpclose.c \
readwrite.h slurpclose.c slurpclose.h slurpclose.c error.h \
slurpclose.c
./compile slurpclose.c
str.a: \
makelib str_len.o str_diff.o str_diffn.o str_cpy.o str_chr.o \
str_rchr.o str_start.o byte_chr.o byte_rchr.o byte_diff.o byte_copy.o \
byte_cr.o byte_zero.o
./makelib str.a str_len.o str_diff.o str_diffn.o str_cpy.o \
str_chr.o str_rchr.o str_start.o byte_chr.o byte_rchr.o \
byte_diff.o byte_copy.o byte_cr.o byte_zero.o
str_chr.o: \
compile str_chr.c str.h str_chr.c
./compile str_chr.c
str_cpy.o: \
compile str_cpy.c str.h str_cpy.c
./compile str_cpy.c
str_diff.o: \
compile str_diff.c str.h str_diff.c
./compile str_diff.c
str_diffn.o: \
compile str_diffn.c str.h str_diffn.c
./compile str_diffn.c
str_len.o: \
compile str_len.c str.h str_len.c
./compile str_len.c
str_rchr.o: \
compile str_rchr.c str.h str_rchr.c
./compile str_rchr.c
str_start.o: \
compile str_start.c str.h str_start.c
./compile str_start.c
stralloc.0: \
stralloc.3
nroff -man stralloc.3 > stralloc.0
stralloc.a: \
makelib stralloc_eady.o stralloc_pend.o stralloc_copy.o \
stralloc_opys.o stralloc_opyb.o stralloc_cat.o stralloc_cats.o \
stralloc_catb.o stralloc_arts.o
./makelib stralloc.a stralloc_eady.o stralloc_pend.o \
stralloc_copy.o stralloc_opys.o stralloc_opyb.o \
stralloc_cat.o stralloc_cats.o stralloc_catb.o \
stralloc_arts.o
stralloc_arts.o: \
compile stralloc_arts.c byte.h stralloc_arts.c str.h stralloc_arts.c \
stralloc.h gen_alloc.h stralloc.h stralloc_arts.c
./compile stralloc_arts.c
stralloc_cat.o: \
compile stralloc_cat.c byte.h stralloc_cat.c stralloc.h gen_alloc.h \
stralloc.h stralloc_cat.c
./compile stralloc_cat.c
stralloc_catb.o: \
compile stralloc_catb.c stralloc.h gen_alloc.h stralloc.h \
stralloc_catb.c byte.h stralloc_catb.c
./compile stralloc_catb.c
stralloc_cats.o: \
compile stralloc_cats.c byte.h stralloc_cats.c str.h stralloc_cats.c \
stralloc.h gen_alloc.h stralloc.h stralloc_cats.c
./compile stralloc_cats.c
stralloc_copy.o: \
compile stralloc_copy.c byte.h stralloc_copy.c stralloc.h gen_alloc.h \
stralloc.h stralloc_copy.c
./compile stralloc_copy.c
stralloc_eady.o: \
compile stralloc_eady.c alloc.h stralloc_eady.c stralloc.h \
gen_alloc.h stralloc.h stralloc_eady.c gen_allocdefs.h \
gen_allocdefs.h gen_allocdefs.h stralloc_eady.c
./compile stralloc_eady.c
stralloc_opyb.o: \
compile stralloc_opyb.c stralloc.h gen_alloc.h stralloc.h \
stralloc_opyb.c byte.h stralloc_opyb.c
./compile stralloc_opyb.c
stralloc_opys.o: \
compile stralloc_opys.c byte.h stralloc_opys.c str.h stralloc_opys.c \
stralloc.h gen_alloc.h stralloc.h stralloc_opys.c
./compile stralloc_opys.c
stralloc_pend.o: \
compile stralloc_pend.c alloc.h stralloc_pend.c stralloc.h \
gen_alloc.h stralloc.h stralloc_pend.c gen_allocdefs.h \
gen_allocdefs.h gen_allocdefs.h stralloc_pend.c
./compile stralloc_pend.c
strerr.a: \
makelib strerr.o strerr_sys.o strerr_die.o
./makelib strerr.a strerr.o strerr_sys.o strerr_die.o
strerr.o: \
compile strerr.c stralloc.h gen_alloc.h stralloc.h strerr.c strerr.h \
strerr.c
./compile strerr.c
strerr_die.o: \
compile strerr_die.c substdio.h strerr_die.c subfd.h substdio.h \
substdio.h subfd.h strerr_die.c exit.h strerr_die.c strerr.h \
strerr_die.c
./compile strerr_die.c
strerr_sys.o: \
compile strerr_sys.c error.h strerr_sys.c strerr.h strerr_sys.c
./compile strerr_sys.c
subdb.a: \
makelib subscribe.o issub.o tosubs.o putsubs.o
./makelib subdb.a subscribe.o issub.o tosubs.o putsubs.o
subfd.0: \
subfd.3
nroff -man subfd.3 > subfd.0
subfderr.o: \
compile subfderr.c readwrite.h subfderr.c substdio.h subfderr.c \
subfd.h substdio.h substdio.h subfd.h subfderr.c
./compile subfderr.c
subgetopt.0: \
subgetopt.3
nroff -man subgetopt.3 > subgetopt.0
subgetopt.o: \
compile subgetopt.c subgetopt.h subgetopt.h subgetopt.c
./compile subgetopt.c
subscribe.o: \
compile subscribe.c stralloc.h gen_alloc.h stralloc.h subscribe.c \
getln.h subscribe.c readwrite.h subscribe.c substdio.h subscribe.c \
strerr.h subscribe.c open.h subscribe.c byte.h subscribe.c case.h \
subscribe.c lock.h subscribe.c error.h subscribe.c uint32.h \
subscribe.c subscribe.h strerr.h strerr.h subscribe.h subscribe.c
./compile subscribe.c
substdi.o: \
compile substdi.c substdio.h substdi.c byte.h substdi.c error.h \
substdi.c
./compile substdi.c
substdio.0: \
substdio.3
nroff -man substdio.3 > substdio.0
substdio.a: \
makelib substdio.o substdi.o substdo.o subfderr.o substdio_copy.o
./makelib substdio.a substdio.o substdi.o substdo.o \
subfderr.o substdio_copy.o
substdio.o: \
compile substdio.c substdio.h substdio.c
./compile substdio.c
substdio_copy.0: \
substdio_copy.3
nroff -man substdio_copy.3 > substdio_copy.0
substdio_copy.o: \
compile substdio_copy.c substdio.h substdio_copy.c
./compile substdio_copy.c
substdio_in.0: \
substdio_in.3
nroff -man substdio_in.3 > substdio_in.0
substdio_out.0: \
substdio_out.3
nroff -man substdio_out.3 > substdio_out.0
substdo.o: \
compile substdo.c substdio.h substdo.c str.h substdo.c byte.h \
substdo.c error.h substdo.c
./compile substdo.c
surf.0: \
surf.3
nroff -man surf.3 > surf.0
surf.a: \
makelib surf.o surfpcs.o
./makelib surf.a surf.o surfpcs.o
surf.o: \
compile surf.c surf.h surf.c uint32.h surf.c
./compile surf.c
surfpcs.0: \
surfpcs.3
nroff -man surfpcs.3 > surfpcs.0
surfpcs.o: \
compile surfpcs.c surf.h surfpcs.c surfpcs.h uint32.h surfpcs.h \
surfpcs.c
./compile surfpcs.c
systype: \
find-systype trycpp.c
./find-systype > systype
uint32.h: \
tryulong32.c compile load uint32.h1 uint32.h2
( ( ./compile tryulong32.c && ./load tryulong32 && \
./tryulong32 ) >/dev/null 2>&1 \
&& cat uint32.h2 || cat uint32.h1 ) > uint32.h
rm -f tryulong32.o tryulong32
wait.0: \
wait.3
nroff -man wait.3 > wait.0
wait.a: \
makelib wait_pid.o
./makelib wait.a wait_pid.o
wait_pid.o: \
compile wait_pid.c wait_pid.c wait_pid.c error.h wait_pid.c
./compile wait_pid.c
de: \
ezmlmrc.de
cp -f ezmlmrc.de ezmlmrc
da: \
ezmlmrc.da
cp -f ezmlmrc.da ezmlmrc
en_US: \
ezmlmrc.en_US
cp -f ezmlmrc.en_US ezmlmrc
ezmlmrc: \
ezmlmrc.en_US
cp -f ezmlmrc.en_US ezmlmrc
fr: \
ezmlmrc.fr
cp -f ezmlmrc.fr ezmlmrc
jp: \
ezmlmrc.jp
cp -f ezmlmrc.jp ezmlmrc
pl: \
ezmlmrc.pl
cp -f ezmlmrc.pl ezmlmrc
pt_BR: \
ezmlmrc.pt_BR
cp -f ezmlmrc.pt_BR ezmlmrc
sv: \
ezmlmrc.sv
cp -f ezmlmrc.sv ezmlmrc
|