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
|
# To setup Visual Studio for command line compilation, execute vcvarsall.bat:
# c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC>vcvarsall.bat
# To run the makefile:
# nmake -f makefile.win
OBJS = agenda.obj analysis.obj argacces.obj bload.obj bmathfun.obj bsave.obj \
classcom.obj classexm.obj classfun.obj classinf.obj classini.obj \
classpsr.obj clsltpsr.obj commline.obj conscomp.obj constrct.obj \
constrnt.obj crstrtgy.obj cstrcbin.obj cstrccom.obj cstrcpsr.obj \
cstrnbin.obj cstrnchk.obj cstrncmp.obj cstrnops.obj cstrnpsr.obj \
cstrnutl.obj default.obj defins.obj developr.obj dffctbin.obj dffctbsc.obj \
dffctcmp.obj dffctdef.obj dffctpsr.obj dffnxbin.obj dffnxcmp.obj \
dffnxexe.obj dffnxfun.obj dffnxpsr.obj dfinsbin.obj dfinscmp.obj drive.obj \
emathfun.obj \
engine.obj envrnmnt.obj evaluatn.obj expressn.obj exprnbin.obj exprnops.obj \
exprnpsr.obj extnfunc.obj factbin.obj factbld.obj factcmp.obj factcom.obj \
factfun.obj factgen.obj facthsh.obj factlhs.obj factmch.obj factmngr.obj \
factprt.obj factqpsr.obj factqury.obj factrete.obj factrhs.obj filecom.obj \
filertr.obj generate.obj genrcbin.obj genrccmp.obj genrccom.obj genrcexe.obj \
genrcfun.obj genrcpsr.obj globlbin.obj globlbsc.obj globlcmp.obj globlcom.obj \
globldef.obj globlpsr.obj immthpsr.obj incrrset.obj inherpsr.obj \
inscom.obj insfile.obj insfun.obj insmngr.obj insmoddp.obj insmult.obj \
inspsr.obj insquery.obj insqypsr.obj iofun.obj lgcldpnd.obj main.obj\
memalloc.obj miscfun.obj modulbin.obj modulbsc.obj modulcmp.obj moduldef.obj \
modulpsr.obj modulutl.obj msgcom.obj msgfun.obj msgpass.obj msgpsr.obj \
multifld.obj multifun.obj objbin.obj objcmp.obj objrtbin.obj objrtbld.obj \
objrtcmp.obj objrtfnx.obj objrtgen.obj objrtmch.obj parsefun.obj pattern.obj \
pprint.obj prccode.obj prcdrfun.obj prcdrpsr.obj prdctfun.obj prntutil.obj \
proflfun.obj reorder.obj reteutil.obj retract.obj router.obj rulebin.obj \
rulebld.obj rulebsc.obj rulecmp.obj rulecom.obj rulecstr.obj ruledef.obj \
ruledlt.obj rulelhs.obj rulepsr.obj scanner.obj sortfun.obj strngfun.obj \
strngrtr.obj symblbin.obj symblcmp.obj symbol.obj sysdep.obj textpro.obj \
tmpltbin.obj tmpltbsc.obj tmpltcmp.obj tmpltdef.obj tmpltfun.obj tmpltlhs.obj \
tmpltpsr.obj tmpltrhs.obj tmpltutl.obj userdata.obj userfunctions.obj \
utility.obj watch.obj
.c.obj :
cl -c -DWIN_MVC $<
clips : $(OBJS)
cl /Fe"clips.exe" $(OBJS)
agenda.obj: agenda.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h crstrtgy.h agenda.h \
ruledef.h constrnt.h cstrccom.h network.h match.h pattern.h reorder.h \
engine.h lgcldpnd.h retract.h memalloc.h modulutl.h reteutil.h \
router.h prntutil.h rulebsc.h strngrtr.h sysdep.h watch.h
analysis.obj: analysis.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h reorder.h ruledef.h \
conscomp.h constrct.h moduldef.h modulpsr.h utility.h symblcmp.h \
constrnt.h cstrccom.h agenda.h match.h network.h pattern.h generate.h \
analysis.h router.h prntutil.h cstrnchk.h cstrnutl.h cstrnops.h \
rulecstr.h modulutl.h watch.h rulepsr.h globldef.h
argacces.obj: argacces.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h router.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h cstrnchk.h \
constrnt.h insfun.h object.h match.h network.h ruledef.h cstrccom.h \
agenda.h pattern.h reorder.h factmngr.h facthsh.h tmpltdef.h factbld.h \
sysdep.h argacces.h
bload.obj: bload.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h bsave.h cstrnbin.h \
constrnt.h memalloc.h router.h prntutil.h bload.h exprnbin.h sysdep.h \
symblbin.h
bmathfun.obj: bmathfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h router.h prntutil.h \
bmathfun.h
bsave.obj: bsave.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h bload.h exprnbin.h sysdep.h \
symblbin.h cstrnbin.h constrnt.h memalloc.h router.h prntutil.h \
bsave.h
classcom.obj: classcom.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h argacces.h moduldef.h conscomp.h constrct.h symblcmp.h \
modulpsr.h classfun.h object.h constrnt.h match.h network.h ruledef.h \
cstrccom.h agenda.h pattern.h reorder.h classini.h modulutl.h msgcom.h \
msgpass.h router.h prntutil.h classcom.h
classexm.obj: classexm.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h classcom.h cstrccom.h \
object.h constrnt.h match.h network.h ruledef.h agenda.h pattern.h \
reorder.h classfun.h classini.h insfun.h memalloc.h msgcom.h msgpass.h \
msgfun.h router.h prntutil.h strngrtr.h sysdep.h classexm.h
classfun.obj: classfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h classcom.h cstrccom.h moduldef.h conscomp.h constrct.h \
symblcmp.h modulpsr.h object.h constrnt.h match.h network.h ruledef.h \
agenda.h pattern.h reorder.h classini.h cstrcpsr.h inscom.h insfun.h \
insmngr.h memalloc.h modulutl.h msgfun.h msgpass.h router.h prntutil.h \
classfun.h
classinf.obj: classinf.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h classcom.h cstrccom.h \
object.h constrnt.h match.h network.h ruledef.h agenda.h pattern.h \
reorder.h classexm.h classfun.h classini.h memalloc.h insfun.h \
msgcom.h msgpass.h msgfun.h prntutil.h classinf.h
classini.obj: classini.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classcom.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
classexm.h classfun.h classinf.h classpsr.h cstrcpsr.h inscom.h \
insfun.h memalloc.h modulutl.h msgcom.h msgpass.h watch.h defins.h \
insquery.h bload.h exprnbin.h sysdep.h symblbin.h objbin.h objcmp.h \
objrtbld.h objrtfnx.h objrtmch.h classini.h
classpsr.obj: classpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h classcom.h cstrccom.h moduldef.h conscomp.h constrct.h \
symblcmp.h modulpsr.h object.h constrnt.h match.h network.h ruledef.h \
agenda.h pattern.h reorder.h classfun.h clsltpsr.h cstrcpsr.h \
inherpsr.h memalloc.h modulutl.h msgpsr.h router.h prntutil.h \
classpsr.h
clsltpsr.obj: clsltpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classcom.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
classfun.h cstrnchk.h cstrnpsr.h cstrnutl.h default.h insfun.h \
memalloc.h prntutil.h router.h clsltpsr.h
commline.obj: commline.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h cstrcpsr.h filecom.h \
memalloc.h prcdrfun.h prcdrpsr.h constrnt.h router.h prntutil.h \
strngrtr.h sysdep.h commline.h
conscomp.obj: conscomp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h argacces.h \
cstrncmp.h constrnt.h router.h prntutil.h sysdep.h modulcmp.h \
network.h match.h pattern.h reorder.h ruledef.h agenda.h dffnxcmp.h \
dffnxfun.h tmpltcmp.h globlcmp.h genrccmp.h genrcfun.h object.h \
objcmp.h
constrct.obj: constrct.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
watch.h prcdrfun.h prcdrpsr.h constrnt.h argacces.h modulutl.h \
sysdep.h commline.h cstrcpsr.h ruledef.h cstrccom.h agenda.h match.h \
network.h pattern.h reorder.h
constrnt.obj: constrnt.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h memalloc.h router.h \
prntutil.h constrnt.h
crstrtgy.obj: crstrtgy.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h pattern.h match.h network.h ruledef.h \
conscomp.h constrct.h moduldef.h modulpsr.h utility.h symblcmp.h \
constrnt.h cstrccom.h agenda.h reorder.h reteutil.h argacces.h \
memalloc.h crstrtgy.h
cstrcbin.obj: cstrcbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h bsave.h moduldef.h conscomp.h constrct.h symblcmp.h \
modulpsr.h cstrcbin.h
cstrccom.obj: cstrccom.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h argacces.h modulutl.h \
router.h prntutil.h commline.h sysdep.h bload.h exprnbin.h symblbin.h \
cstrcpsr.h cstrccom.h
cstrcpsr.obj: cstrcpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h router.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h watch.h \
prcdrpsr.h constrnt.h memalloc.h modulutl.h sysdep.h cstrcpsr.h
cstrnbin.obj: cstrnbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
bload.h exprnbin.h sysdep.h symblbin.h bsave.h cstrnbin.h constrnt.h
cstrnchk.obj: cstrnchk.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h router.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h cstrnutl.h \
constrnt.h inscom.h object.h match.h network.h ruledef.h cstrccom.h \
agenda.h pattern.h reorder.h insfun.h classcom.h classexm.h cstrnchk.h
cstrncmp.obj: cstrncmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h conscomp.h constrct.h moduldef.h \
modulpsr.h utility.h symblcmp.h memalloc.h router.h prntutil.h \
sysdep.h cstrncmp.h constrnt.h
cstrnops.obj: cstrnops.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
constrnt.h cstrnchk.h cstrnutl.h cstrnops.h
cstrnpsr.obj: cstrnpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
cstrnutl.h constrnt.h cstrnchk.h sysdep.h cstrnpsr.h
cstrnutl.obj: cstrnutl.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
argacces.h cstrnutl.h constrnt.h
default.obj: default.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h constrnt.h cstrnchk.h inscom.h object.h \
constrct.h moduldef.h conscomp.h symblcmp.h modulpsr.h utility.h \
match.h network.h ruledef.h cstrccom.h agenda.h pattern.h reorder.h \
insfun.h router.h prntutil.h factmngr.h facthsh.h tmpltdef.h factbld.h \
cstrnutl.h default.h
defins.obj: defins.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h dfinsbin.h defins.h conscomp.h constrct.h moduldef.h \
modulpsr.h symblcmp.h cstrccom.h object.h constrnt.h match.h network.h \
ruledef.h agenda.h pattern.h reorder.h dfinscmp.h argacces.h \
classcom.h classfun.h cstrcpsr.h insfun.h inspsr.h memalloc.h router.h \
prntutil.h
developr.obj: developr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h inscom.h object.h \
constrnt.h match.h network.h ruledef.h cstrccom.h agenda.h pattern.h \
reorder.h insfun.h modulutl.h router.h prntutil.h tmpltdef.h factbld.h \
factmngr.h facthsh.h classcom.h classfun.h objrtmch.h developr.h
dffctbin.obj: dffctbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h dffctdef.h conscomp.h \
constrct.h moduldef.h modulpsr.h utility.h symblcmp.h cstrccom.h \
bload.h exprnbin.h sysdep.h symblbin.h bsave.h dffctbin.h modulbin.h \
cstrcbin.h
dffctbsc.obj: dffctbsc.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h memalloc.h router.h \
prntutil.h cstrccom.h factrhs.h factmngr.h facthsh.h pattern.h match.h \
network.h ruledef.h constrnt.h agenda.h reorder.h tmpltdef.h factbld.h \
cstrcpsr.h dffctpsr.h dffctdef.h dffctbin.h modulbin.h cstrcbin.h \
dffctcmp.h dffctbsc.h
dffctcmp.obj: dffctcmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h conscomp.h constrct.h moduldef.h \
modulpsr.h utility.h symblcmp.h dffctdef.h cstrccom.h dffctcmp.h
dffctdef.obj: dffctdef.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h dffctpsr.h dffctbsc.h bload.h \
utility.h exprnbin.h sysdep.h symblbin.h dffctbin.h modulbin.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h cstrcbin.h \
dffctcmp.h dffctdef.h cstrccom.h
dffctpsr.obj: dffctpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
cstrcpsr.h factrhs.h factmngr.h facthsh.h pattern.h match.h network.h \
ruledef.h constrnt.h cstrccom.h agenda.h reorder.h tmpltdef.h \
factbld.h bload.h exprnbin.h sysdep.h symblbin.h dffctdef.h dffctbsc.h \
dffctpsr.h
dffnxbin.obj: dffnxbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h bsave.h memalloc.h cstrcbin.h constrct.h moduldef.h \
conscomp.h symblcmp.h modulpsr.h modulbin.h dffnxbin.h dffnxfun.h \
cstrccom.h
dffnxcmp.obj: dffnxcmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h conscomp.h constrct.h moduldef.h \
modulpsr.h utility.h symblcmp.h dffnxcmp.h dffnxfun.h cstrccom.h
dffnxexe.obj: dffnxexe.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h constrct.h moduldef.h conscomp.h \
symblcmp.h modulpsr.h utility.h prcdrfun.h prccode.h proflfun.h \
router.h prntutil.h watch.h dffnxexe.h dffnxfun.h cstrccom.h
dffnxfun.obj: dffnxfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h dffnxbin.h dffnxfun.h conscomp.h constrct.h moduldef.h \
modulpsr.h symblcmp.h cstrccom.h dffnxcmp.h cstrcpsr.h dffnxpsr.h \
dffnxexe.h watch.h argacces.h memalloc.h router.h prntutil.h
dffnxpsr.obj: dffnxpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h network.h match.h pattern.h reorder.h ruledef.h conscomp.h \
constrct.h moduldef.h modulpsr.h symblcmp.h constrnt.h cstrccom.h \
agenda.h genrccom.h genrcfun.h object.h cstrcpsr.h dffnxfun.h \
memalloc.h prccode.h router.h prntutil.h dffnxpsr.h
dfinsbin.obj: dfinsbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h bsave.h memalloc.h cstrcbin.h constrct.h moduldef.h \
conscomp.h symblcmp.h modulpsr.h defins.h cstrccom.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
modulbin.h dfinsbin.h
dfinscmp.obj: dfinscmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h conscomp.h constrct.h moduldef.h \
modulpsr.h utility.h symblcmp.h defins.h cstrccom.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
dfinscmp.h
drive.obj: drive.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h agenda.h ruledef.h conscomp.h constrct.h \
moduldef.h modulpsr.h utility.h symblcmp.h constrnt.h cstrccom.h \
network.h match.h pattern.h reorder.h engine.h lgcldpnd.h retract.h \
memalloc.h prntutil.h reteutil.h router.h incrrset.h drive.h
emathfun.obj: emathfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h router.h prntutil.h \
emathfun.h
engine.obj: engine.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h agenda.h ruledef.h conscomp.h constrct.h \
moduldef.h modulpsr.h utility.h symblcmp.h constrnt.h cstrccom.h \
network.h match.h pattern.h reorder.h argacces.h factmngr.h facthsh.h \
tmpltdef.h factbld.h inscom.h object.h insfun.h memalloc.h modulutl.h \
prccode.h prcdrfun.h proflfun.h reteutil.h retract.h router.h \
prntutil.h ruledlt.h sysdep.h watch.h engine.h lgcldpnd.h
envrnmnt.obj: envrnmnt.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h router.h \
engine.h lgcldpnd.h match.h network.h ruledef.h constrnt.h cstrccom.h \
agenda.h pattern.h reorder.h retract.h sysdep.h
evaluatn.obj: evaluatn.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h commline.h memalloc.h \
router.h prntutil.h prcdrfun.h factmngr.h facthsh.h pattern.h match.h \
network.h ruledef.h constrnt.h cstrccom.h agenda.h reorder.h \
tmpltdef.h factbld.h proflfun.h sysdep.h dffnxfun.h genrccom.h \
genrcfun.h object.h inscom.h insfun.h
expressn.obj: expressn.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h memalloc.h router.h prntutil.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h
exprnbin.obj: exprnbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h dffctdef.h conscomp.h \
constrct.h moduldef.h modulpsr.h utility.h symblcmp.h cstrccom.h \
bload.h exprnbin.h sysdep.h symblbin.h bsave.h network.h match.h \
pattern.h reorder.h ruledef.h constrnt.h agenda.h genrcbin.h \
genrcfun.h object.h dffnxbin.h dffnxfun.h tmpltbin.h cstrcbin.h \
modulbin.h tmpltdef.h factbld.h factmngr.h facthsh.h globlbin.h \
globldef.h objbin.h insfun.h inscom.h
exprnops.obj: exprnops.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
cstrnchk.h constrnt.h cstrnutl.h cstrnops.h
exprnpsr.obj: exprnpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h router.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h strngrtr.h \
memalloc.h argacces.h cstrnchk.h constrnt.h modulutl.h prcdrfun.h \
network.h match.h pattern.h reorder.h ruledef.h cstrccom.h agenda.h \
genrccom.h genrcfun.h object.h dffnxfun.h
extnfunc.obj: extnfunc.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h router.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h memalloc.h
factbin.obj: factbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h tmpltdef.h conscomp.h \
constrct.h moduldef.h modulpsr.h utility.h symblcmp.h constrnt.h \
factbld.h pattern.h match.h network.h ruledef.h cstrccom.h agenda.h \
reorder.h factmngr.h facthsh.h bload.h exprnbin.h sysdep.h symblbin.h \
bsave.h reteutil.h rulebin.h modulbin.h cstrcbin.h factbin.h
factbld.obj: factbld.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h reteutil.h match.h network.h \
ruledef.h conscomp.h constrct.h moduldef.h modulpsr.h utility.h \
symblcmp.h constrnt.h cstrccom.h agenda.h pattern.h reorder.h router.h \
prntutil.h factcmp.h factmch.h factmngr.h facthsh.h tmpltdef.h \
factbld.h factgen.h factlhs.h argacces.h modulutl.h
factcmp.obj: factcmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h factbld.h pattern.h match.h network.h \
ruledef.h conscomp.h constrct.h moduldef.h modulpsr.h utility.h \
symblcmp.h constrnt.h cstrccom.h agenda.h reorder.h factcmp.h \
tmpltdef.h factmngr.h facthsh.h
factcom.obj: factcom.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h factmngr.h facthsh.h \
conscomp.h constrct.h moduldef.h modulpsr.h utility.h symblcmp.h \
pattern.h match.h network.h ruledef.h constrnt.h cstrccom.h agenda.h \
reorder.h tmpltdef.h factbld.h argacces.h router.h prntutil.h \
factrhs.h factmch.h tmpltpsr.h tmpltutl.h modulutl.h strngrtr.h \
tmpltfun.h sysdep.h bload.h exprnbin.h symblbin.h factcom.h
factfun.obj: factfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h prntutil.h tmpltutl.h \
factmngr.h facthsh.h pattern.h match.h network.h ruledef.h constrnt.h \
cstrccom.h agenda.h reorder.h tmpltdef.h factbld.h router.h sysdep.h \
factfun.h
factgen.obj: factgen.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
network.h match.h pattern.h reorder.h ruledef.h constrnt.h cstrccom.h \
agenda.h reteutil.h factmch.h factmngr.h facthsh.h tmpltdef.h \
factbld.h factrete.h factprt.h tmpltlhs.h factgen.h
facthsh.obj: facthsh.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
sysdep.h lgcldpnd.h match.h network.h ruledef.h constrnt.h cstrccom.h \
agenda.h pattern.h reorder.h facthsh.h factmngr.h tmpltdef.h factbld.h
factlhs.obj: factlhs.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h cstrcpsr.h constrct.h moduldef.h \
conscomp.h symblcmp.h modulpsr.h utility.h pattern.h match.h network.h \
ruledef.h constrnt.h cstrccom.h agenda.h reorder.h router.h prntutil.h \
tmpltpsr.h tmpltdef.h factbld.h factmngr.h facthsh.h tmpltlhs.h \
tmpltutl.h modulutl.h factlhs.h
factmch.obj: factmch.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h drive.h match.h network.h ruledef.h \
conscomp.h constrct.h moduldef.h modulpsr.h utility.h symblcmp.h \
constrnt.h cstrccom.h agenda.h pattern.h reorder.h engine.h lgcldpnd.h \
retract.h factgen.h factrete.h incrrset.h memalloc.h reteutil.h \
router.h prntutil.h sysdep.h tmpltdef.h factbld.h factmngr.h facthsh.h \
factmch.h
factmngr.obj: factmngr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h argacces.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h router.h \
prntutil.h strngrtr.h match.h network.h ruledef.h constrnt.h \
cstrccom.h agenda.h pattern.h reorder.h factbld.h factqury.h \
factmngr.h facthsh.h tmpltdef.h reteutil.h retract.h factcmp.h \
filecom.h factfun.h factcom.h factrhs.h factmch.h watch.h factbin.h \
default.h commline.h sysdep.h engine.h lgcldpnd.h drive.h ruledlt.h \
tmpltbsc.h tmpltutl.h tmpltfun.h
factprt.obj: factprt.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h router.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h factgen.h \
reorder.h ruledef.h constrnt.h cstrccom.h agenda.h match.h network.h \
pattern.h factprt.h
factqpsr.obj: factqpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h factqury.h factmngr.h facthsh.h \
conscomp.h constrct.h moduldef.h modulpsr.h utility.h symblcmp.h \
pattern.h match.h network.h ruledef.h constrnt.h cstrccom.h agenda.h \
reorder.h tmpltdef.h factbld.h modulutl.h prcdrpsr.h prntutil.h \
router.h strngrtr.h factqpsr.h
factqury.obj: factqury.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h memalloc.h modulutl.h \
tmpltutl.h factmngr.h facthsh.h pattern.h match.h network.h ruledef.h \
constrnt.h cstrccom.h agenda.h reorder.h tmpltdef.h factbld.h insfun.h \
object.h factqpsr.h prcdrfun.h router.h prntutil.h factqury.h
factrete.obj: factrete.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
incrrset.h ruledef.h constrnt.h cstrccom.h agenda.h match.h network.h \
pattern.h reorder.h reteutil.h drive.h engine.h lgcldpnd.h retract.h \
factgen.h factmch.h factmngr.h facthsh.h tmpltdef.h factbld.h \
factrete.h
factrhs.obj: factrhs.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h modulutl.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h pattern.h match.h network.h \
ruledef.h constrnt.h cstrccom.h agenda.h reorder.h prntutil.h \
cstrcpsr.h bload.h exprnbin.h sysdep.h symblbin.h tmpltpsr.h \
tmpltdef.h factbld.h factmngr.h facthsh.h tmpltrhs.h tmpltutl.h \
strngrtr.h router.h factrhs.h
filecom.obj: filecom.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h commline.h cstrcpsr.h \
memalloc.h prcdrfun.h router.h prntutil.h strngrtr.h sysdep.h \
filecom.h bsave.h bload.h exprnbin.h symblbin.h
filertr.obj: filertr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
sysdep.h filertr.h
generate.obj: generate.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h argacces.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h router.h \
prntutil.h ruledef.h constrnt.h cstrccom.h agenda.h match.h network.h \
pattern.h reorder.h generate.h analysis.h globlpsr.h
genrcbin.obj: genrcbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h bload.h utility.h exprnbin.h \
sysdep.h symblbin.h bsave.h cstrcbin.h constrct.h moduldef.h \
conscomp.h symblcmp.h modulpsr.h objbin.h object.h constrnt.h match.h \
network.h ruledef.h cstrccom.h agenda.h pattern.h reorder.h genrccom.h \
genrcfun.h modulbin.h genrcbin.h router.h prntutil.h
genrccmp.obj: genrccmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h network.h match.h pattern.h reorder.h \
ruledef.h conscomp.h constrct.h moduldef.h modulpsr.h utility.h \
symblcmp.h constrnt.h cstrccom.h agenda.h genrccom.h genrcfun.h \
object.h objcmp.h genrccmp.h
genrccom.obj: genrccom.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h network.h match.h pattern.h reorder.h \
ruledef.h conscomp.h constrct.h moduldef.h modulpsr.h utility.h \
symblcmp.h constrnt.h cstrccom.h agenda.h bload.h exprnbin.h sysdep.h \
symblbin.h genrcbin.h genrcfun.h object.h genrccmp.h genrcpsr.h \
classcom.h inscom.h insfun.h watch.h argacces.h cstrcpsr.h genrcexe.h \
memalloc.h router.h prntutil.h genrccom.h
genrcexe.obj: genrcexe.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classcom.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
classfun.h insfun.h argacces.h genrccom.h genrcfun.h prcdrfun.h \
prccode.h proflfun.h router.h prntutil.h genrcexe.h
genrcfun.obj: genrcfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h classcom.h cstrccom.h moduldef.h conscomp.h constrct.h \
symblcmp.h modulpsr.h object.h constrnt.h match.h network.h ruledef.h \
agenda.h pattern.h reorder.h classfun.h argacces.h cstrcpsr.h \
genrccom.h genrcfun.h genrcexe.h memalloc.h prccode.h router.h \
prntutil.h
genrcpsr.obj: genrcpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h dffnxfun.h conscomp.h constrct.h moduldef.h modulpsr.h \
symblcmp.h cstrccom.h classfun.h object.h constrnt.h match.h network.h \
ruledef.h agenda.h pattern.h reorder.h classcom.h memalloc.h \
cstrcpsr.h genrccom.h genrcfun.h immthpsr.h modulutl.h prcdrpsr.h \
prccode.h router.h prntutil.h genrcpsr.h
globlbin.obj: globlbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h globldef.h conscomp.h \
constrct.h moduldef.h modulpsr.h utility.h symblcmp.h cstrccom.h \
bload.h exprnbin.h sysdep.h symblbin.h bsave.h globlbsc.h globlbin.h \
modulbin.h cstrcbin.h
globlbsc.obj: globlbsc.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h constrct.h moduldef.h conscomp.h \
symblcmp.h modulpsr.h utility.h watch.h globlcom.h globldef.h \
cstrccom.h globlbin.h modulbin.h cstrcbin.h globlcmp.h globlbsc.h
globlcmp.obj: globlcmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h conscomp.h constrct.h moduldef.h \
modulpsr.h utility.h symblcmp.h globldef.h cstrccom.h globlcmp.h
globlcom.obj: globlcom.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h prntutil.h router.h \
globldef.h cstrccom.h globlcom.h
globldef.obj: globldef.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h modulpsr.h moduldef.h \
conscomp.h constrct.h symblcmp.h utility.h router.h prntutil.h \
strngrtr.h modulutl.h globlbsc.h globlpsr.h globlcom.h commline.h \
bload.h exprnbin.h sysdep.h symblbin.h globlbin.h modulbin.h \
cstrcbin.h globldef.h cstrccom.h globlcmp.h
globlpsr.obj: globlpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h router.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h memalloc.h \
watch.h modulutl.h cstrcpsr.h globldef.h cstrccom.h globlbsc.h bload.h \
exprnbin.h sysdep.h symblbin.h globlpsr.h
immthpsr.obj: immthpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classcom.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
classfun.h memalloc.h cstrnutl.h genrcpsr.h genrcfun.h prccode.h \
immthpsr.h
incrrset.obj: incrrset.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h agenda.h ruledef.h conscomp.h constrct.h \
moduldef.h modulpsr.h utility.h symblcmp.h constrnt.h cstrccom.h \
network.h match.h pattern.h reorder.h argacces.h drive.h engine.h \
lgcldpnd.h retract.h router.h prntutil.h reteutil.h incrrset.h
inherpsr.obj: inherpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classcom.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
classfun.h memalloc.h modulutl.h router.h prntutil.h inherpsr.h
inscom.obj: inscom.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h classcom.h cstrccom.h \
object.h constrnt.h match.h network.h ruledef.h agenda.h pattern.h \
reorder.h classfun.h classinf.h insfile.h insfun.h insmngr.h \
insmoddp.h insmult.h inspsr.h lgcldpnd.h memalloc.h msgcom.h msgpass.h \
msgfun.h router.h prntutil.h strngrtr.h sysdep.h commline.h inscom.h
insfile.obj: insfile.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h classcom.h cstrccom.h \
object.h constrnt.h match.h network.h ruledef.h agenda.h pattern.h \
reorder.h classfun.h memalloc.h inscom.h insfun.h insmngr.h inspsr.h \
router.h prntutil.h strngrtr.h symblbin.h sysdep.h factmngr.h \
facthsh.h tmpltdef.h factbld.h insfile.h
insfun.obj: insfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h classcom.h cstrccom.h \
object.h constrnt.h match.h network.h ruledef.h agenda.h pattern.h \
reorder.h classfun.h cstrnchk.h engine.h lgcldpnd.h retract.h inscom.h \
insfun.h insmngr.h memalloc.h modulutl.h msgcom.h msgpass.h msgfun.h \
prccode.h router.h prntutil.h drive.h objrtmch.h
insmngr.obj: insmngr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h network.h match.h pattern.h reorder.h \
ruledef.h conscomp.h constrct.h moduldef.h modulpsr.h utility.h \
symblcmp.h constrnt.h cstrccom.h agenda.h drive.h objrtmch.h object.h \
lgcldpnd.h classcom.h classfun.h engine.h retract.h memalloc.h \
insfun.h modulutl.h msgcom.h msgpass.h msgfun.h prccode.h router.h \
prntutil.h sysdep.h insmngr.h inscom.h watch.h
insmoddp.obj: insmoddp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h network.h match.h pattern.h reorder.h \
ruledef.h conscomp.h constrct.h moduldef.h modulpsr.h utility.h \
symblcmp.h constrnt.h cstrccom.h agenda.h objrtmch.h object.h \
argacces.h memalloc.h inscom.h insfun.h insmngr.h inspsr.h miscfun.h \
msgcom.h msgpass.h msgfun.h prccode.h router.h prntutil.h insmoddp.h
insmult.obj: insmult.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h insfun.h object.h \
constrnt.h match.h network.h ruledef.h cstrccom.h agenda.h pattern.h \
reorder.h msgfun.h msgpass.h multifun.h router.h prntutil.h insmult.h
inspsr.obj: inspsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classcom.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
classfun.h classinf.h prntutil.h router.h inspsr.h
insquery.obj: insquery.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h classcom.h cstrccom.h \
object.h constrnt.h match.h network.h ruledef.h agenda.h pattern.h \
reorder.h classfun.h memalloc.h insfun.h insmngr.h insqypsr.h \
prcdrfun.h router.h prntutil.h insquery.h
insqypsr.obj: insqypsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classcom.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
insquery.h prcdrpsr.h prntutil.h router.h strngrtr.h insqypsr.h
iofun.obj: iofun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h router.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h strngrtr.h \
filertr.h argacces.h memalloc.h commline.h sysdep.h iofun.h
lgcldpnd.obj: lgcldpnd.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
engine.h lgcldpnd.h match.h network.h ruledef.h constrnt.h cstrccom.h \
agenda.h pattern.h reorder.h retract.h reteutil.h argacces.h \
factmngr.h facthsh.h tmpltdef.h factbld.h insfun.h object.h
main.obj: main.c clips.h setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h memalloc.h cstrcpsr.h \
filecom.h strngfun.h commline.h router.h prntutil.h filertr.h \
strngrtr.h iofun.h sysdep.h bmathfun.h watch.h modulbsc.h bload.h \
exprnbin.h symblbin.h bsave.h ruledef.h constrnt.h cstrccom.h agenda.h \
match.h network.h pattern.h reorder.h rulebsc.h engine.h lgcldpnd.h \
retract.h drive.h incrrset.h rulecom.h crstrtgy.h dffctdef.h \
dffctbsc.h tmpltdef.h factbld.h factmngr.h facthsh.h tmpltbsc.h \
tmpltfun.h factcom.h factfun.h globldef.h globlbsc.h globlcom.h \
dffnxfun.h genrccom.h genrcfun.h object.h classcom.h classexm.h \
classinf.h classini.h classpsr.h defins.h inscom.h insfun.h insfile.h \
msgcom.h msgpass.h objrtmch.h
memalloc.obj: memalloc.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h
miscfun.obj: miscfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h memalloc.h router.h \
prntutil.h sysdep.h dffnxfun.h cstrccom.h miscfun.h
modulbin.obj: modulbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h constrct.h moduldef.h \
conscomp.h symblcmp.h modulpsr.h utility.h bload.h exprnbin.h sysdep.h \
symblbin.h bsave.h modulbin.h
modulbsc.obj: modulbsc.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h constrct.h moduldef.h conscomp.h \
symblcmp.h modulpsr.h utility.h modulbin.h prntutil.h modulcmp.h \
router.h argacces.h bload.h exprnbin.h sysdep.h symblbin.h modulbsc.h
modulcmp.obj: modulcmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h conscomp.h constrct.h moduldef.h \
modulpsr.h utility.h symblcmp.h sysdep.h modulcmp.h
moduldef.obj: moduldef.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
argacces.h modulcmp.h modulbsc.h bload.h exprnbin.h sysdep.h \
symblbin.h modulbin.h
modulpsr.obj: modulpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
argacces.h cstrcpsr.h modulutl.h bload.h exprnbin.h sysdep.h \
symblbin.h
modulutl.obj: modulutl.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
sysdep.h modulutl.h
msgcom.obj: msgcom.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h classcom.h cstrccom.h \
object.h constrnt.h match.h network.h ruledef.h agenda.h pattern.h \
reorder.h classfun.h classinf.h insfun.h insmoddp.h msgfun.h msgpass.h \
memalloc.h prccode.h router.h prntutil.h bload.h exprnbin.h sysdep.h \
symblbin.h msgpsr.h watch.h msgcom.h
msgfun.obj: msgfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classcom.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
classfun.h memalloc.h insfun.h msgcom.h msgpass.h prccode.h router.h \
prntutil.h msgfun.h
msgpass.obj: msgpass.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h classcom.h cstrccom.h \
object.h constrnt.h match.h network.h ruledef.h agenda.h pattern.h \
reorder.h classfun.h memalloc.h insfun.h msgcom.h msgpass.h msgfun.h \
prcdrfun.h prccode.h proflfun.h router.h prntutil.h strngfun.h \
commline.h inscom.h
msgpsr.obj: msgpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h classcom.h cstrccom.h moduldef.h conscomp.h constrct.h \
symblcmp.h modulpsr.h object.h constrnt.h match.h network.h ruledef.h \
agenda.h pattern.h reorder.h classfun.h memalloc.h cstrcpsr.h \
cstrnchk.h insfun.h msgcom.h msgpass.h msgfun.h prccode.h router.h \
prntutil.h strngrtr.h msgpsr.h
multifld.obj: multifld.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
strngrtr.h object.h constrnt.h match.h network.h ruledef.h cstrccom.h \
agenda.h pattern.h reorder.h
multifun.obj: multifun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h memalloc.h multifun.h \
prcdrpsr.h constrnt.h prcdrfun.h router.h prntutil.h object.h match.h \
network.h ruledef.h cstrccom.h agenda.h pattern.h reorder.h
objbin.obj: objbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h bsave.h classcom.h cstrccom.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h object.h constrnt.h match.h network.h \
ruledef.h agenda.h pattern.h reorder.h classfun.h classini.h \
cstrcbin.h cstrnbin.h insfun.h memalloc.h modulbin.h msgcom.h \
msgpass.h msgfun.h prntutil.h router.h objbin.h
objcmp.obj: objcmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h conscomp.h constrct.h moduldef.h \
modulpsr.h utility.h symblcmp.h classcom.h cstrccom.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
classfun.h classini.h cstrncmp.h objrtfnx.h objrtmch.h sysdep.h \
objcmp.h
objrtbin.obj: objrtbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h bload.h utility.h exprnbin.h sysdep.h \
symblbin.h bsave.h memalloc.h insfun.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h object.h constrnt.h match.h network.h \
ruledef.h cstrccom.h agenda.h pattern.h reorder.h objrtmch.h \
reteutil.h rulebin.h modulbin.h cstrcbin.h objrtbin.h
objrtbld.obj: objrtbld.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classcom.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
classfun.h cstrnutl.h cstrnchk.h cstrnops.h drive.h inscom.h insfun.h \
insmngr.h memalloc.h reteutil.h rulepsr.h objrtmch.h objrtgen.h \
objrtfnx.h router.h prntutil.h objrtcmp.h objrtbin.h objrtbld.h
objrtcmp.obj: objrtcmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h conscomp.h constrct.h moduldef.h \
modulpsr.h utility.h symblcmp.h objrtfnx.h object.h constrnt.h match.h \
network.h ruledef.h cstrccom.h agenda.h pattern.h reorder.h objrtmch.h \
sysdep.h objrtcmp.h
objrtfnx.obj: objrtfnx.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classcom.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h object.h \
constrnt.h match.h network.h ruledef.h agenda.h pattern.h reorder.h \
classfun.h bload.h exprnbin.h sysdep.h symblbin.h drive.h engine.h \
lgcldpnd.h retract.h memalloc.h objrtmch.h reteutil.h router.h \
prntutil.h objrtfnx.h
objrtgen.obj: objrtgen.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classfun.h object.h constrct.h \
moduldef.h conscomp.h symblcmp.h modulpsr.h utility.h constrnt.h \
match.h network.h ruledef.h cstrccom.h agenda.h pattern.h reorder.h \
objrtfnx.h objrtmch.h objrtgen.h
objrtmch.obj: objrtmch.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h classfun.h object.h constrct.h \
moduldef.h conscomp.h symblcmp.h modulpsr.h utility.h constrnt.h \
match.h network.h ruledef.h cstrccom.h agenda.h pattern.h reorder.h \
memalloc.h drive.h engine.h lgcldpnd.h retract.h incrrset.h reteutil.h \
ruledlt.h router.h prntutil.h objrtfnx.h objrtmch.h insmngr.h
parsefun.obj: parsefun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h cstrcpsr.h memalloc.h \
prcdrpsr.h constrnt.h router.h prntutil.h strngrtr.h parsefun.h
pattern.obj: pattern.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h constrnt.h cstrnchk.h cstrnutl.h match.h \
network.h ruledef.h conscomp.h constrct.h moduldef.h modulpsr.h \
utility.h symblcmp.h cstrccom.h agenda.h pattern.h reorder.h \
memalloc.h reteutil.h router.h prntutil.h rulecmp.h
pprint.obj: pprint.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h sysdep.h utility.h
prccode.obj: prccode.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h globlpsr.h object.h \
constrct.h moduldef.h conscomp.h symblcmp.h modulpsr.h utility.h \
constrnt.h match.h network.h ruledef.h cstrccom.h agenda.h pattern.h \
reorder.h prcdrpsr.h router.h prntutil.h prccode.h
prcdrfun.obj: prcdrfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h constrnt.h cstrnchk.h \
cstrnops.h memalloc.h prcdrpsr.h router.h prntutil.h prcdrfun.h \
globldef.h cstrccom.h
prcdrpsr.obj: prcdrpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h constrnt.h cstrnchk.h \
cstrnops.h cstrnutl.h memalloc.h modulutl.h router.h prntutil.h \
prcdrpsr.h globldef.h cstrccom.h globlpsr.h
prdctfun.obj: prdctfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h router.h prntutil.h \
prdctfun.h
prntutil.obj: prntutil.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h utility.h argacces.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h router.h prntutil.h \
multifun.h factmngr.h facthsh.h pattern.h match.h network.h ruledef.h \
constrnt.h cstrccom.h agenda.h reorder.h tmpltdef.h factbld.h \
cstrcpsr.h inscom.h object.h insfun.h insmngr.h memalloc.h sysdep.h
proflfun.obj: proflfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h classcom.h cstrccom.h \
object.h constrnt.h match.h network.h ruledef.h agenda.h pattern.h \
reorder.h dffnxfun.h genrccom.h genrcfun.h memalloc.h msgcom.h \
msgpass.h router.h prntutil.h sysdep.h proflfun.h
reorder.obj: reorder.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h cstrnutl.h constrnt.h memalloc.h \
pattern.h match.h network.h ruledef.h conscomp.h constrct.h moduldef.h \
modulpsr.h utility.h symblcmp.h cstrccom.h agenda.h reorder.h \
prntutil.h router.h rulelhs.h
reteutil.obj: reteutil.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h drive.h match.h network.h ruledef.h \
conscomp.h constrct.h moduldef.h modulpsr.h utility.h symblcmp.h \
constrnt.h cstrccom.h agenda.h pattern.h reorder.h engine.h lgcldpnd.h \
retract.h incrrset.h memalloc.h router.h prntutil.h rulecom.h \
reteutil.h
retract.obj: retract.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h agenda.h ruledef.h conscomp.h constrct.h \
moduldef.h modulpsr.h utility.h symblcmp.h constrnt.h cstrccom.h \
network.h match.h pattern.h reorder.h argacces.h drive.h engine.h \
lgcldpnd.h retract.h memalloc.h reteutil.h router.h prntutil.h
router.obj: router.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h filertr.h memalloc.h \
strngrtr.h sysdep.h router.h prntutil.h
rulebin.obj: rulebin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h bload.h utility.h exprnbin.h \
sysdep.h symblbin.h bsave.h reteutil.h match.h network.h ruledef.h \
conscomp.h constrct.h moduldef.h modulpsr.h symblcmp.h constrnt.h \
cstrccom.h agenda.h pattern.h reorder.h engine.h lgcldpnd.h retract.h \
rulebsc.h rulebin.h modulbin.h cstrcbin.h
rulebld.obj: rulebld.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h constrct.h moduldef.h conscomp.h \
symblcmp.h modulpsr.h utility.h drive.h match.h network.h ruledef.h \
constrnt.h cstrccom.h agenda.h pattern.h reorder.h incrrset.h \
memalloc.h reteutil.h router.h prntutil.h rulebld.h rulepsr.h watch.h
rulebsc.obj: rulebsc.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h router.h prntutil.h watch.h \
ruledef.h constrnt.h cstrccom.h agenda.h match.h network.h pattern.h \
reorder.h engine.h lgcldpnd.h retract.h drive.h reteutil.h rulebin.h \
modulbin.h cstrcbin.h rulecmp.h rulebsc.h
rulecmp.obj: rulecmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h factbld.h pattern.h match.h network.h \
ruledef.h conscomp.h constrct.h moduldef.h modulpsr.h utility.h \
symblcmp.h constrnt.h cstrccom.h agenda.h reorder.h reteutil.h \
rulecmp.h
rulecom.obj: rulecom.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h crstrtgy.h agenda.h \
ruledef.h constrnt.h cstrccom.h network.h match.h pattern.h reorder.h \
engine.h lgcldpnd.h retract.h incrrset.h memalloc.h reteutil.h \
router.h prntutil.h ruledlt.h sysdep.h watch.h rulebin.h modulbin.h \
cstrcbin.h rulecom.h
rulecstr.obj: rulecstr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h analysis.h reorder.h ruledef.h \
conscomp.h constrct.h moduldef.h modulpsr.h utility.h symblcmp.h \
constrnt.h cstrccom.h agenda.h match.h network.h pattern.h cstrnchk.h \
cstrnops.h cstrnutl.h prcdrpsr.h router.h prntutil.h rulepsr.h \
rulecstr.h
ruledef.obj: ruledef.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h agenda.h ruledef.h conscomp.h constrct.h \
moduldef.h modulpsr.h utility.h symblcmp.h constrnt.h cstrccom.h \
network.h match.h pattern.h reorder.h drive.h engine.h lgcldpnd.h \
retract.h memalloc.h reteutil.h rulebsc.h rulecom.h rulepsr.h \
ruledlt.h bload.h exprnbin.h sysdep.h symblbin.h rulebin.h modulbin.h \
cstrcbin.h rulecmp.h
ruledlt.obj: ruledlt.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h engine.h lgcldpnd.h match.h \
network.h ruledef.h conscomp.h constrct.h moduldef.h modulpsr.h \
utility.h symblcmp.h constrnt.h cstrccom.h agenda.h pattern.h \
reorder.h retract.h reteutil.h drive.h bload.h exprnbin.h sysdep.h \
symblbin.h ruledlt.h
rulelhs.obj: rulelhs.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h agenda.h ruledef.h conscomp.h constrct.h \
moduldef.h modulpsr.h utility.h symblcmp.h constrnt.h cstrccom.h \
network.h match.h pattern.h reorder.h argacces.h cstrnchk.h memalloc.h \
router.h prntutil.h rulelhs.h
rulepsr.obj: rulepsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h analysis.h reorder.h ruledef.h \
conscomp.h constrct.h moduldef.h modulpsr.h utility.h symblcmp.h \
constrnt.h cstrccom.h agenda.h match.h network.h pattern.h cstrcpsr.h \
cstrnchk.h cstrnops.h engine.h lgcldpnd.h retract.h incrrset.h \
memalloc.h prccode.h prcdrpsr.h router.h prntutil.h rulebld.h \
rulebsc.h rulecstr.h ruledlt.h rulelhs.h watch.h tmpltfun.h factmngr.h \
facthsh.h tmpltdef.h factbld.h bload.h exprnbin.h sysdep.h symblbin.h \
rulepsr.h
scanner.obj: scanner.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h router.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h memalloc.h \
sysdep.h
sortfun.obj: sortfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h dffnxfun.h cstrccom.h \
memalloc.h sysdep.h sortfun.h
strngfun.obj: strngfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h commline.h cstrcpsr.h \
engine.h lgcldpnd.h match.h network.h ruledef.h constrnt.h cstrccom.h \
agenda.h pattern.h reorder.h retract.h memalloc.h prcdrpsr.h router.h \
prntutil.h strngrtr.h sysdep.h drive.h strngfun.h
strngrtr.obj: strngrtr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
sysdep.h strngrtr.h
symblbin.obj: symblbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h bload.h exprnbin.h sysdep.h \
symblbin.h bsave.h cstrnbin.h constrnt.h memalloc.h router.h \
prntutil.h
symblcmp.obj: symblcmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h argacces.h \
cstrncmp.h constrnt.h router.h prntutil.h sysdep.h
symbol.obj: symbol.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
argacces.h sysdep.h
sysdep.obj: sysdep.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h bmathfun.h commline.h \
constrnt.h cstrcpsr.h emathfun.h filecom.h iofun.h memalloc.h \
miscfun.h multifun.h parsefun.h prccode.h prdctfun.h proflfun.h \
prcdrfun.h router.h prntutil.h sortfun.h strngfun.h textpro.h watch.h \
sysdep.h dffctdef.h cstrccom.h ruledef.h agenda.h match.h network.h \
pattern.h reorder.h genrccom.h genrcfun.h object.h dffnxfun.h \
globldef.h tmpltdef.h factbld.h factmngr.h facthsh.h classini.h
textpro.obj: textpro.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h commline.h memalloc.h \
router.h prntutil.h sysdep.h textpro.h
tmpltbin.obj: tmpltbin.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h bload.h utility.h exprnbin.h \
sysdep.h symblbin.h bsave.h factbin.h factbld.h pattern.h match.h \
network.h ruledef.h conscomp.h constrct.h moduldef.h modulpsr.h \
symblcmp.h constrnt.h cstrccom.h agenda.h reorder.h cstrnbin.h \
factmngr.h facthsh.h tmpltdef.h tmpltpsr.h tmpltutl.h tmpltbin.h \
cstrcbin.h modulbin.h
tmpltbsc.obj: tmpltbsc.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h argacces.h moduldef.h conscomp.h \
constrct.h symblcmp.h modulpsr.h utility.h memalloc.h router.h \
prntutil.h cstrccom.h factrhs.h factmngr.h facthsh.h pattern.h match.h \
network.h ruledef.h constrnt.h agenda.h reorder.h tmpltdef.h factbld.h \
cstrcpsr.h tmpltpsr.h tmpltbin.h cstrcbin.h modulbin.h tmpltcmp.h \
tmpltutl.h tmpltbsc.h
tmpltcmp.obj: tmpltcmp.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h conscomp.h constrct.h moduldef.h \
modulpsr.h utility.h symblcmp.h factcmp.h pattern.h match.h network.h \
ruledef.h constrnt.h cstrccom.h agenda.h reorder.h cstrncmp.h \
tmpltdef.h factbld.h factmngr.h facthsh.h tmpltcmp.h
tmpltdef.obj: tmpltdef.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h cstrccom.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h network.h \
match.h pattern.h reorder.h ruledef.h constrnt.h agenda.h tmpltpsr.h \
tmpltdef.h factbld.h factmngr.h facthsh.h tmpltbsc.h tmpltutl.h \
tmpltfun.h router.h prntutil.h modulutl.h cstrnchk.h bload.h \
exprnbin.h sysdep.h symblbin.h tmpltbin.h cstrcbin.h modulbin.h \
tmpltcmp.h
tmpltfun.obj: tmpltfun.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h argacces.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h router.h \
prntutil.h cstrnchk.h constrnt.h default.h factmngr.h facthsh.h \
pattern.h match.h network.h ruledef.h cstrccom.h agenda.h reorder.h \
tmpltdef.h factbld.h commline.h factrhs.h modulutl.h sysdep.h \
tmpltlhs.h tmpltutl.h tmpltrhs.h tmpltfun.h
tmpltlhs.obj: tmpltlhs.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
constrnt.h reorder.h ruledef.h cstrccom.h agenda.h match.h network.h \
pattern.h factrhs.h factmngr.h facthsh.h tmpltdef.h factbld.h \
modulutl.h tmpltutl.h tmpltlhs.h
tmpltpsr.obj: tmpltpsr.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
factmngr.h facthsh.h pattern.h match.h network.h ruledef.h constrnt.h \
cstrccom.h agenda.h reorder.h tmpltdef.h factbld.h cstrnchk.h \
cstrnpsr.h cstrcpsr.h bload.h exprnbin.h sysdep.h symblbin.h default.h \
watch.h cstrnutl.h tmpltbsc.h tmpltpsr.h
tmpltrhs.obj: tmpltrhs.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h prntutil.h moduldef.h \
conscomp.h constrct.h symblcmp.h modulpsr.h utility.h router.h \
tmpltfun.h factmngr.h facthsh.h pattern.h match.h network.h ruledef.h \
constrnt.h cstrccom.h agenda.h reorder.h tmpltdef.h factbld.h \
factrhs.h modulutl.h default.h tmpltutl.h tmpltlhs.h tmpltrhs.h
tmpltutl.obj: tmpltutl.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h constrct.h moduldef.h \
conscomp.h symblcmp.h modulpsr.h utility.h router.h prntutil.h \
argacces.h cstrnchk.h constrnt.h tmpltfun.h factmngr.h facthsh.h \
pattern.h match.h network.h ruledef.h cstrccom.h agenda.h reorder.h \
tmpltdef.h factbld.h tmpltpsr.h modulutl.h watch.h sysdep.h tmpltbsc.h \
tmpltutl.h
userdata.obj: userdata.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h
userfunctions.obj: userfunctions.c clips.h setup.h envrnmnt.h symbol.h \
multifld.h evaluatn.h constant.h expressn.h exprnops.h exprnpsr.h \
extnfunc.h userdata.h scanner.h pprint.h usrsetup.h argacces.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
memalloc.h cstrcpsr.h filecom.h strngfun.h commline.h router.h \
prntutil.h filertr.h strngrtr.h iofun.h sysdep.h bmathfun.h watch.h \
modulbsc.h bload.h exprnbin.h symblbin.h bsave.h ruledef.h constrnt.h \
cstrccom.h agenda.h match.h network.h pattern.h reorder.h rulebsc.h \
engine.h lgcldpnd.h retract.h drive.h incrrset.h rulecom.h crstrtgy.h \
dffctdef.h dffctbsc.h tmpltdef.h factbld.h factmngr.h facthsh.h \
tmpltbsc.h tmpltfun.h factcom.h factfun.h globldef.h globlbsc.h \
globlcom.h dffnxfun.h genrccom.h genrcfun.h object.h classcom.h \
classexm.h classinf.h classini.h classpsr.h defins.h inscom.h insfun.h \
insfile.h msgcom.h msgpass.h objrtmch.h
utility.obj: utility.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h commline.h facthsh.h factmngr.h \
conscomp.h constrct.h moduldef.h modulpsr.h utility.h symblcmp.h \
pattern.h match.h network.h ruledef.h constrnt.h cstrccom.h agenda.h \
reorder.h tmpltdef.h factbld.h memalloc.h prntutil.h sysdep.h
watch.obj: watch.c setup.h envrnmnt.h symbol.h multifld.h evaluatn.h \
constant.h expressn.h exprnops.h exprnpsr.h extnfunc.h userdata.h \
scanner.h pprint.h usrsetup.h memalloc.h router.h prntutil.h \
moduldef.h conscomp.h constrct.h symblcmp.h modulpsr.h utility.h \
argacces.h watch.h
|