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
|
# The GNU Make Manual
# http://www.gnu.org/software/make/manual/make.html
OBJS = agenda.o analysis.o argacces.o bload.o bmathfun.o bsave.o \
classcom.o classexm.o classfun.o classinf.o classini.o \
classpsr.o clsltpsr.o commline.o conscomp.o constrct.o \
constrnt.o crstrtgy.o cstrcbin.o cstrccom.o cstrcpsr.o \
cstrnbin.o cstrnchk.o cstrncmp.o cstrnops.o cstrnpsr.o \
cstrnutl.o default.o defins.o developr.o dffctbin.o dffctbsc.o \
dffctcmp.o dffctdef.o dffctpsr.o dffnxbin.o dffnxcmp.o \
dffnxexe.o dffnxfun.o dffnxpsr.o dfinsbin.o dfinscmp.o drive.o \
emathfun.o \
engine.o envrnmnt.o evaluatn.o expressn.o exprnbin.o exprnops.o \
exprnpsr.o extnfunc.o factbin.o factbld.o factcmp.o factcom.o \
factfun.o factgen.o facthsh.o factlhs.o factmch.o factmngr.o \
factprt.o factqpsr.o factqury.o factrete.o factrhs.o filecom.o filertr.o \
generate.o genrcbin.o genrccmp.o genrccom.o genrcexe.o genrcfun.o \
genrcpsr.o globlbin.o globlbsc.o globlcmp.o globlcom.o \
globldef.o globlpsr.o immthpsr.o incrrset.o inherpsr.o \
inscom.o insfile.o insfun.o insmngr.o insmoddp.o insmult.o \
inspsr.o insquery.o insqypsr.o iofun.o lgcldpnd.o \
memalloc.o miscfun.o modulbin.o modulbsc.o modulcmp.o moduldef.o \
modulpsr.o modulutl.o msgcom.o msgfun.o msgpass.o msgpsr.o \
multifld.o multifun.o objbin.o objcmp.o objrtbin.o objrtbld.o \
objrtcmp.o objrtfnx.o objrtgen.o objrtmch.o parsefun.o pattern.o \
pprint.o prccode.o prcdrfun.o prcdrpsr.o prdctfun.o prntutil.o \
proflfun.o reorder.o reteutil.o retract.o router.o rulebin.o \
rulebld.o rulebsc.o rulecmp.o rulecom.o rulecstr.o ruledef.o \
ruledlt.o rulelhs.o rulepsr.o scanner.o sortfun.o strngfun.o \
strngrtr.o symblbin.o symblcmp.o symbol.o sysdep.o textpro.o \
tmpltbin.o tmpltbsc.o tmpltcmp.o tmpltdef.o tmpltfun.o tmpltlhs.o \
tmpltpsr.o tmpltrhs.o tmpltutl.o userdata.o userfunctions.o utility.o watch.o
.c.o :
gcc -c -x c++ -DALLOW_ENVIRONMENT_GLOBALS=0 \
-O3 -Wall -Wundef -Wpointer-arith -Wshadow -Wcast-qual \
-Winline -Wmissing-declarations -Wredundant-decls \
-Wmissing-prototypes -Wnested-externs \
-Wstrict-prototypes -Waggregate-return -Wno-implicit $<
# Creating Unix Libraries
# http://www.cs.duke.edu/~ola/courses/programming/libraries.html
# Compiling CLIPS using the library
# gcc -o clips -x c++ main.c -L. -lstdc++ -lclips++
libclips++.a : $(OBJS)
rm -f $@
ar cq $@ $(OBJS)
# man gcc
# Dependencies generated using "gcc -MM *.c"
agenda.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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
memalloc.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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.o: 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
|