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
|
# Makefile.in generated by automake 1.9.2 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
SOURCES = $(raideng_SOURCES)
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
top_builddir = ..
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
INSTALL = @INSTALL@
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
bin_PROGRAMS = raideng$(EXEEXT)
subdir = raideng
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.in
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
am__installdirs = "$(DESTDIR)$(bindir)"
binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
PROGRAMS = $(bin_PROGRAMS)
am_raideng_OBJECTS = raideng-addr_rng.$(OBJEXT) \
raideng-array.$(OBJEXT) raideng-connect.$(OBJEXT) \
raideng-core.$(OBJEXT) raideng-core_ccb.$(OBJEXT) \
raideng-core_con.$(OBJEXT) raideng-core_dev.$(OBJEXT) \
raideng-core_mgr.$(OBJEXT) raideng-core_obj.$(OBJEXT) \
raideng-debug.$(OBJEXT) raideng-device.$(OBJEXT) \
raideng-dptcbuff.$(OBJEXT) raideng-driver.$(OBJEXT) \
raideng-eata2i2o.$(OBJEXT) raideng-eng_sig.$(OBJEXT) \
raideng-eng_std.$(OBJEXT) raideng-eng_unix.$(OBJEXT) \
raideng-engine.$(OBJEXT) raideng-englists.$(OBJEXT) \
raideng-gbl_fns.$(OBJEXT) raideng-hba.$(OBJEXT) \
raideng-manager.$(OBJEXT) raideng-msg_str.$(OBJEXT) \
raideng-object.$(OBJEXT) raideng-osd_unix.$(OBJEXT) \
raideng-ptrarray.$(OBJEXT) raideng-raid.$(OBJEXT) \
raideng-raid_bcd.$(OBJEXT) raideng-raid_dev.$(OBJEXT) \
raideng-raid_hba.$(OBJEXT) raideng-raid_mgr.$(OBJEXT) \
raideng-raiddrvr.$(OBJEXT) raideng-scsi_bcd.$(OBJEXT) \
raideng-scsi_ccb.$(OBJEXT) raideng-scsi_con.$(OBJEXT) \
raideng-scsi_dev.$(OBJEXT) raideng-scsi_hba.$(OBJEXT) \
raideng-scsi_mgr.$(OBJEXT) raideng-scsi_obj.$(OBJEXT) \
raideng-scsidrvr.$(OBJEXT) raideng-semaphor.$(OBJEXT) \
raideng-stat_log.$(OBJEXT) raideng-swap_em.$(OBJEXT) \
raideng-threads.$(OBJEXT) raideng-unreslvd.$(OBJEXT)
raideng_OBJECTS = $(am_raideng_OBJECTS)
raideng_DEPENDENCIES = ../lib/libraidutil.la
DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(CC) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(LIBTOOL) --mode=link --tag=CC $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) --mode=compile --tag=CXX $(CXX) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CXXFLAGS) $(CXXFLAGS)
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) --mode=link --tag=CXX $(CXXLD) $(AM_CXXFLAGS) \
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
SOURCES = $(raideng_SOURCES)
DIST_SOURCES = $(raideng_SOURCES)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMDEP_FALSE = @AMDEP_FALSE@
AMDEP_TRUE = @AMDEP_TRUE@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
ECHO = @ECHO@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
F77 = @F77@
FFLAGS = @FFLAGS@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
OBJEXT = @OBJEXT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_F77 = @ac_ct_F77@
ac_ct_RANLIB = @ac_ct_RANLIB@
ac_ct_STRIP = @ac_ct_STRIP@
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
datadir = @datadir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
prefix = @prefix@
program_transform_name = @program_transform_name@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
raideng_SOURCES = addr_rng.cpp array.cpp connect.cpp core.cpp core_ccb.cpp core_con.cpp core_dev.cpp core_mgr.cpp core_obj.cpp debug.cpp device.cpp dptcbuff.c driver.cpp eata2i2o.c eng_sig.c eng_std.cpp eng_unix.cpp engine.cpp englists.cpp gbl_fns.cpp hba.cpp manager.cpp msg_str.cpp object.cpp osd_unix.cpp ptrarray.cpp raid.cpp raid_bcd.cpp raid_dev.cpp raid_hba.cpp raid_mgr.cpp raiddrvr.cpp scsi_bcd.cpp scsi_ccb.cpp scsi_con.cpp scsi_dev.cpp scsi_hba.cpp scsi_mgr.cpp scsi_obj.cpp scsidrvr.cpp semaphor.c stat_log.cpp swap_em.c threads.cpp unreslvd.cpp
raideng_CPPFLAGS = -D__UNIX__ -DMESSAGES -D_DPT_ACTIVE_ALIGNMENT -DI_WANT_SNI_DEBUG -DNEW_LOGGER -I../include
raideng_LDADD = ../lib/libraidutil.la
all: all-am
.SUFFIXES:
.SUFFIXES: .c .cpp .lo .o .obj
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu raideng/Makefile'; \
cd $(top_srcdir) && \
$(AUTOMAKE) --gnu raideng/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
install-binPROGRAMS: $(bin_PROGRAMS)
@$(NORMAL_INSTALL)
test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
@list='$(bin_PROGRAMS)'; for p in $$list; do \
p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
if test -f $$p \
|| test -f $$p1 \
; then \
f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \
else :; fi; \
done
uninstall-binPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(bin_PROGRAMS)'; for p in $$list; do \
f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
rm -f "$(DESTDIR)$(bindir)/$$f"; \
done
clean-binPROGRAMS:
@list='$(bin_PROGRAMS)'; for p in $$list; do \
f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
echo " rm -f $$p $$f"; \
rm -f $$p $$f ; \
done
raideng$(EXEEXT): $(raideng_OBJECTS) $(raideng_DEPENDENCIES)
@rm -f raideng$(EXEEXT)
$(CXXLINK) $(raideng_LDFLAGS) $(raideng_OBJECTS) $(raideng_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-addr_rng.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-array.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-connect.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-core.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-core_ccb.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-core_con.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-core_dev.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-core_mgr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-core_obj.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-debug.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-device.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-dptcbuff.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-driver.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-eata2i2o.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-eng_sig.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-eng_std.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-eng_unix.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-engine.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-englists.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-gbl_fns.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-hba.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-manager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-msg_str.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-object.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-osd_unix.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-ptrarray.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-raid.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-raid_bcd.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-raid_dev.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-raid_hba.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-raid_mgr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-raiddrvr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-scsi_bcd.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-scsi_ccb.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-scsi_con.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-scsi_dev.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-scsi_hba.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-scsi_mgr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-scsi_obj.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-scsidrvr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-semaphor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-stat_log.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-swap_em.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-threads.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raideng-unreslvd.Po@am__quote@
.c.o:
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
.c.obj:
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
.c.lo:
@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
raideng-dptcbuff.o: dptcbuff.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raideng-dptcbuff.o -MD -MP -MF "$(DEPDIR)/raideng-dptcbuff.Tpo" -c -o raideng-dptcbuff.o `test -f 'dptcbuff.c' || echo '$(srcdir)/'`dptcbuff.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/raideng-dptcbuff.Tpo" "$(DEPDIR)/raideng-dptcbuff.Po"; else rm -f "$(DEPDIR)/raideng-dptcbuff.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dptcbuff.c' object='raideng-dptcbuff.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raideng-dptcbuff.o `test -f 'dptcbuff.c' || echo '$(srcdir)/'`dptcbuff.c
raideng-dptcbuff.obj: dptcbuff.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raideng-dptcbuff.obj -MD -MP -MF "$(DEPDIR)/raideng-dptcbuff.Tpo" -c -o raideng-dptcbuff.obj `if test -f 'dptcbuff.c'; then $(CYGPATH_W) 'dptcbuff.c'; else $(CYGPATH_W) '$(srcdir)/dptcbuff.c'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/raideng-dptcbuff.Tpo" "$(DEPDIR)/raideng-dptcbuff.Po"; else rm -f "$(DEPDIR)/raideng-dptcbuff.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dptcbuff.c' object='raideng-dptcbuff.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raideng-dptcbuff.obj `if test -f 'dptcbuff.c'; then $(CYGPATH_W) 'dptcbuff.c'; else $(CYGPATH_W) '$(srcdir)/dptcbuff.c'; fi`
raideng-eata2i2o.o: eata2i2o.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raideng-eata2i2o.o -MD -MP -MF "$(DEPDIR)/raideng-eata2i2o.Tpo" -c -o raideng-eata2i2o.o `test -f 'eata2i2o.c' || echo '$(srcdir)/'`eata2i2o.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/raideng-eata2i2o.Tpo" "$(DEPDIR)/raideng-eata2i2o.Po"; else rm -f "$(DEPDIR)/raideng-eata2i2o.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eata2i2o.c' object='raideng-eata2i2o.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raideng-eata2i2o.o `test -f 'eata2i2o.c' || echo '$(srcdir)/'`eata2i2o.c
raideng-eata2i2o.obj: eata2i2o.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raideng-eata2i2o.obj -MD -MP -MF "$(DEPDIR)/raideng-eata2i2o.Tpo" -c -o raideng-eata2i2o.obj `if test -f 'eata2i2o.c'; then $(CYGPATH_W) 'eata2i2o.c'; else $(CYGPATH_W) '$(srcdir)/eata2i2o.c'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/raideng-eata2i2o.Tpo" "$(DEPDIR)/raideng-eata2i2o.Po"; else rm -f "$(DEPDIR)/raideng-eata2i2o.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eata2i2o.c' object='raideng-eata2i2o.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raideng-eata2i2o.obj `if test -f 'eata2i2o.c'; then $(CYGPATH_W) 'eata2i2o.c'; else $(CYGPATH_W) '$(srcdir)/eata2i2o.c'; fi`
raideng-eng_sig.o: eng_sig.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raideng-eng_sig.o -MD -MP -MF "$(DEPDIR)/raideng-eng_sig.Tpo" -c -o raideng-eng_sig.o `test -f 'eng_sig.c' || echo '$(srcdir)/'`eng_sig.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/raideng-eng_sig.Tpo" "$(DEPDIR)/raideng-eng_sig.Po"; else rm -f "$(DEPDIR)/raideng-eng_sig.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eng_sig.c' object='raideng-eng_sig.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raideng-eng_sig.o `test -f 'eng_sig.c' || echo '$(srcdir)/'`eng_sig.c
raideng-eng_sig.obj: eng_sig.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raideng-eng_sig.obj -MD -MP -MF "$(DEPDIR)/raideng-eng_sig.Tpo" -c -o raideng-eng_sig.obj `if test -f 'eng_sig.c'; then $(CYGPATH_W) 'eng_sig.c'; else $(CYGPATH_W) '$(srcdir)/eng_sig.c'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/raideng-eng_sig.Tpo" "$(DEPDIR)/raideng-eng_sig.Po"; else rm -f "$(DEPDIR)/raideng-eng_sig.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='eng_sig.c' object='raideng-eng_sig.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raideng-eng_sig.obj `if test -f 'eng_sig.c'; then $(CYGPATH_W) 'eng_sig.c'; else $(CYGPATH_W) '$(srcdir)/eng_sig.c'; fi`
raideng-semaphor.o: semaphor.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raideng-semaphor.o -MD -MP -MF "$(DEPDIR)/raideng-semaphor.Tpo" -c -o raideng-semaphor.o `test -f 'semaphor.c' || echo '$(srcdir)/'`semaphor.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/raideng-semaphor.Tpo" "$(DEPDIR)/raideng-semaphor.Po"; else rm -f "$(DEPDIR)/raideng-semaphor.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='semaphor.c' object='raideng-semaphor.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raideng-semaphor.o `test -f 'semaphor.c' || echo '$(srcdir)/'`semaphor.c
raideng-semaphor.obj: semaphor.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raideng-semaphor.obj -MD -MP -MF "$(DEPDIR)/raideng-semaphor.Tpo" -c -o raideng-semaphor.obj `if test -f 'semaphor.c'; then $(CYGPATH_W) 'semaphor.c'; else $(CYGPATH_W) '$(srcdir)/semaphor.c'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/raideng-semaphor.Tpo" "$(DEPDIR)/raideng-semaphor.Po"; else rm -f "$(DEPDIR)/raideng-semaphor.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='semaphor.c' object='raideng-semaphor.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raideng-semaphor.obj `if test -f 'semaphor.c'; then $(CYGPATH_W) 'semaphor.c'; else $(CYGPATH_W) '$(srcdir)/semaphor.c'; fi`
raideng-swap_em.o: swap_em.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raideng-swap_em.o -MD -MP -MF "$(DEPDIR)/raideng-swap_em.Tpo" -c -o raideng-swap_em.o `test -f 'swap_em.c' || echo '$(srcdir)/'`swap_em.c; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/raideng-swap_em.Tpo" "$(DEPDIR)/raideng-swap_em.Po"; else rm -f "$(DEPDIR)/raideng-swap_em.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='swap_em.c' object='raideng-swap_em.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raideng-swap_em.o `test -f 'swap_em.c' || echo '$(srcdir)/'`swap_em.c
raideng-swap_em.obj: swap_em.c
@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raideng-swap_em.obj -MD -MP -MF "$(DEPDIR)/raideng-swap_em.Tpo" -c -o raideng-swap_em.obj `if test -f 'swap_em.c'; then $(CYGPATH_W) 'swap_em.c'; else $(CYGPATH_W) '$(srcdir)/swap_em.c'; fi`; \
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/raideng-swap_em.Tpo" "$(DEPDIR)/raideng-swap_em.Po"; else rm -f "$(DEPDIR)/raideng-swap_em.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='swap_em.c' object='raideng-swap_em.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raideng-swap_em.obj `if test -f 'swap_em.c'; then $(CYGPATH_W) 'swap_em.c'; else $(CYGPATH_W) '$(srcdir)/swap_em.c'; fi`
.cpp.o:
@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
.cpp.obj:
@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cpp.lo:
@am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
raideng-addr_rng.o: addr_rng.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-addr_rng.o -MD -MP -MF "$(DEPDIR)/raideng-addr_rng.Tpo" -c -o raideng-addr_rng.o `test -f 'addr_rng.cpp' || echo '$(srcdir)/'`addr_rng.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-addr_rng.Tpo" "$(DEPDIR)/raideng-addr_rng.Po"; else rm -f "$(DEPDIR)/raideng-addr_rng.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='addr_rng.cpp' object='raideng-addr_rng.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-addr_rng.o `test -f 'addr_rng.cpp' || echo '$(srcdir)/'`addr_rng.cpp
raideng-addr_rng.obj: addr_rng.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-addr_rng.obj -MD -MP -MF "$(DEPDIR)/raideng-addr_rng.Tpo" -c -o raideng-addr_rng.obj `if test -f 'addr_rng.cpp'; then $(CYGPATH_W) 'addr_rng.cpp'; else $(CYGPATH_W) '$(srcdir)/addr_rng.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-addr_rng.Tpo" "$(DEPDIR)/raideng-addr_rng.Po"; else rm -f "$(DEPDIR)/raideng-addr_rng.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='addr_rng.cpp' object='raideng-addr_rng.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-addr_rng.obj `if test -f 'addr_rng.cpp'; then $(CYGPATH_W) 'addr_rng.cpp'; else $(CYGPATH_W) '$(srcdir)/addr_rng.cpp'; fi`
raideng-array.o: array.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-array.o -MD -MP -MF "$(DEPDIR)/raideng-array.Tpo" -c -o raideng-array.o `test -f 'array.cpp' || echo '$(srcdir)/'`array.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-array.Tpo" "$(DEPDIR)/raideng-array.Po"; else rm -f "$(DEPDIR)/raideng-array.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='array.cpp' object='raideng-array.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-array.o `test -f 'array.cpp' || echo '$(srcdir)/'`array.cpp
raideng-array.obj: array.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-array.obj -MD -MP -MF "$(DEPDIR)/raideng-array.Tpo" -c -o raideng-array.obj `if test -f 'array.cpp'; then $(CYGPATH_W) 'array.cpp'; else $(CYGPATH_W) '$(srcdir)/array.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-array.Tpo" "$(DEPDIR)/raideng-array.Po"; else rm -f "$(DEPDIR)/raideng-array.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='array.cpp' object='raideng-array.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-array.obj `if test -f 'array.cpp'; then $(CYGPATH_W) 'array.cpp'; else $(CYGPATH_W) '$(srcdir)/array.cpp'; fi`
raideng-connect.o: connect.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-connect.o -MD -MP -MF "$(DEPDIR)/raideng-connect.Tpo" -c -o raideng-connect.o `test -f 'connect.cpp' || echo '$(srcdir)/'`connect.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-connect.Tpo" "$(DEPDIR)/raideng-connect.Po"; else rm -f "$(DEPDIR)/raideng-connect.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='connect.cpp' object='raideng-connect.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-connect.o `test -f 'connect.cpp' || echo '$(srcdir)/'`connect.cpp
raideng-connect.obj: connect.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-connect.obj -MD -MP -MF "$(DEPDIR)/raideng-connect.Tpo" -c -o raideng-connect.obj `if test -f 'connect.cpp'; then $(CYGPATH_W) 'connect.cpp'; else $(CYGPATH_W) '$(srcdir)/connect.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-connect.Tpo" "$(DEPDIR)/raideng-connect.Po"; else rm -f "$(DEPDIR)/raideng-connect.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='connect.cpp' object='raideng-connect.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-connect.obj `if test -f 'connect.cpp'; then $(CYGPATH_W) 'connect.cpp'; else $(CYGPATH_W) '$(srcdir)/connect.cpp'; fi`
raideng-core.o: core.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core.o -MD -MP -MF "$(DEPDIR)/raideng-core.Tpo" -c -o raideng-core.o `test -f 'core.cpp' || echo '$(srcdir)/'`core.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core.Tpo" "$(DEPDIR)/raideng-core.Po"; else rm -f "$(DEPDIR)/raideng-core.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core.cpp' object='raideng-core.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core.o `test -f 'core.cpp' || echo '$(srcdir)/'`core.cpp
raideng-core.obj: core.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core.obj -MD -MP -MF "$(DEPDIR)/raideng-core.Tpo" -c -o raideng-core.obj `if test -f 'core.cpp'; then $(CYGPATH_W) 'core.cpp'; else $(CYGPATH_W) '$(srcdir)/core.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core.Tpo" "$(DEPDIR)/raideng-core.Po"; else rm -f "$(DEPDIR)/raideng-core.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core.cpp' object='raideng-core.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core.obj `if test -f 'core.cpp'; then $(CYGPATH_W) 'core.cpp'; else $(CYGPATH_W) '$(srcdir)/core.cpp'; fi`
raideng-core_ccb.o: core_ccb.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core_ccb.o -MD -MP -MF "$(DEPDIR)/raideng-core_ccb.Tpo" -c -o raideng-core_ccb.o `test -f 'core_ccb.cpp' || echo '$(srcdir)/'`core_ccb.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core_ccb.Tpo" "$(DEPDIR)/raideng-core_ccb.Po"; else rm -f "$(DEPDIR)/raideng-core_ccb.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core_ccb.cpp' object='raideng-core_ccb.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core_ccb.o `test -f 'core_ccb.cpp' || echo '$(srcdir)/'`core_ccb.cpp
raideng-core_ccb.obj: core_ccb.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core_ccb.obj -MD -MP -MF "$(DEPDIR)/raideng-core_ccb.Tpo" -c -o raideng-core_ccb.obj `if test -f 'core_ccb.cpp'; then $(CYGPATH_W) 'core_ccb.cpp'; else $(CYGPATH_W) '$(srcdir)/core_ccb.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core_ccb.Tpo" "$(DEPDIR)/raideng-core_ccb.Po"; else rm -f "$(DEPDIR)/raideng-core_ccb.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core_ccb.cpp' object='raideng-core_ccb.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core_ccb.obj `if test -f 'core_ccb.cpp'; then $(CYGPATH_W) 'core_ccb.cpp'; else $(CYGPATH_W) '$(srcdir)/core_ccb.cpp'; fi`
raideng-core_con.o: core_con.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core_con.o -MD -MP -MF "$(DEPDIR)/raideng-core_con.Tpo" -c -o raideng-core_con.o `test -f 'core_con.cpp' || echo '$(srcdir)/'`core_con.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core_con.Tpo" "$(DEPDIR)/raideng-core_con.Po"; else rm -f "$(DEPDIR)/raideng-core_con.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core_con.cpp' object='raideng-core_con.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core_con.o `test -f 'core_con.cpp' || echo '$(srcdir)/'`core_con.cpp
raideng-core_con.obj: core_con.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core_con.obj -MD -MP -MF "$(DEPDIR)/raideng-core_con.Tpo" -c -o raideng-core_con.obj `if test -f 'core_con.cpp'; then $(CYGPATH_W) 'core_con.cpp'; else $(CYGPATH_W) '$(srcdir)/core_con.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core_con.Tpo" "$(DEPDIR)/raideng-core_con.Po"; else rm -f "$(DEPDIR)/raideng-core_con.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core_con.cpp' object='raideng-core_con.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core_con.obj `if test -f 'core_con.cpp'; then $(CYGPATH_W) 'core_con.cpp'; else $(CYGPATH_W) '$(srcdir)/core_con.cpp'; fi`
raideng-core_dev.o: core_dev.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core_dev.o -MD -MP -MF "$(DEPDIR)/raideng-core_dev.Tpo" -c -o raideng-core_dev.o `test -f 'core_dev.cpp' || echo '$(srcdir)/'`core_dev.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core_dev.Tpo" "$(DEPDIR)/raideng-core_dev.Po"; else rm -f "$(DEPDIR)/raideng-core_dev.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core_dev.cpp' object='raideng-core_dev.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core_dev.o `test -f 'core_dev.cpp' || echo '$(srcdir)/'`core_dev.cpp
raideng-core_dev.obj: core_dev.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core_dev.obj -MD -MP -MF "$(DEPDIR)/raideng-core_dev.Tpo" -c -o raideng-core_dev.obj `if test -f 'core_dev.cpp'; then $(CYGPATH_W) 'core_dev.cpp'; else $(CYGPATH_W) '$(srcdir)/core_dev.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core_dev.Tpo" "$(DEPDIR)/raideng-core_dev.Po"; else rm -f "$(DEPDIR)/raideng-core_dev.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core_dev.cpp' object='raideng-core_dev.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core_dev.obj `if test -f 'core_dev.cpp'; then $(CYGPATH_W) 'core_dev.cpp'; else $(CYGPATH_W) '$(srcdir)/core_dev.cpp'; fi`
raideng-core_mgr.o: core_mgr.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core_mgr.o -MD -MP -MF "$(DEPDIR)/raideng-core_mgr.Tpo" -c -o raideng-core_mgr.o `test -f 'core_mgr.cpp' || echo '$(srcdir)/'`core_mgr.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core_mgr.Tpo" "$(DEPDIR)/raideng-core_mgr.Po"; else rm -f "$(DEPDIR)/raideng-core_mgr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core_mgr.cpp' object='raideng-core_mgr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core_mgr.o `test -f 'core_mgr.cpp' || echo '$(srcdir)/'`core_mgr.cpp
raideng-core_mgr.obj: core_mgr.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core_mgr.obj -MD -MP -MF "$(DEPDIR)/raideng-core_mgr.Tpo" -c -o raideng-core_mgr.obj `if test -f 'core_mgr.cpp'; then $(CYGPATH_W) 'core_mgr.cpp'; else $(CYGPATH_W) '$(srcdir)/core_mgr.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core_mgr.Tpo" "$(DEPDIR)/raideng-core_mgr.Po"; else rm -f "$(DEPDIR)/raideng-core_mgr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core_mgr.cpp' object='raideng-core_mgr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core_mgr.obj `if test -f 'core_mgr.cpp'; then $(CYGPATH_W) 'core_mgr.cpp'; else $(CYGPATH_W) '$(srcdir)/core_mgr.cpp'; fi`
raideng-core_obj.o: core_obj.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core_obj.o -MD -MP -MF "$(DEPDIR)/raideng-core_obj.Tpo" -c -o raideng-core_obj.o `test -f 'core_obj.cpp' || echo '$(srcdir)/'`core_obj.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core_obj.Tpo" "$(DEPDIR)/raideng-core_obj.Po"; else rm -f "$(DEPDIR)/raideng-core_obj.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core_obj.cpp' object='raideng-core_obj.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core_obj.o `test -f 'core_obj.cpp' || echo '$(srcdir)/'`core_obj.cpp
raideng-core_obj.obj: core_obj.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-core_obj.obj -MD -MP -MF "$(DEPDIR)/raideng-core_obj.Tpo" -c -o raideng-core_obj.obj `if test -f 'core_obj.cpp'; then $(CYGPATH_W) 'core_obj.cpp'; else $(CYGPATH_W) '$(srcdir)/core_obj.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-core_obj.Tpo" "$(DEPDIR)/raideng-core_obj.Po"; else rm -f "$(DEPDIR)/raideng-core_obj.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='core_obj.cpp' object='raideng-core_obj.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-core_obj.obj `if test -f 'core_obj.cpp'; then $(CYGPATH_W) 'core_obj.cpp'; else $(CYGPATH_W) '$(srcdir)/core_obj.cpp'; fi`
raideng-debug.o: debug.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-debug.o -MD -MP -MF "$(DEPDIR)/raideng-debug.Tpo" -c -o raideng-debug.o `test -f 'debug.cpp' || echo '$(srcdir)/'`debug.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-debug.Tpo" "$(DEPDIR)/raideng-debug.Po"; else rm -f "$(DEPDIR)/raideng-debug.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='debug.cpp' object='raideng-debug.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-debug.o `test -f 'debug.cpp' || echo '$(srcdir)/'`debug.cpp
raideng-debug.obj: debug.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-debug.obj -MD -MP -MF "$(DEPDIR)/raideng-debug.Tpo" -c -o raideng-debug.obj `if test -f 'debug.cpp'; then $(CYGPATH_W) 'debug.cpp'; else $(CYGPATH_W) '$(srcdir)/debug.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-debug.Tpo" "$(DEPDIR)/raideng-debug.Po"; else rm -f "$(DEPDIR)/raideng-debug.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='debug.cpp' object='raideng-debug.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-debug.obj `if test -f 'debug.cpp'; then $(CYGPATH_W) 'debug.cpp'; else $(CYGPATH_W) '$(srcdir)/debug.cpp'; fi`
raideng-device.o: device.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-device.o -MD -MP -MF "$(DEPDIR)/raideng-device.Tpo" -c -o raideng-device.o `test -f 'device.cpp' || echo '$(srcdir)/'`device.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-device.Tpo" "$(DEPDIR)/raideng-device.Po"; else rm -f "$(DEPDIR)/raideng-device.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='device.cpp' object='raideng-device.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-device.o `test -f 'device.cpp' || echo '$(srcdir)/'`device.cpp
raideng-device.obj: device.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-device.obj -MD -MP -MF "$(DEPDIR)/raideng-device.Tpo" -c -o raideng-device.obj `if test -f 'device.cpp'; then $(CYGPATH_W) 'device.cpp'; else $(CYGPATH_W) '$(srcdir)/device.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-device.Tpo" "$(DEPDIR)/raideng-device.Po"; else rm -f "$(DEPDIR)/raideng-device.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='device.cpp' object='raideng-device.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-device.obj `if test -f 'device.cpp'; then $(CYGPATH_W) 'device.cpp'; else $(CYGPATH_W) '$(srcdir)/device.cpp'; fi`
raideng-driver.o: driver.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-driver.o -MD -MP -MF "$(DEPDIR)/raideng-driver.Tpo" -c -o raideng-driver.o `test -f 'driver.cpp' || echo '$(srcdir)/'`driver.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-driver.Tpo" "$(DEPDIR)/raideng-driver.Po"; else rm -f "$(DEPDIR)/raideng-driver.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='driver.cpp' object='raideng-driver.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-driver.o `test -f 'driver.cpp' || echo '$(srcdir)/'`driver.cpp
raideng-driver.obj: driver.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-driver.obj -MD -MP -MF "$(DEPDIR)/raideng-driver.Tpo" -c -o raideng-driver.obj `if test -f 'driver.cpp'; then $(CYGPATH_W) 'driver.cpp'; else $(CYGPATH_W) '$(srcdir)/driver.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-driver.Tpo" "$(DEPDIR)/raideng-driver.Po"; else rm -f "$(DEPDIR)/raideng-driver.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='driver.cpp' object='raideng-driver.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-driver.obj `if test -f 'driver.cpp'; then $(CYGPATH_W) 'driver.cpp'; else $(CYGPATH_W) '$(srcdir)/driver.cpp'; fi`
raideng-eng_std.o: eng_std.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-eng_std.o -MD -MP -MF "$(DEPDIR)/raideng-eng_std.Tpo" -c -o raideng-eng_std.o `test -f 'eng_std.cpp' || echo '$(srcdir)/'`eng_std.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-eng_std.Tpo" "$(DEPDIR)/raideng-eng_std.Po"; else rm -f "$(DEPDIR)/raideng-eng_std.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='eng_std.cpp' object='raideng-eng_std.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-eng_std.o `test -f 'eng_std.cpp' || echo '$(srcdir)/'`eng_std.cpp
raideng-eng_std.obj: eng_std.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-eng_std.obj -MD -MP -MF "$(DEPDIR)/raideng-eng_std.Tpo" -c -o raideng-eng_std.obj `if test -f 'eng_std.cpp'; then $(CYGPATH_W) 'eng_std.cpp'; else $(CYGPATH_W) '$(srcdir)/eng_std.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-eng_std.Tpo" "$(DEPDIR)/raideng-eng_std.Po"; else rm -f "$(DEPDIR)/raideng-eng_std.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='eng_std.cpp' object='raideng-eng_std.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-eng_std.obj `if test -f 'eng_std.cpp'; then $(CYGPATH_W) 'eng_std.cpp'; else $(CYGPATH_W) '$(srcdir)/eng_std.cpp'; fi`
raideng-eng_unix.o: eng_unix.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-eng_unix.o -MD -MP -MF "$(DEPDIR)/raideng-eng_unix.Tpo" -c -o raideng-eng_unix.o `test -f 'eng_unix.cpp' || echo '$(srcdir)/'`eng_unix.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-eng_unix.Tpo" "$(DEPDIR)/raideng-eng_unix.Po"; else rm -f "$(DEPDIR)/raideng-eng_unix.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='eng_unix.cpp' object='raideng-eng_unix.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-eng_unix.o `test -f 'eng_unix.cpp' || echo '$(srcdir)/'`eng_unix.cpp
raideng-eng_unix.obj: eng_unix.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-eng_unix.obj -MD -MP -MF "$(DEPDIR)/raideng-eng_unix.Tpo" -c -o raideng-eng_unix.obj `if test -f 'eng_unix.cpp'; then $(CYGPATH_W) 'eng_unix.cpp'; else $(CYGPATH_W) '$(srcdir)/eng_unix.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-eng_unix.Tpo" "$(DEPDIR)/raideng-eng_unix.Po"; else rm -f "$(DEPDIR)/raideng-eng_unix.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='eng_unix.cpp' object='raideng-eng_unix.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-eng_unix.obj `if test -f 'eng_unix.cpp'; then $(CYGPATH_W) 'eng_unix.cpp'; else $(CYGPATH_W) '$(srcdir)/eng_unix.cpp'; fi`
raideng-engine.o: engine.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-engine.o -MD -MP -MF "$(DEPDIR)/raideng-engine.Tpo" -c -o raideng-engine.o `test -f 'engine.cpp' || echo '$(srcdir)/'`engine.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-engine.Tpo" "$(DEPDIR)/raideng-engine.Po"; else rm -f "$(DEPDIR)/raideng-engine.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='engine.cpp' object='raideng-engine.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-engine.o `test -f 'engine.cpp' || echo '$(srcdir)/'`engine.cpp
raideng-engine.obj: engine.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-engine.obj -MD -MP -MF "$(DEPDIR)/raideng-engine.Tpo" -c -o raideng-engine.obj `if test -f 'engine.cpp'; then $(CYGPATH_W) 'engine.cpp'; else $(CYGPATH_W) '$(srcdir)/engine.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-engine.Tpo" "$(DEPDIR)/raideng-engine.Po"; else rm -f "$(DEPDIR)/raideng-engine.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='engine.cpp' object='raideng-engine.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-engine.obj `if test -f 'engine.cpp'; then $(CYGPATH_W) 'engine.cpp'; else $(CYGPATH_W) '$(srcdir)/engine.cpp'; fi`
raideng-englists.o: englists.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-englists.o -MD -MP -MF "$(DEPDIR)/raideng-englists.Tpo" -c -o raideng-englists.o `test -f 'englists.cpp' || echo '$(srcdir)/'`englists.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-englists.Tpo" "$(DEPDIR)/raideng-englists.Po"; else rm -f "$(DEPDIR)/raideng-englists.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='englists.cpp' object='raideng-englists.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-englists.o `test -f 'englists.cpp' || echo '$(srcdir)/'`englists.cpp
raideng-englists.obj: englists.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-englists.obj -MD -MP -MF "$(DEPDIR)/raideng-englists.Tpo" -c -o raideng-englists.obj `if test -f 'englists.cpp'; then $(CYGPATH_W) 'englists.cpp'; else $(CYGPATH_W) '$(srcdir)/englists.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-englists.Tpo" "$(DEPDIR)/raideng-englists.Po"; else rm -f "$(DEPDIR)/raideng-englists.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='englists.cpp' object='raideng-englists.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-englists.obj `if test -f 'englists.cpp'; then $(CYGPATH_W) 'englists.cpp'; else $(CYGPATH_W) '$(srcdir)/englists.cpp'; fi`
raideng-gbl_fns.o: gbl_fns.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-gbl_fns.o -MD -MP -MF "$(DEPDIR)/raideng-gbl_fns.Tpo" -c -o raideng-gbl_fns.o `test -f 'gbl_fns.cpp' || echo '$(srcdir)/'`gbl_fns.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-gbl_fns.Tpo" "$(DEPDIR)/raideng-gbl_fns.Po"; else rm -f "$(DEPDIR)/raideng-gbl_fns.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='gbl_fns.cpp' object='raideng-gbl_fns.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-gbl_fns.o `test -f 'gbl_fns.cpp' || echo '$(srcdir)/'`gbl_fns.cpp
raideng-gbl_fns.obj: gbl_fns.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-gbl_fns.obj -MD -MP -MF "$(DEPDIR)/raideng-gbl_fns.Tpo" -c -o raideng-gbl_fns.obj `if test -f 'gbl_fns.cpp'; then $(CYGPATH_W) 'gbl_fns.cpp'; else $(CYGPATH_W) '$(srcdir)/gbl_fns.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-gbl_fns.Tpo" "$(DEPDIR)/raideng-gbl_fns.Po"; else rm -f "$(DEPDIR)/raideng-gbl_fns.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='gbl_fns.cpp' object='raideng-gbl_fns.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-gbl_fns.obj `if test -f 'gbl_fns.cpp'; then $(CYGPATH_W) 'gbl_fns.cpp'; else $(CYGPATH_W) '$(srcdir)/gbl_fns.cpp'; fi`
raideng-hba.o: hba.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-hba.o -MD -MP -MF "$(DEPDIR)/raideng-hba.Tpo" -c -o raideng-hba.o `test -f 'hba.cpp' || echo '$(srcdir)/'`hba.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-hba.Tpo" "$(DEPDIR)/raideng-hba.Po"; else rm -f "$(DEPDIR)/raideng-hba.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='hba.cpp' object='raideng-hba.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-hba.o `test -f 'hba.cpp' || echo '$(srcdir)/'`hba.cpp
raideng-hba.obj: hba.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-hba.obj -MD -MP -MF "$(DEPDIR)/raideng-hba.Tpo" -c -o raideng-hba.obj `if test -f 'hba.cpp'; then $(CYGPATH_W) 'hba.cpp'; else $(CYGPATH_W) '$(srcdir)/hba.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-hba.Tpo" "$(DEPDIR)/raideng-hba.Po"; else rm -f "$(DEPDIR)/raideng-hba.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='hba.cpp' object='raideng-hba.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-hba.obj `if test -f 'hba.cpp'; then $(CYGPATH_W) 'hba.cpp'; else $(CYGPATH_W) '$(srcdir)/hba.cpp'; fi`
raideng-manager.o: manager.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-manager.o -MD -MP -MF "$(DEPDIR)/raideng-manager.Tpo" -c -o raideng-manager.o `test -f 'manager.cpp' || echo '$(srcdir)/'`manager.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-manager.Tpo" "$(DEPDIR)/raideng-manager.Po"; else rm -f "$(DEPDIR)/raideng-manager.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='manager.cpp' object='raideng-manager.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-manager.o `test -f 'manager.cpp' || echo '$(srcdir)/'`manager.cpp
raideng-manager.obj: manager.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-manager.obj -MD -MP -MF "$(DEPDIR)/raideng-manager.Tpo" -c -o raideng-manager.obj `if test -f 'manager.cpp'; then $(CYGPATH_W) 'manager.cpp'; else $(CYGPATH_W) '$(srcdir)/manager.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-manager.Tpo" "$(DEPDIR)/raideng-manager.Po"; else rm -f "$(DEPDIR)/raideng-manager.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='manager.cpp' object='raideng-manager.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-manager.obj `if test -f 'manager.cpp'; then $(CYGPATH_W) 'manager.cpp'; else $(CYGPATH_W) '$(srcdir)/manager.cpp'; fi`
raideng-msg_str.o: msg_str.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-msg_str.o -MD -MP -MF "$(DEPDIR)/raideng-msg_str.Tpo" -c -o raideng-msg_str.o `test -f 'msg_str.cpp' || echo '$(srcdir)/'`msg_str.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-msg_str.Tpo" "$(DEPDIR)/raideng-msg_str.Po"; else rm -f "$(DEPDIR)/raideng-msg_str.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='msg_str.cpp' object='raideng-msg_str.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-msg_str.o `test -f 'msg_str.cpp' || echo '$(srcdir)/'`msg_str.cpp
raideng-msg_str.obj: msg_str.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-msg_str.obj -MD -MP -MF "$(DEPDIR)/raideng-msg_str.Tpo" -c -o raideng-msg_str.obj `if test -f 'msg_str.cpp'; then $(CYGPATH_W) 'msg_str.cpp'; else $(CYGPATH_W) '$(srcdir)/msg_str.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-msg_str.Tpo" "$(DEPDIR)/raideng-msg_str.Po"; else rm -f "$(DEPDIR)/raideng-msg_str.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='msg_str.cpp' object='raideng-msg_str.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-msg_str.obj `if test -f 'msg_str.cpp'; then $(CYGPATH_W) 'msg_str.cpp'; else $(CYGPATH_W) '$(srcdir)/msg_str.cpp'; fi`
raideng-object.o: object.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-object.o -MD -MP -MF "$(DEPDIR)/raideng-object.Tpo" -c -o raideng-object.o `test -f 'object.cpp' || echo '$(srcdir)/'`object.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-object.Tpo" "$(DEPDIR)/raideng-object.Po"; else rm -f "$(DEPDIR)/raideng-object.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='object.cpp' object='raideng-object.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-object.o `test -f 'object.cpp' || echo '$(srcdir)/'`object.cpp
raideng-object.obj: object.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-object.obj -MD -MP -MF "$(DEPDIR)/raideng-object.Tpo" -c -o raideng-object.obj `if test -f 'object.cpp'; then $(CYGPATH_W) 'object.cpp'; else $(CYGPATH_W) '$(srcdir)/object.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-object.Tpo" "$(DEPDIR)/raideng-object.Po"; else rm -f "$(DEPDIR)/raideng-object.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='object.cpp' object='raideng-object.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-object.obj `if test -f 'object.cpp'; then $(CYGPATH_W) 'object.cpp'; else $(CYGPATH_W) '$(srcdir)/object.cpp'; fi`
raideng-osd_unix.o: osd_unix.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-osd_unix.o -MD -MP -MF "$(DEPDIR)/raideng-osd_unix.Tpo" -c -o raideng-osd_unix.o `test -f 'osd_unix.cpp' || echo '$(srcdir)/'`osd_unix.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-osd_unix.Tpo" "$(DEPDIR)/raideng-osd_unix.Po"; else rm -f "$(DEPDIR)/raideng-osd_unix.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='osd_unix.cpp' object='raideng-osd_unix.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-osd_unix.o `test -f 'osd_unix.cpp' || echo '$(srcdir)/'`osd_unix.cpp
raideng-osd_unix.obj: osd_unix.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-osd_unix.obj -MD -MP -MF "$(DEPDIR)/raideng-osd_unix.Tpo" -c -o raideng-osd_unix.obj `if test -f 'osd_unix.cpp'; then $(CYGPATH_W) 'osd_unix.cpp'; else $(CYGPATH_W) '$(srcdir)/osd_unix.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-osd_unix.Tpo" "$(DEPDIR)/raideng-osd_unix.Po"; else rm -f "$(DEPDIR)/raideng-osd_unix.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='osd_unix.cpp' object='raideng-osd_unix.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-osd_unix.obj `if test -f 'osd_unix.cpp'; then $(CYGPATH_W) 'osd_unix.cpp'; else $(CYGPATH_W) '$(srcdir)/osd_unix.cpp'; fi`
raideng-ptrarray.o: ptrarray.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-ptrarray.o -MD -MP -MF "$(DEPDIR)/raideng-ptrarray.Tpo" -c -o raideng-ptrarray.o `test -f 'ptrarray.cpp' || echo '$(srcdir)/'`ptrarray.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-ptrarray.Tpo" "$(DEPDIR)/raideng-ptrarray.Po"; else rm -f "$(DEPDIR)/raideng-ptrarray.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ptrarray.cpp' object='raideng-ptrarray.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-ptrarray.o `test -f 'ptrarray.cpp' || echo '$(srcdir)/'`ptrarray.cpp
raideng-ptrarray.obj: ptrarray.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-ptrarray.obj -MD -MP -MF "$(DEPDIR)/raideng-ptrarray.Tpo" -c -o raideng-ptrarray.obj `if test -f 'ptrarray.cpp'; then $(CYGPATH_W) 'ptrarray.cpp'; else $(CYGPATH_W) '$(srcdir)/ptrarray.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-ptrarray.Tpo" "$(DEPDIR)/raideng-ptrarray.Po"; else rm -f "$(DEPDIR)/raideng-ptrarray.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ptrarray.cpp' object='raideng-ptrarray.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-ptrarray.obj `if test -f 'ptrarray.cpp'; then $(CYGPATH_W) 'ptrarray.cpp'; else $(CYGPATH_W) '$(srcdir)/ptrarray.cpp'; fi`
raideng-raid.o: raid.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raid.o -MD -MP -MF "$(DEPDIR)/raideng-raid.Tpo" -c -o raideng-raid.o `test -f 'raid.cpp' || echo '$(srcdir)/'`raid.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raid.Tpo" "$(DEPDIR)/raideng-raid.Po"; else rm -f "$(DEPDIR)/raideng-raid.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raid.cpp' object='raideng-raid.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raid.o `test -f 'raid.cpp' || echo '$(srcdir)/'`raid.cpp
raideng-raid.obj: raid.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raid.obj -MD -MP -MF "$(DEPDIR)/raideng-raid.Tpo" -c -o raideng-raid.obj `if test -f 'raid.cpp'; then $(CYGPATH_W) 'raid.cpp'; else $(CYGPATH_W) '$(srcdir)/raid.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raid.Tpo" "$(DEPDIR)/raideng-raid.Po"; else rm -f "$(DEPDIR)/raideng-raid.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raid.cpp' object='raideng-raid.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raid.obj `if test -f 'raid.cpp'; then $(CYGPATH_W) 'raid.cpp'; else $(CYGPATH_W) '$(srcdir)/raid.cpp'; fi`
raideng-raid_bcd.o: raid_bcd.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raid_bcd.o -MD -MP -MF "$(DEPDIR)/raideng-raid_bcd.Tpo" -c -o raideng-raid_bcd.o `test -f 'raid_bcd.cpp' || echo '$(srcdir)/'`raid_bcd.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raid_bcd.Tpo" "$(DEPDIR)/raideng-raid_bcd.Po"; else rm -f "$(DEPDIR)/raideng-raid_bcd.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raid_bcd.cpp' object='raideng-raid_bcd.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raid_bcd.o `test -f 'raid_bcd.cpp' || echo '$(srcdir)/'`raid_bcd.cpp
raideng-raid_bcd.obj: raid_bcd.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raid_bcd.obj -MD -MP -MF "$(DEPDIR)/raideng-raid_bcd.Tpo" -c -o raideng-raid_bcd.obj `if test -f 'raid_bcd.cpp'; then $(CYGPATH_W) 'raid_bcd.cpp'; else $(CYGPATH_W) '$(srcdir)/raid_bcd.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raid_bcd.Tpo" "$(DEPDIR)/raideng-raid_bcd.Po"; else rm -f "$(DEPDIR)/raideng-raid_bcd.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raid_bcd.cpp' object='raideng-raid_bcd.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raid_bcd.obj `if test -f 'raid_bcd.cpp'; then $(CYGPATH_W) 'raid_bcd.cpp'; else $(CYGPATH_W) '$(srcdir)/raid_bcd.cpp'; fi`
raideng-raid_dev.o: raid_dev.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raid_dev.o -MD -MP -MF "$(DEPDIR)/raideng-raid_dev.Tpo" -c -o raideng-raid_dev.o `test -f 'raid_dev.cpp' || echo '$(srcdir)/'`raid_dev.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raid_dev.Tpo" "$(DEPDIR)/raideng-raid_dev.Po"; else rm -f "$(DEPDIR)/raideng-raid_dev.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raid_dev.cpp' object='raideng-raid_dev.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raid_dev.o `test -f 'raid_dev.cpp' || echo '$(srcdir)/'`raid_dev.cpp
raideng-raid_dev.obj: raid_dev.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raid_dev.obj -MD -MP -MF "$(DEPDIR)/raideng-raid_dev.Tpo" -c -o raideng-raid_dev.obj `if test -f 'raid_dev.cpp'; then $(CYGPATH_W) 'raid_dev.cpp'; else $(CYGPATH_W) '$(srcdir)/raid_dev.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raid_dev.Tpo" "$(DEPDIR)/raideng-raid_dev.Po"; else rm -f "$(DEPDIR)/raideng-raid_dev.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raid_dev.cpp' object='raideng-raid_dev.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raid_dev.obj `if test -f 'raid_dev.cpp'; then $(CYGPATH_W) 'raid_dev.cpp'; else $(CYGPATH_W) '$(srcdir)/raid_dev.cpp'; fi`
raideng-raid_hba.o: raid_hba.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raid_hba.o -MD -MP -MF "$(DEPDIR)/raideng-raid_hba.Tpo" -c -o raideng-raid_hba.o `test -f 'raid_hba.cpp' || echo '$(srcdir)/'`raid_hba.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raid_hba.Tpo" "$(DEPDIR)/raideng-raid_hba.Po"; else rm -f "$(DEPDIR)/raideng-raid_hba.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raid_hba.cpp' object='raideng-raid_hba.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raid_hba.o `test -f 'raid_hba.cpp' || echo '$(srcdir)/'`raid_hba.cpp
raideng-raid_hba.obj: raid_hba.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raid_hba.obj -MD -MP -MF "$(DEPDIR)/raideng-raid_hba.Tpo" -c -o raideng-raid_hba.obj `if test -f 'raid_hba.cpp'; then $(CYGPATH_W) 'raid_hba.cpp'; else $(CYGPATH_W) '$(srcdir)/raid_hba.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raid_hba.Tpo" "$(DEPDIR)/raideng-raid_hba.Po"; else rm -f "$(DEPDIR)/raideng-raid_hba.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raid_hba.cpp' object='raideng-raid_hba.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raid_hba.obj `if test -f 'raid_hba.cpp'; then $(CYGPATH_W) 'raid_hba.cpp'; else $(CYGPATH_W) '$(srcdir)/raid_hba.cpp'; fi`
raideng-raid_mgr.o: raid_mgr.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raid_mgr.o -MD -MP -MF "$(DEPDIR)/raideng-raid_mgr.Tpo" -c -o raideng-raid_mgr.o `test -f 'raid_mgr.cpp' || echo '$(srcdir)/'`raid_mgr.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raid_mgr.Tpo" "$(DEPDIR)/raideng-raid_mgr.Po"; else rm -f "$(DEPDIR)/raideng-raid_mgr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raid_mgr.cpp' object='raideng-raid_mgr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raid_mgr.o `test -f 'raid_mgr.cpp' || echo '$(srcdir)/'`raid_mgr.cpp
raideng-raid_mgr.obj: raid_mgr.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raid_mgr.obj -MD -MP -MF "$(DEPDIR)/raideng-raid_mgr.Tpo" -c -o raideng-raid_mgr.obj `if test -f 'raid_mgr.cpp'; then $(CYGPATH_W) 'raid_mgr.cpp'; else $(CYGPATH_W) '$(srcdir)/raid_mgr.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raid_mgr.Tpo" "$(DEPDIR)/raideng-raid_mgr.Po"; else rm -f "$(DEPDIR)/raideng-raid_mgr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raid_mgr.cpp' object='raideng-raid_mgr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raid_mgr.obj `if test -f 'raid_mgr.cpp'; then $(CYGPATH_W) 'raid_mgr.cpp'; else $(CYGPATH_W) '$(srcdir)/raid_mgr.cpp'; fi`
raideng-raiddrvr.o: raiddrvr.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raiddrvr.o -MD -MP -MF "$(DEPDIR)/raideng-raiddrvr.Tpo" -c -o raideng-raiddrvr.o `test -f 'raiddrvr.cpp' || echo '$(srcdir)/'`raiddrvr.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raiddrvr.Tpo" "$(DEPDIR)/raideng-raiddrvr.Po"; else rm -f "$(DEPDIR)/raideng-raiddrvr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raiddrvr.cpp' object='raideng-raiddrvr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raiddrvr.o `test -f 'raiddrvr.cpp' || echo '$(srcdir)/'`raiddrvr.cpp
raideng-raiddrvr.obj: raiddrvr.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-raiddrvr.obj -MD -MP -MF "$(DEPDIR)/raideng-raiddrvr.Tpo" -c -o raideng-raiddrvr.obj `if test -f 'raiddrvr.cpp'; then $(CYGPATH_W) 'raiddrvr.cpp'; else $(CYGPATH_W) '$(srcdir)/raiddrvr.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-raiddrvr.Tpo" "$(DEPDIR)/raideng-raiddrvr.Po"; else rm -f "$(DEPDIR)/raideng-raiddrvr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='raiddrvr.cpp' object='raideng-raiddrvr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-raiddrvr.obj `if test -f 'raiddrvr.cpp'; then $(CYGPATH_W) 'raiddrvr.cpp'; else $(CYGPATH_W) '$(srcdir)/raiddrvr.cpp'; fi`
raideng-scsi_bcd.o: scsi_bcd.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_bcd.o -MD -MP -MF "$(DEPDIR)/raideng-scsi_bcd.Tpo" -c -o raideng-scsi_bcd.o `test -f 'scsi_bcd.cpp' || echo '$(srcdir)/'`scsi_bcd.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_bcd.Tpo" "$(DEPDIR)/raideng-scsi_bcd.Po"; else rm -f "$(DEPDIR)/raideng-scsi_bcd.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_bcd.cpp' object='raideng-scsi_bcd.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_bcd.o `test -f 'scsi_bcd.cpp' || echo '$(srcdir)/'`scsi_bcd.cpp
raideng-scsi_bcd.obj: scsi_bcd.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_bcd.obj -MD -MP -MF "$(DEPDIR)/raideng-scsi_bcd.Tpo" -c -o raideng-scsi_bcd.obj `if test -f 'scsi_bcd.cpp'; then $(CYGPATH_W) 'scsi_bcd.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_bcd.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_bcd.Tpo" "$(DEPDIR)/raideng-scsi_bcd.Po"; else rm -f "$(DEPDIR)/raideng-scsi_bcd.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_bcd.cpp' object='raideng-scsi_bcd.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_bcd.obj `if test -f 'scsi_bcd.cpp'; then $(CYGPATH_W) 'scsi_bcd.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_bcd.cpp'; fi`
raideng-scsi_ccb.o: scsi_ccb.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_ccb.o -MD -MP -MF "$(DEPDIR)/raideng-scsi_ccb.Tpo" -c -o raideng-scsi_ccb.o `test -f 'scsi_ccb.cpp' || echo '$(srcdir)/'`scsi_ccb.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_ccb.Tpo" "$(DEPDIR)/raideng-scsi_ccb.Po"; else rm -f "$(DEPDIR)/raideng-scsi_ccb.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_ccb.cpp' object='raideng-scsi_ccb.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_ccb.o `test -f 'scsi_ccb.cpp' || echo '$(srcdir)/'`scsi_ccb.cpp
raideng-scsi_ccb.obj: scsi_ccb.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_ccb.obj -MD -MP -MF "$(DEPDIR)/raideng-scsi_ccb.Tpo" -c -o raideng-scsi_ccb.obj `if test -f 'scsi_ccb.cpp'; then $(CYGPATH_W) 'scsi_ccb.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_ccb.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_ccb.Tpo" "$(DEPDIR)/raideng-scsi_ccb.Po"; else rm -f "$(DEPDIR)/raideng-scsi_ccb.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_ccb.cpp' object='raideng-scsi_ccb.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_ccb.obj `if test -f 'scsi_ccb.cpp'; then $(CYGPATH_W) 'scsi_ccb.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_ccb.cpp'; fi`
raideng-scsi_con.o: scsi_con.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_con.o -MD -MP -MF "$(DEPDIR)/raideng-scsi_con.Tpo" -c -o raideng-scsi_con.o `test -f 'scsi_con.cpp' || echo '$(srcdir)/'`scsi_con.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_con.Tpo" "$(DEPDIR)/raideng-scsi_con.Po"; else rm -f "$(DEPDIR)/raideng-scsi_con.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_con.cpp' object='raideng-scsi_con.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_con.o `test -f 'scsi_con.cpp' || echo '$(srcdir)/'`scsi_con.cpp
raideng-scsi_con.obj: scsi_con.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_con.obj -MD -MP -MF "$(DEPDIR)/raideng-scsi_con.Tpo" -c -o raideng-scsi_con.obj `if test -f 'scsi_con.cpp'; then $(CYGPATH_W) 'scsi_con.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_con.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_con.Tpo" "$(DEPDIR)/raideng-scsi_con.Po"; else rm -f "$(DEPDIR)/raideng-scsi_con.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_con.cpp' object='raideng-scsi_con.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_con.obj `if test -f 'scsi_con.cpp'; then $(CYGPATH_W) 'scsi_con.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_con.cpp'; fi`
raideng-scsi_dev.o: scsi_dev.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_dev.o -MD -MP -MF "$(DEPDIR)/raideng-scsi_dev.Tpo" -c -o raideng-scsi_dev.o `test -f 'scsi_dev.cpp' || echo '$(srcdir)/'`scsi_dev.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_dev.Tpo" "$(DEPDIR)/raideng-scsi_dev.Po"; else rm -f "$(DEPDIR)/raideng-scsi_dev.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_dev.cpp' object='raideng-scsi_dev.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_dev.o `test -f 'scsi_dev.cpp' || echo '$(srcdir)/'`scsi_dev.cpp
raideng-scsi_dev.obj: scsi_dev.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_dev.obj -MD -MP -MF "$(DEPDIR)/raideng-scsi_dev.Tpo" -c -o raideng-scsi_dev.obj `if test -f 'scsi_dev.cpp'; then $(CYGPATH_W) 'scsi_dev.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_dev.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_dev.Tpo" "$(DEPDIR)/raideng-scsi_dev.Po"; else rm -f "$(DEPDIR)/raideng-scsi_dev.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_dev.cpp' object='raideng-scsi_dev.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_dev.obj `if test -f 'scsi_dev.cpp'; then $(CYGPATH_W) 'scsi_dev.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_dev.cpp'; fi`
raideng-scsi_hba.o: scsi_hba.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_hba.o -MD -MP -MF "$(DEPDIR)/raideng-scsi_hba.Tpo" -c -o raideng-scsi_hba.o `test -f 'scsi_hba.cpp' || echo '$(srcdir)/'`scsi_hba.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_hba.Tpo" "$(DEPDIR)/raideng-scsi_hba.Po"; else rm -f "$(DEPDIR)/raideng-scsi_hba.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_hba.cpp' object='raideng-scsi_hba.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_hba.o `test -f 'scsi_hba.cpp' || echo '$(srcdir)/'`scsi_hba.cpp
raideng-scsi_hba.obj: scsi_hba.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_hba.obj -MD -MP -MF "$(DEPDIR)/raideng-scsi_hba.Tpo" -c -o raideng-scsi_hba.obj `if test -f 'scsi_hba.cpp'; then $(CYGPATH_W) 'scsi_hba.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_hba.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_hba.Tpo" "$(DEPDIR)/raideng-scsi_hba.Po"; else rm -f "$(DEPDIR)/raideng-scsi_hba.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_hba.cpp' object='raideng-scsi_hba.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_hba.obj `if test -f 'scsi_hba.cpp'; then $(CYGPATH_W) 'scsi_hba.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_hba.cpp'; fi`
raideng-scsi_mgr.o: scsi_mgr.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_mgr.o -MD -MP -MF "$(DEPDIR)/raideng-scsi_mgr.Tpo" -c -o raideng-scsi_mgr.o `test -f 'scsi_mgr.cpp' || echo '$(srcdir)/'`scsi_mgr.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_mgr.Tpo" "$(DEPDIR)/raideng-scsi_mgr.Po"; else rm -f "$(DEPDIR)/raideng-scsi_mgr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_mgr.cpp' object='raideng-scsi_mgr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_mgr.o `test -f 'scsi_mgr.cpp' || echo '$(srcdir)/'`scsi_mgr.cpp
raideng-scsi_mgr.obj: scsi_mgr.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_mgr.obj -MD -MP -MF "$(DEPDIR)/raideng-scsi_mgr.Tpo" -c -o raideng-scsi_mgr.obj `if test -f 'scsi_mgr.cpp'; then $(CYGPATH_W) 'scsi_mgr.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_mgr.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_mgr.Tpo" "$(DEPDIR)/raideng-scsi_mgr.Po"; else rm -f "$(DEPDIR)/raideng-scsi_mgr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_mgr.cpp' object='raideng-scsi_mgr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_mgr.obj `if test -f 'scsi_mgr.cpp'; then $(CYGPATH_W) 'scsi_mgr.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_mgr.cpp'; fi`
raideng-scsi_obj.o: scsi_obj.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_obj.o -MD -MP -MF "$(DEPDIR)/raideng-scsi_obj.Tpo" -c -o raideng-scsi_obj.o `test -f 'scsi_obj.cpp' || echo '$(srcdir)/'`scsi_obj.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_obj.Tpo" "$(DEPDIR)/raideng-scsi_obj.Po"; else rm -f "$(DEPDIR)/raideng-scsi_obj.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_obj.cpp' object='raideng-scsi_obj.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_obj.o `test -f 'scsi_obj.cpp' || echo '$(srcdir)/'`scsi_obj.cpp
raideng-scsi_obj.obj: scsi_obj.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsi_obj.obj -MD -MP -MF "$(DEPDIR)/raideng-scsi_obj.Tpo" -c -o raideng-scsi_obj.obj `if test -f 'scsi_obj.cpp'; then $(CYGPATH_W) 'scsi_obj.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_obj.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsi_obj.Tpo" "$(DEPDIR)/raideng-scsi_obj.Po"; else rm -f "$(DEPDIR)/raideng-scsi_obj.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsi_obj.cpp' object='raideng-scsi_obj.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsi_obj.obj `if test -f 'scsi_obj.cpp'; then $(CYGPATH_W) 'scsi_obj.cpp'; else $(CYGPATH_W) '$(srcdir)/scsi_obj.cpp'; fi`
raideng-scsidrvr.o: scsidrvr.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsidrvr.o -MD -MP -MF "$(DEPDIR)/raideng-scsidrvr.Tpo" -c -o raideng-scsidrvr.o `test -f 'scsidrvr.cpp' || echo '$(srcdir)/'`scsidrvr.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsidrvr.Tpo" "$(DEPDIR)/raideng-scsidrvr.Po"; else rm -f "$(DEPDIR)/raideng-scsidrvr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsidrvr.cpp' object='raideng-scsidrvr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsidrvr.o `test -f 'scsidrvr.cpp' || echo '$(srcdir)/'`scsidrvr.cpp
raideng-scsidrvr.obj: scsidrvr.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-scsidrvr.obj -MD -MP -MF "$(DEPDIR)/raideng-scsidrvr.Tpo" -c -o raideng-scsidrvr.obj `if test -f 'scsidrvr.cpp'; then $(CYGPATH_W) 'scsidrvr.cpp'; else $(CYGPATH_W) '$(srcdir)/scsidrvr.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-scsidrvr.Tpo" "$(DEPDIR)/raideng-scsidrvr.Po"; else rm -f "$(DEPDIR)/raideng-scsidrvr.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='scsidrvr.cpp' object='raideng-scsidrvr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-scsidrvr.obj `if test -f 'scsidrvr.cpp'; then $(CYGPATH_W) 'scsidrvr.cpp'; else $(CYGPATH_W) '$(srcdir)/scsidrvr.cpp'; fi`
raideng-stat_log.o: stat_log.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-stat_log.o -MD -MP -MF "$(DEPDIR)/raideng-stat_log.Tpo" -c -o raideng-stat_log.o `test -f 'stat_log.cpp' || echo '$(srcdir)/'`stat_log.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-stat_log.Tpo" "$(DEPDIR)/raideng-stat_log.Po"; else rm -f "$(DEPDIR)/raideng-stat_log.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='stat_log.cpp' object='raideng-stat_log.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-stat_log.o `test -f 'stat_log.cpp' || echo '$(srcdir)/'`stat_log.cpp
raideng-stat_log.obj: stat_log.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-stat_log.obj -MD -MP -MF "$(DEPDIR)/raideng-stat_log.Tpo" -c -o raideng-stat_log.obj `if test -f 'stat_log.cpp'; then $(CYGPATH_W) 'stat_log.cpp'; else $(CYGPATH_W) '$(srcdir)/stat_log.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-stat_log.Tpo" "$(DEPDIR)/raideng-stat_log.Po"; else rm -f "$(DEPDIR)/raideng-stat_log.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='stat_log.cpp' object='raideng-stat_log.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-stat_log.obj `if test -f 'stat_log.cpp'; then $(CYGPATH_W) 'stat_log.cpp'; else $(CYGPATH_W) '$(srcdir)/stat_log.cpp'; fi`
raideng-threads.o: threads.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-threads.o -MD -MP -MF "$(DEPDIR)/raideng-threads.Tpo" -c -o raideng-threads.o `test -f 'threads.cpp' || echo '$(srcdir)/'`threads.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-threads.Tpo" "$(DEPDIR)/raideng-threads.Po"; else rm -f "$(DEPDIR)/raideng-threads.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='threads.cpp' object='raideng-threads.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-threads.o `test -f 'threads.cpp' || echo '$(srcdir)/'`threads.cpp
raideng-threads.obj: threads.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-threads.obj -MD -MP -MF "$(DEPDIR)/raideng-threads.Tpo" -c -o raideng-threads.obj `if test -f 'threads.cpp'; then $(CYGPATH_W) 'threads.cpp'; else $(CYGPATH_W) '$(srcdir)/threads.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-threads.Tpo" "$(DEPDIR)/raideng-threads.Po"; else rm -f "$(DEPDIR)/raideng-threads.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='threads.cpp' object='raideng-threads.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-threads.obj `if test -f 'threads.cpp'; then $(CYGPATH_W) 'threads.cpp'; else $(CYGPATH_W) '$(srcdir)/threads.cpp'; fi`
raideng-unreslvd.o: unreslvd.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-unreslvd.o -MD -MP -MF "$(DEPDIR)/raideng-unreslvd.Tpo" -c -o raideng-unreslvd.o `test -f 'unreslvd.cpp' || echo '$(srcdir)/'`unreslvd.cpp; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-unreslvd.Tpo" "$(DEPDIR)/raideng-unreslvd.Po"; else rm -f "$(DEPDIR)/raideng-unreslvd.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='unreslvd.cpp' object='raideng-unreslvd.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-unreslvd.o `test -f 'unreslvd.cpp' || echo '$(srcdir)/'`unreslvd.cpp
raideng-unreslvd.obj: unreslvd.cpp
@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT raideng-unreslvd.obj -MD -MP -MF "$(DEPDIR)/raideng-unreslvd.Tpo" -c -o raideng-unreslvd.obj `if test -f 'unreslvd.cpp'; then $(CYGPATH_W) 'unreslvd.cpp'; else $(CYGPATH_W) '$(srcdir)/unreslvd.cpp'; fi`; \
@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/raideng-unreslvd.Tpo" "$(DEPDIR)/raideng-unreslvd.Po"; else rm -f "$(DEPDIR)/raideng-unreslvd.Tpo"; exit 1; fi
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='unreslvd.cpp' object='raideng-unreslvd.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(raideng_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o raideng-unreslvd.obj `if test -f 'unreslvd.cpp'; then $(CYGPATH_W) 'unreslvd.cpp'; else $(CYGPATH_W) '$(srcdir)/unreslvd.cpp'; fi`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
distclean-libtool:
-rm -f libtool
uninstall-info-am:
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$tags $$unique; \
fi
ctags: CTAGS
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
tags=; \
here=`pwd`; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) ' { files[$$0] = 1; } \
END { for (i in files) print i; }'`; \
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$tags $$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& cd $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) $$here
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
list='$(DISTFILES)'; for file in $$list; do \
case $$file in \
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
$(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
esac; \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
if test "$$dir" != "$$file" && test "$$dir" != "."; then \
dir="/$$dir"; \
$(mkdir_p) "$(distdir)$$dir"; \
else \
dir=''; \
fi; \
if test -d $$d/$$file; then \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
fi; \
cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
else \
test -f $(distdir)/$$file \
|| cp -p $$d/$$file $(distdir)/$$file \
|| exit 1; \
fi; \
done
check-am: all-am
check: check-am
all-am: Makefile $(PROGRAMS)
installdirs:
for dir in "$(DESTDIR)$(bindir)"; do \
test -z "$$dir" || $(mkdir_p) "$$dir"; \
done
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-libtool distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
info: info-am
info-am:
install-data-am:
install-exec-am: install-binPROGRAMS
install-info: install-info-am
install-man:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-binPROGRAMS uninstall-info-am
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
clean-generic clean-libtool ctags distclean distclean-compile \
distclean-generic distclean-libtool distclean-tags distdir dvi \
dvi-am html html-am info info-am install install-am \
install-binPROGRAMS install-data install-data-am install-exec \
install-exec-am install-info install-info-am install-man \
install-strip installcheck installcheck-am installdirs \
maintainer-clean maintainer-clean-generic mostlyclean \
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
pdf pdf-am ps ps-am tags uninstall uninstall-am \
uninstall-binPROGRAMS uninstall-info-am
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
|