1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
|
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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@
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
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 = :
bin_PROGRAMS = sludge-floormaker$(EXEEXT) sludge-zbuffermaker$(EXEEXT) \
sludge-spritebankeditor$(EXEEXT) \
sludge-translationeditor$(EXEEXT) \
sludge-projectmanager$(EXEEXT) sludge-compiler$(EXEEXT)
@COND_WIN32_TRUE@am__append_1 = \
@COND_WIN32_TRUE@ -mms-bitfields \
@COND_WIN32_TRUE@ -DDATADIR='"resources/"'
@COND_WIN32_FALSE@am__append_2 = \
@COND_WIN32_FALSE@ -std=c++0x \
@COND_WIN32_FALSE@ -DDATADIR='"$(pkgdatadir)/"'
subdir = GTK_Dev_Kit
DIST_COMMON = $(dist_pkgdata_DATA) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)"
PROGRAMS = $(bin_PROGRAMS)
am_sludge_compiler_OBJECTS = CompilerMain.$(OBJEXT) project.$(OBJEXT) \
settings.$(OBJEXT) messbox.$(OBJEXT) compiler.$(OBJEXT) \
compilerinfo.$(OBJEXT) allknown.$(OBJEXT) checkused.$(OBJEXT) \
dumpfiles.$(OBJEXT) floor.$(OBJEXT) hsi.$(OBJEXT) \
linker.$(OBJEXT) objtype.$(OBJEXT) preproc.$(OBJEXT) \
realproc.$(OBJEXT) sludge_functions.$(OBJEXT) \
splitter.$(OBJEXT) tokens.$(OBJEXT) translation.$(OBJEXT) \
moreio.$(OBJEXT) helpers.$(OBJEXT) stringarray.$(OBJEXT) \
tga.$(OBJEXT) utf8.$(OBJEXT)
sludge_compiler_OBJECTS = $(am_sludge_compiler_OBJECTS)
sludge_compiler_DEPENDENCIES =
am_sludge_floormaker_OBJECTS = FloorMakerMain.$(OBJEXT) \
SludgeFloorMaker.$(OBJEXT) SludgeGLApplication.$(OBJEXT) \
SludgeApplication.$(OBJEXT) Common.$(OBJEXT) \
floormaker.$(OBJEXT) sprites.$(OBJEXT) moreio.$(OBJEXT) \
helpers.$(OBJEXT) tga.$(OBJEXT) utf8.$(OBJEXT)
sludge_floormaker_OBJECTS = $(am_sludge_floormaker_OBJECTS)
@COND_WIN32_TRUE@sludge_floormaker_DEPENDENCIES = \
@COND_WIN32_TRUE@ FloorMakerResources.o
am_sludge_projectmanager_OBJECTS = ProjectManagerMain.$(OBJEXT) \
SludgeProjectManager.$(OBJEXT) SludgeApplication.$(OBJEXT) \
Common.$(OBJEXT) project.$(OBJEXT) settings.$(OBJEXT) \
messbox.$(OBJEXT) compiler.$(OBJEXT) compilerinfo.$(OBJEXT) \
allknown.$(OBJEXT) checkused.$(OBJEXT) dumpfiles.$(OBJEXT) \
floor.$(OBJEXT) hsi.$(OBJEXT) linker.$(OBJEXT) \
objtype.$(OBJEXT) preproc.$(OBJEXT) realproc.$(OBJEXT) \
sludge_functions.$(OBJEXT) splitter.$(OBJEXT) tokens.$(OBJEXT) \
translation.$(OBJEXT) moreio.$(OBJEXT) helpers.$(OBJEXT) \
stringarray.$(OBJEXT) tga.$(OBJEXT) utf8.$(OBJEXT)
sludge_projectmanager_OBJECTS = $(am_sludge_projectmanager_OBJECTS)
@COND_WIN32_TRUE@sludge_projectmanager_DEPENDENCIES = \
@COND_WIN32_TRUE@ ProjectManagerResources.o
am_sludge_spritebankeditor_OBJECTS = SpriteBankEditorMain.$(OBJEXT) \
SludgeSpriteBankEditor.$(OBJEXT) SludgeGLApplication.$(OBJEXT) \
SludgeApplication.$(OBJEXT) Common.$(OBJEXT) sprites.$(OBJEXT) \
moreio.$(OBJEXT) helpers.$(OBJEXT) tga.$(OBJEXT) \
utf8.$(OBJEXT)
sludge_spritebankeditor_OBJECTS = \
$(am_sludge_spritebankeditor_OBJECTS)
@COND_WIN32_TRUE@sludge_spritebankeditor_DEPENDENCIES = \
@COND_WIN32_TRUE@ SpriteBankEditorResources.o
am_sludge_translationeditor_OBJECTS = TranslationEditorMain.$(OBJEXT) \
SludgeTranslationEditor.$(OBJEXT) \
SludgeGLApplication.$(OBJEXT) SludgeApplication.$(OBJEXT) \
Common.$(OBJEXT) translator.$(OBJEXT) moreio.$(OBJEXT) \
helpers.$(OBJEXT) stringarray.$(OBJEXT) utf8.$(OBJEXT)
sludge_translationeditor_OBJECTS = \
$(am_sludge_translationeditor_OBJECTS)
@COND_WIN32_TRUE@sludge_translationeditor_DEPENDENCIES = \
@COND_WIN32_TRUE@ TranslationEditorResources.o
am_sludge_zbuffermaker_OBJECTS = ZBufferMakerMain.$(OBJEXT) \
SludgeZBufferMaker.$(OBJEXT) SludgeGLApplication.$(OBJEXT) \
SludgeApplication.$(OBJEXT) Common.$(OBJEXT) zbuffer.$(OBJEXT) \
sprites.$(OBJEXT) moreio.$(OBJEXT) helpers.$(OBJEXT) \
tga.$(OBJEXT) utf8.$(OBJEXT)
sludge_zbuffermaker_OBJECTS = $(am_sludge_zbuffermaker_OBJECTS)
@COND_WIN32_TRUE@sludge_zbuffermaker_DEPENDENCIES = \
@COND_WIN32_TRUE@ ZBufferMakerResources.o
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
AM_V_lt = $(am__v_lt_$(V))
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
am__v_lt_0 = --silent
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
AM_V_CXX = $(am__v_CXX_$(V))
am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY))
am__v_CXX_0 = @echo " CXX " $@;
AM_V_at = $(am__v_at_$(V))
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
am__v_at_0 = @
CXXLD = $(CXX)
CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
-o $@
AM_V_CXXLD = $(am__v_CXXLD_$(V))
am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY))
am__v_CXXLD_0 = @echo " CXXLD " $@;
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_$(V))
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
am__v_CC_0 = @echo " CC " $@;
CCLD = $(CC)
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_$(V))
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
am__v_CCLD_0 = @echo " CCLD " $@;
AM_V_GEN = $(am__v_GEN_$(V))
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
am__v_GEN_0 = @echo " GEN " $@;
SOURCES = $(sludge_compiler_SOURCES) $(sludge_floormaker_SOURCES) \
$(sludge_projectmanager_SOURCES) \
$(sludge_spritebankeditor_SOURCES) \
$(sludge_translationeditor_SOURCES) \
$(sludge_zbuffermaker_SOURCES)
DIST_SOURCES = $(sludge_compiler_SOURCES) $(sludge_floormaker_SOURCES) \
$(sludge_projectmanager_SOURCES) \
$(sludge_spritebankeditor_SOURCES) \
$(sludge_translationeditor_SOURCES) \
$(sludge_zbuffermaker_SOURCES)
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
html-recursive info-recursive install-data-recursive \
install-dvi-recursive install-exec-recursive \
install-html-recursive install-info-recursive \
install-pdf-recursive install-ps-recursive install-recursive \
installcheck-recursive installdirs-recursive pdf-recursive \
ps-recursive uninstall-recursive
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
DATA = $(dist_pkgdata_DATA)
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
distdir
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
am__relativize = \
dir0=`pwd`; \
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
sed_rest='s,^[^/]*/*,,'; \
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
sed_butlast='s,/*[^/]*$$,,'; \
while test -n "$$dir1"; do \
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
if test "$$first" != "."; then \
if test "$$first" = ".."; then \
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
else \
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
if test "$$first2" = "$$first"; then \
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
else \
dir2="../$$dir2"; \
fi; \
dir0="$$dir0"/"$$first"; \
fi; \
fi; \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
ENGINE_CFLAGS = @ENGINE_CFLAGS@
ENGINE_LIBS = @ENGINE_LIBS@
EXEEXT = @EXEEXT@
GLEE_LIBS = @GLEE_LIBS@
GLIB_CFLAGS = @GLIB_CFLAGS@
GLIB_LIBS = @GLIB_LIBS@
GL_CFLAGS = @GL_CFLAGS@
GL_LIBS = @GL_LIBS@
GREP = @GREP@
GTK_CFLAGS = @GTK_CFLAGS@
GTK_LIBS = @GTK_LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBPNG_CFLAGS = @LIBPNG_CFLAGS@
LIBPNG_LIBS = @LIBPNG_LIBS@
LIBS = @LIBS@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
OBJEXT = @OBJEXT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
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_alias = @build_alias@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host_alias = @host_alias@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
SUBDIRS = support
sludge_floormaker_SOURCES = \
FloorMakerMain.cpp SludgeFloorMaker.cpp SludgeFloorMaker.h \
SludgeGLApplication.cpp SludgeGLApplication.h \
SludgeApplication.cpp SludgeApplication.h \
Common.cpp Common.h ../source/DevKit/Common/interface.h \
../source/DevKit/GraphicalTools/floormaker.cpp ../source/DevKit/GraphicalTools/floormaker.h \
../source/DevKit/GraphicalTools/sprites.cpp ../source/DevKit/GraphicalTools/sprites.h \
../source/DevKit/Common/moreio.cpp ../source/DevKit/Common/moreio.h \
../source/DevKit/Common/helpers.cpp ../source/DevKit/Common/helpers.h \
../source/CommonCode/tga.cpp ../source/CommonCode/tga.h \
../source/CommonCode/utf8.cpp ../source/CommonCode/utf8.h \
../source/CommonCode/version.h
sludge_zbuffermaker_SOURCES = \
ZBufferMakerMain.cpp SludgeZBufferMaker.cpp SludgeZBufferMaker.h \
SludgeGLApplication.cpp SludgeGLApplication.h \
SludgeApplication.cpp SludgeApplication.h \
Common.cpp Common.h ../source/DevKit/Common/interface.h \
../source/DevKit/GraphicalTools/zbuffer.cpp ../source/DevKit/GraphicalTools/zbuffer.h \
../source/DevKit/GraphicalTools/sprites.cpp ../source/DevKit/GraphicalTools/sprites.h \
../source/DevKit/Common/moreio.cpp ../source/DevKit/Common/moreio.h \
../source/DevKit/Common/helpers.cpp ../source/DevKit/Common/helpers.h \
../source/CommonCode/tga.cpp ../source/CommonCode/tga.h \
../source/CommonCode/utf8.cpp ../source/CommonCode/utf8.h \
../source/CommonCode/version.h
sludge_spritebankeditor_SOURCES = \
SpriteBankEditorMain.cpp SludgeSpriteBankEditor.cpp SludgeSpriteBankEditor.h \
SludgeGLApplication.cpp SludgeGLApplication.h \
SludgeApplication.cpp SludgeApplication.h \
Common.cpp Common.h ../source/DevKit/Common/interface.h \
../source/DevKit/GraphicalTools/sprites.cpp ../source/DevKit/GraphicalTools/sprites.h \
../source/DevKit/Common/moreio.cpp ../source/DevKit/Common/moreio.h \
../source/DevKit/Common/helpers.cpp ../source/DevKit/Common/helpers.h \
../source/CommonCode/tga.cpp ../source/CommonCode/tga.h \
../source/CommonCode/utf8.cpp ../source/CommonCode/utf8.h \
../source/CommonCode/version.h
sludge_translationeditor_SOURCES = \
TranslationEditorMain.cpp TranslationEditorMain.h \
SludgeTranslationEditor.cpp SludgeTranslationEditor.h \
SludgeGLApplication.cpp SludgeGLApplication.h \
SludgeApplication.cpp SludgeApplication.h \
Common.cpp Common.h ../source/DevKit/Common/interface.h \
../source/DevKit/TranslationEditor/translator.cpp ../source/DevKit/TranslationEditor/translator.h \
../source/DevKit/Common/moreio.cpp ../source/DevKit/Common/moreio.h \
../source/DevKit/Common/helpers.cpp ../source/DevKit/Common/helpers.h \
../source/DevKit/Common/stringarray.cpp ../source/DevKit/Common/stringarray.h \
../source/CommonCode/utf8.cpp ../source/CommonCode/utf8.h \
../source/CommonCode/version.h
sludge_projectmanager_SOURCES = \
ProjectManagerMain.cpp ProjectManagerMain.h \
SludgeProjectManager.cpp SludgeProjectManager.h \
SludgeApplication.cpp SludgeApplication.h \
Common.cpp Common.h ../source/DevKit/Common/interface.h \
../source/DevKit/ProjectManager/project.cpp ../source/DevKit/ProjectManager/project.hpp \
../source/DevKit/ProjectManager/settings.cpp ../source/DevKit/ProjectManager/settings.h \
../source/DevKit/ProjectManager/messbox.cpp ../source/DevKit/ProjectManager/messbox.h \
../source/DevKit/ProjectManager/errorlinktofile.h \
../source/DevKit/Compiler/compiler.cpp ../source/DevKit/Compiler/compiler.hpp \
../source/DevKit/Compiler/compilerinfo.cpp ../source/DevKit/Compiler/compilerinfo.h \
../source/DevKit/Compiler/allknown.cpp ../source/DevKit/Compiler/allknown.h \
../source/DevKit/Compiler/checkused.cpp ../source/DevKit/Compiler/checkused.h \
../source/DevKit/Compiler/dumpfiles.cpp ../source/DevKit/Compiler/dumpfiles.h \
../source/DevKit/Compiler/floor.cpp ../source/DevKit/Compiler/floor.h \
../source/DevKit/Compiler/hsi.cpp ../source/DevKit/Compiler/hsi.h \
../source/DevKit/Compiler/linker.cpp ../source/DevKit/Compiler/linker.h \
../source/DevKit/Compiler/objtype.cpp ../source/DevKit/Compiler/objtype.h \
../source/DevKit/Compiler/preproc.cpp ../source/DevKit/Compiler/preproc.h \
../source/DevKit/Compiler/realproc.cpp ../source/DevKit/Compiler/realproc.h \
../source/DevKit/Compiler/sludge_functions.cpp ../source/DevKit/Compiler/sludge_functions.h \
../source/DevKit/Compiler/splitter.cpp ../source/DevKit/Compiler/splitter.hpp \
../source/DevKit/Compiler/tokens.cpp ../source/DevKit/Compiler/tokens.h \
../source/DevKit/Compiler/translation.cpp ../source/DevKit/Compiler/translation.h \
../source/DevKit/Compiler/csludge.h ../source/DevKit/Compiler/typedef.h \
../source/DevKit/Common/moreio.cpp ../source/DevKit/Common/moreio.h \
../source/DevKit/Common/helpers.cpp ../source/DevKit/Common/helpers.h \
../source/DevKit/Common/stringarray.cpp ../source/DevKit/Common/stringarray.h \
../source/CommonCode/tga.cpp ../source/CommonCode/tga.h \
../source/CommonCode/utf8.cpp ../source/CommonCode/utf8.h \
../source/CommonCode/functionlist.h \
../source/CommonCode/version.h
sludge_compiler_SOURCES = \
CompilerMain.cpp ../source/DevKit/Common/interface.h \
../source/DevKit/ProjectManager/project.cpp ../source/DevKit/ProjectManager/project.hpp \
../source/DevKit/ProjectManager/settings.cpp ../source/DevKit/ProjectManager/settings.h \
../source/DevKit/ProjectManager/messbox.cpp ../source/DevKit/ProjectManager/messbox.h \
../source/DevKit/ProjectManager/errorlinktofile.h \
../source/DevKit/Compiler/compiler.cpp ../source/DevKit/Compiler/compiler.hpp \
../source/DevKit/Compiler/compilerinfo.cpp ../source/DevKit/Compiler/compilerinfo.h \
../source/DevKit/Compiler/allknown.cpp ../source/DevKit/Compiler/allknown.h \
../source/DevKit/Compiler/checkused.cpp ../source/DevKit/Compiler/checkused.h \
../source/DevKit/Compiler/dumpfiles.cpp ../source/DevKit/Compiler/dumpfiles.h \
../source/DevKit/Compiler/floor.cpp ../source/DevKit/Compiler/floor.h \
../source/DevKit/Compiler/hsi.cpp ../source/DevKit/Compiler/hsi.h \
../source/DevKit/Compiler/linker.cpp ../source/DevKit/Compiler/linker.h \
../source/DevKit/Compiler/objtype.cpp ../source/DevKit/Compiler/objtype.h \
../source/DevKit/Compiler/preproc.cpp ../source/DevKit/Compiler/preproc.h \
../source/DevKit/Compiler/realproc.cpp ../source/DevKit/Compiler/realproc.h \
../source/DevKit/Compiler/sludge_functions.cpp ../source/DevKit/Compiler/sludge_functions.h \
../source/DevKit/Compiler/splitter.cpp ../source/DevKit/Compiler/splitter.hpp \
../source/DevKit/Compiler/tokens.cpp ../source/DevKit/Compiler/tokens.h \
../source/DevKit/Compiler/translation.cpp ../source/DevKit/Compiler/translation.h \
../source/DevKit/Compiler/csludge.h ../source/DevKit/Compiler/typedef.h \
../source/DevKit/Common/moreio.cpp ../source/DevKit/Common/moreio.h \
../source/DevKit/Common/helpers.cpp ../source/DevKit/Common/helpers.h \
../source/DevKit/Common/stringarray.cpp ../source/DevKit/Common/stringarray.h \
../source/CommonCode/tga.cpp ../source/CommonCode/tga.h \
../source/CommonCode/utf8.cpp ../source/CommonCode/utf8.h \
../source/CommonCode/functionlist.h \
../source/CommonCode/version.h
dist_pkgdata_DATA = \
FloorMaker.glade ZBufferMaker.glade \
SpriteBankEditor.glade ProjectManager.glade \
TranslationEditor.glade \
../images/floormodeicon1.png \
../images/floormodeicon2.png \
../images/floormodeicon3.png \
../images/floormodeicon4.png \
../images/floormodeicon5.png \
../images/flags/flags_16x16x32.png ../images/flags/flags_32x32x32.png \
../images/flags/flags_128x128x32.png ../images/flags/flags_256x256x32.png \
../images/floorIcon/floorIcon_16x16x32.png ../images/floorIcon/floorIcon_32x32x32.png \
../images/floorIcon/floorIcon_128x128x32.png ../images/floorIcon/floorIcon_256x256x32.png \
../images/zIcon/zIcon_16x16x32.png ../images/zIcon/zIcon_32x32x32.png \
../images/zIcon/zIcon_128x128x32.png ../images/zIcon/zIcon_256x256x32.png \
../images/spriteIcon/spriteIcon_16x16x32.png ../images/spriteIcon/spriteIcon_32x32x32.png \
../images/spriteIcon/spriteIcon_128x128x32.png ../images/spriteIcon/spriteIcon_256x256x32.png \
../images/ProjIcon/ProjIcon_16x16x32.png ../images/ProjIcon/ProjIcon_32x32x32.png \
../images/ProjIcon/ProjIcon_128x128x32.png ../images/ProjIcon/ProjIcon_256x256x32.png \
../images/compiler/compiler_16x16x32.png ../images/gameIcon/gameIcon_16x16x32.png
EXTRA_DIST = \
make_resources.sh \
FloorMaker.rc ZBufferMaker.rc SpriteBankEditor.rc TranslationEditor.rc ProjectManager.rc \
../images/flags/flags.ico \
../images/floorIcon/floorIcon.ico ../images/zIcon/zIcon.ico \
../images/spriteIcon/spriteIcon.ico ../images/ProjIcon/ProjIcon.ico
AM_CPPFLAGS = -I$(top_srcdir)/source/CommonCode \
-I$(top_srcdir)/source/DevKit/Common \
-I$(top_srcdir)/source/DevKit/Compiler \
-I$(top_srcdir)/source/DevKit/ProjectManager \
-I$(top_srcdir)/source/DevKit/GraphicalTools \
-I$(top_srcdir)/source/DevKit/TranslationEditor @GTK_CFLAGS@ \
@LIBPNG_CFLAGS@ $(am__append_1) $(am__append_2)
@COND_WIN32_TRUE@AM_LDFLAGS = \
@COND_WIN32_TRUE@ -Wl,-subsystem,windows
@COND_WIN32_FALSE@sludge_floormaker_LDADD = @GTK_LIBS@ @LIBPNG_LIBS@ @GLEE_LIBS@
@COND_WIN32_TRUE@sludge_floormaker_LDADD = FloorMakerResources.o @GTK_LIBS@ @LIBPNG_LIBS@ @GLEE_LIBS@
@COND_WIN32_FALSE@sludge_zbuffermaker_LDADD = @GTK_LIBS@ @LIBPNG_LIBS@ @GLEE_LIBS@
@COND_WIN32_TRUE@sludge_zbuffermaker_LDADD = ZBufferMakerResources.o @GTK_LIBS@ @LIBPNG_LIBS@ @GLEE_LIBS@
@COND_WIN32_FALSE@sludge_spritebankeditor_LDADD = @GTK_LIBS@ @LIBPNG_LIBS@ @GLEE_LIBS@
@COND_WIN32_TRUE@sludge_spritebankeditor_LDADD = SpriteBankEditorResources.o @GTK_LIBS@ @LIBPNG_LIBS@ @GLEE_LIBS@
@COND_WIN32_FALSE@sludge_translationeditor_LDADD = @GTK_LIBS@ @LIBPNG_LIBS@
@COND_WIN32_TRUE@sludge_translationeditor_LDADD = TranslationEditorResources.o @GTK_LIBS@ @LIBPNG_LIBS@
@COND_WIN32_FALSE@sludge_projectmanager_LDADD = @GTK_LIBS@ @LIBPNG_LIBS@
@COND_WIN32_TRUE@sludge_projectmanager_LDADD = ProjectManagerResources.o @GTK_LIBS@ @LIBPNG_LIBS@
sludge_compiler_LDADD = @GLIB_LIBS@ @LIBPNG_LIBS@
all: all-recursive
.SUFFIXES:
.SUFFIXES: .cpp .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 ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu GTK_Dev_Kit/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu GTK_Dev_Kit/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
$(am__aclocal_m4_deps):
install-binPROGRAMS: $(bin_PROGRAMS)
@$(NORMAL_INSTALL)
test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
for p in $$list; do echo "$$p $$p"; done | \
sed 's/$(EXEEXT)$$//' | \
while read p p1; do if test -f $$p; \
then echo "$$p"; echo "$$p"; else :; fi; \
done | \
sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
sed 'N;N;N;s,\n, ,g' | \
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
if ($$2 == $$4) files[d] = files[d] " " $$1; \
else { print "f", $$3 "/" $$4, $$1; } } \
END { for (d in files) print "f", d, files[d] }' | \
while read type dir files; do \
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
test -z "$$files" || { \
echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
} \
; done
uninstall-binPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
files=`for p in $$list; do echo "$$p"; done | \
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-e 's/$$/$(EXEEXT)/' `; \
test -n "$$list" || exit 0; \
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(bindir)" && rm -f $$files
clean-binPROGRAMS:
-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
sludge-compiler$(EXEEXT): $(sludge_compiler_OBJECTS) $(sludge_compiler_DEPENDENCIES)
@rm -f sludge-compiler$(EXEEXT)
$(AM_V_CXXLD)$(CXXLINK) $(sludge_compiler_OBJECTS) $(sludge_compiler_LDADD) $(LIBS)
sludge-floormaker$(EXEEXT): $(sludge_floormaker_OBJECTS) $(sludge_floormaker_DEPENDENCIES)
@rm -f sludge-floormaker$(EXEEXT)
$(AM_V_CXXLD)$(CXXLINK) $(sludge_floormaker_OBJECTS) $(sludge_floormaker_LDADD) $(LIBS)
sludge-projectmanager$(EXEEXT): $(sludge_projectmanager_OBJECTS) $(sludge_projectmanager_DEPENDENCIES)
@rm -f sludge-projectmanager$(EXEEXT)
$(AM_V_CXXLD)$(CXXLINK) $(sludge_projectmanager_OBJECTS) $(sludge_projectmanager_LDADD) $(LIBS)
sludge-spritebankeditor$(EXEEXT): $(sludge_spritebankeditor_OBJECTS) $(sludge_spritebankeditor_DEPENDENCIES)
@rm -f sludge-spritebankeditor$(EXEEXT)
$(AM_V_CXXLD)$(CXXLINK) $(sludge_spritebankeditor_OBJECTS) $(sludge_spritebankeditor_LDADD) $(LIBS)
sludge-translationeditor$(EXEEXT): $(sludge_translationeditor_OBJECTS) $(sludge_translationeditor_DEPENDENCIES)
@rm -f sludge-translationeditor$(EXEEXT)
$(AM_V_CXXLD)$(CXXLINK) $(sludge_translationeditor_OBJECTS) $(sludge_translationeditor_LDADD) $(LIBS)
sludge-zbuffermaker$(EXEEXT): $(sludge_zbuffermaker_OBJECTS) $(sludge_zbuffermaker_DEPENDENCIES)
@rm -f sludge-zbuffermaker$(EXEEXT)
$(AM_V_CXXLD)$(CXXLINK) $(sludge_zbuffermaker_OBJECTS) $(sludge_zbuffermaker_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Common.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CompilerMain.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FloorMakerMain.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ProjectManagerMain.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SludgeApplication.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SludgeFloorMaker.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SludgeGLApplication.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SludgeProjectManager.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SludgeSpriteBankEditor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SludgeTranslationEditor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SludgeZBufferMaker.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SpriteBankEditorMain.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/TranslationEditorMain.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ZBufferMakerMain.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/allknown.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/checkused.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compiler.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compilerinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dumpfiles.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/floor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/floormaker.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/helpers.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hsi.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linker.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/messbox.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/moreio.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/objtype.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/preproc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/project.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/realproc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/settings.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sludge_functions.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splitter.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sprites.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stringarray.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tga.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tokens.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/translation.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/translator.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utf8.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zbuffer.Po@am__quote@
.cpp.o:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@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@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@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) '$<'`
project.o: ../source/DevKit/ProjectManager/project.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT project.o -MD -MP -MF $(DEPDIR)/project.Tpo -c -o project.o `test -f '../source/DevKit/ProjectManager/project.cpp' || echo '$(srcdir)/'`../source/DevKit/ProjectManager/project.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/project.Tpo $(DEPDIR)/project.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/ProjectManager/project.cpp' object='project.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o project.o `test -f '../source/DevKit/ProjectManager/project.cpp' || echo '$(srcdir)/'`../source/DevKit/ProjectManager/project.cpp
project.obj: ../source/DevKit/ProjectManager/project.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT project.obj -MD -MP -MF $(DEPDIR)/project.Tpo -c -o project.obj `if test -f '../source/DevKit/ProjectManager/project.cpp'; then $(CYGPATH_W) '../source/DevKit/ProjectManager/project.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/ProjectManager/project.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/project.Tpo $(DEPDIR)/project.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/ProjectManager/project.cpp' object='project.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o project.obj `if test -f '../source/DevKit/ProjectManager/project.cpp'; then $(CYGPATH_W) '../source/DevKit/ProjectManager/project.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/ProjectManager/project.cpp'; fi`
settings.o: ../source/DevKit/ProjectManager/settings.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT settings.o -MD -MP -MF $(DEPDIR)/settings.Tpo -c -o settings.o `test -f '../source/DevKit/ProjectManager/settings.cpp' || echo '$(srcdir)/'`../source/DevKit/ProjectManager/settings.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/settings.Tpo $(DEPDIR)/settings.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/ProjectManager/settings.cpp' object='settings.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o settings.o `test -f '../source/DevKit/ProjectManager/settings.cpp' || echo '$(srcdir)/'`../source/DevKit/ProjectManager/settings.cpp
settings.obj: ../source/DevKit/ProjectManager/settings.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT settings.obj -MD -MP -MF $(DEPDIR)/settings.Tpo -c -o settings.obj `if test -f '../source/DevKit/ProjectManager/settings.cpp'; then $(CYGPATH_W) '../source/DevKit/ProjectManager/settings.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/ProjectManager/settings.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/settings.Tpo $(DEPDIR)/settings.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/ProjectManager/settings.cpp' object='settings.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o settings.obj `if test -f '../source/DevKit/ProjectManager/settings.cpp'; then $(CYGPATH_W) '../source/DevKit/ProjectManager/settings.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/ProjectManager/settings.cpp'; fi`
messbox.o: ../source/DevKit/ProjectManager/messbox.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT messbox.o -MD -MP -MF $(DEPDIR)/messbox.Tpo -c -o messbox.o `test -f '../source/DevKit/ProjectManager/messbox.cpp' || echo '$(srcdir)/'`../source/DevKit/ProjectManager/messbox.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/messbox.Tpo $(DEPDIR)/messbox.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/ProjectManager/messbox.cpp' object='messbox.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o messbox.o `test -f '../source/DevKit/ProjectManager/messbox.cpp' || echo '$(srcdir)/'`../source/DevKit/ProjectManager/messbox.cpp
messbox.obj: ../source/DevKit/ProjectManager/messbox.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT messbox.obj -MD -MP -MF $(DEPDIR)/messbox.Tpo -c -o messbox.obj `if test -f '../source/DevKit/ProjectManager/messbox.cpp'; then $(CYGPATH_W) '../source/DevKit/ProjectManager/messbox.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/ProjectManager/messbox.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/messbox.Tpo $(DEPDIR)/messbox.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/ProjectManager/messbox.cpp' object='messbox.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o messbox.obj `if test -f '../source/DevKit/ProjectManager/messbox.cpp'; then $(CYGPATH_W) '../source/DevKit/ProjectManager/messbox.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/ProjectManager/messbox.cpp'; fi`
compiler.o: ../source/DevKit/Compiler/compiler.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT compiler.o -MD -MP -MF $(DEPDIR)/compiler.Tpo -c -o compiler.o `test -f '../source/DevKit/Compiler/compiler.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/compiler.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/compiler.Tpo $(DEPDIR)/compiler.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/compiler.cpp' object='compiler.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o compiler.o `test -f '../source/DevKit/Compiler/compiler.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/compiler.cpp
compiler.obj: ../source/DevKit/Compiler/compiler.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT compiler.obj -MD -MP -MF $(DEPDIR)/compiler.Tpo -c -o compiler.obj `if test -f '../source/DevKit/Compiler/compiler.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/compiler.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/compiler.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/compiler.Tpo $(DEPDIR)/compiler.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/compiler.cpp' object='compiler.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o compiler.obj `if test -f '../source/DevKit/Compiler/compiler.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/compiler.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/compiler.cpp'; fi`
compilerinfo.o: ../source/DevKit/Compiler/compilerinfo.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT compilerinfo.o -MD -MP -MF $(DEPDIR)/compilerinfo.Tpo -c -o compilerinfo.o `test -f '../source/DevKit/Compiler/compilerinfo.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/compilerinfo.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/compilerinfo.Tpo $(DEPDIR)/compilerinfo.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/compilerinfo.cpp' object='compilerinfo.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o compilerinfo.o `test -f '../source/DevKit/Compiler/compilerinfo.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/compilerinfo.cpp
compilerinfo.obj: ../source/DevKit/Compiler/compilerinfo.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT compilerinfo.obj -MD -MP -MF $(DEPDIR)/compilerinfo.Tpo -c -o compilerinfo.obj `if test -f '../source/DevKit/Compiler/compilerinfo.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/compilerinfo.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/compilerinfo.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/compilerinfo.Tpo $(DEPDIR)/compilerinfo.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/compilerinfo.cpp' object='compilerinfo.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o compilerinfo.obj `if test -f '../source/DevKit/Compiler/compilerinfo.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/compilerinfo.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/compilerinfo.cpp'; fi`
allknown.o: ../source/DevKit/Compiler/allknown.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT allknown.o -MD -MP -MF $(DEPDIR)/allknown.Tpo -c -o allknown.o `test -f '../source/DevKit/Compiler/allknown.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/allknown.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/allknown.Tpo $(DEPDIR)/allknown.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/allknown.cpp' object='allknown.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o allknown.o `test -f '../source/DevKit/Compiler/allknown.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/allknown.cpp
allknown.obj: ../source/DevKit/Compiler/allknown.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT allknown.obj -MD -MP -MF $(DEPDIR)/allknown.Tpo -c -o allknown.obj `if test -f '../source/DevKit/Compiler/allknown.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/allknown.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/allknown.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/allknown.Tpo $(DEPDIR)/allknown.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/allknown.cpp' object='allknown.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o allknown.obj `if test -f '../source/DevKit/Compiler/allknown.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/allknown.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/allknown.cpp'; fi`
checkused.o: ../source/DevKit/Compiler/checkused.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT checkused.o -MD -MP -MF $(DEPDIR)/checkused.Tpo -c -o checkused.o `test -f '../source/DevKit/Compiler/checkused.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/checkused.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/checkused.Tpo $(DEPDIR)/checkused.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/checkused.cpp' object='checkused.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o checkused.o `test -f '../source/DevKit/Compiler/checkused.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/checkused.cpp
checkused.obj: ../source/DevKit/Compiler/checkused.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT checkused.obj -MD -MP -MF $(DEPDIR)/checkused.Tpo -c -o checkused.obj `if test -f '../source/DevKit/Compiler/checkused.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/checkused.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/checkused.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/checkused.Tpo $(DEPDIR)/checkused.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/checkused.cpp' object='checkused.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o checkused.obj `if test -f '../source/DevKit/Compiler/checkused.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/checkused.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/checkused.cpp'; fi`
dumpfiles.o: ../source/DevKit/Compiler/dumpfiles.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dumpfiles.o -MD -MP -MF $(DEPDIR)/dumpfiles.Tpo -c -o dumpfiles.o `test -f '../source/DevKit/Compiler/dumpfiles.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/dumpfiles.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dumpfiles.Tpo $(DEPDIR)/dumpfiles.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/dumpfiles.cpp' object='dumpfiles.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o dumpfiles.o `test -f '../source/DevKit/Compiler/dumpfiles.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/dumpfiles.cpp
dumpfiles.obj: ../source/DevKit/Compiler/dumpfiles.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dumpfiles.obj -MD -MP -MF $(DEPDIR)/dumpfiles.Tpo -c -o dumpfiles.obj `if test -f '../source/DevKit/Compiler/dumpfiles.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/dumpfiles.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/dumpfiles.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/dumpfiles.Tpo $(DEPDIR)/dumpfiles.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/dumpfiles.cpp' object='dumpfiles.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o dumpfiles.obj `if test -f '../source/DevKit/Compiler/dumpfiles.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/dumpfiles.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/dumpfiles.cpp'; fi`
floor.o: ../source/DevKit/Compiler/floor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT floor.o -MD -MP -MF $(DEPDIR)/floor.Tpo -c -o floor.o `test -f '../source/DevKit/Compiler/floor.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/floor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/floor.Tpo $(DEPDIR)/floor.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/floor.cpp' object='floor.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o floor.o `test -f '../source/DevKit/Compiler/floor.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/floor.cpp
floor.obj: ../source/DevKit/Compiler/floor.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT floor.obj -MD -MP -MF $(DEPDIR)/floor.Tpo -c -o floor.obj `if test -f '../source/DevKit/Compiler/floor.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/floor.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/floor.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/floor.Tpo $(DEPDIR)/floor.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/floor.cpp' object='floor.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o floor.obj `if test -f '../source/DevKit/Compiler/floor.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/floor.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/floor.cpp'; fi`
hsi.o: ../source/DevKit/Compiler/hsi.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT hsi.o -MD -MP -MF $(DEPDIR)/hsi.Tpo -c -o hsi.o `test -f '../source/DevKit/Compiler/hsi.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/hsi.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hsi.Tpo $(DEPDIR)/hsi.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/hsi.cpp' object='hsi.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o hsi.o `test -f '../source/DevKit/Compiler/hsi.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/hsi.cpp
hsi.obj: ../source/DevKit/Compiler/hsi.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT hsi.obj -MD -MP -MF $(DEPDIR)/hsi.Tpo -c -o hsi.obj `if test -f '../source/DevKit/Compiler/hsi.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/hsi.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/hsi.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hsi.Tpo $(DEPDIR)/hsi.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/hsi.cpp' object='hsi.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o hsi.obj `if test -f '../source/DevKit/Compiler/hsi.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/hsi.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/hsi.cpp'; fi`
linker.o: ../source/DevKit/Compiler/linker.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT linker.o -MD -MP -MF $(DEPDIR)/linker.Tpo -c -o linker.o `test -f '../source/DevKit/Compiler/linker.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/linker.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/linker.Tpo $(DEPDIR)/linker.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/linker.cpp' object='linker.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o linker.o `test -f '../source/DevKit/Compiler/linker.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/linker.cpp
linker.obj: ../source/DevKit/Compiler/linker.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT linker.obj -MD -MP -MF $(DEPDIR)/linker.Tpo -c -o linker.obj `if test -f '../source/DevKit/Compiler/linker.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/linker.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/linker.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/linker.Tpo $(DEPDIR)/linker.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/linker.cpp' object='linker.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o linker.obj `if test -f '../source/DevKit/Compiler/linker.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/linker.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/linker.cpp'; fi`
objtype.o: ../source/DevKit/Compiler/objtype.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT objtype.o -MD -MP -MF $(DEPDIR)/objtype.Tpo -c -o objtype.o `test -f '../source/DevKit/Compiler/objtype.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/objtype.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/objtype.Tpo $(DEPDIR)/objtype.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/objtype.cpp' object='objtype.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o objtype.o `test -f '../source/DevKit/Compiler/objtype.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/objtype.cpp
objtype.obj: ../source/DevKit/Compiler/objtype.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT objtype.obj -MD -MP -MF $(DEPDIR)/objtype.Tpo -c -o objtype.obj `if test -f '../source/DevKit/Compiler/objtype.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/objtype.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/objtype.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/objtype.Tpo $(DEPDIR)/objtype.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/objtype.cpp' object='objtype.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o objtype.obj `if test -f '../source/DevKit/Compiler/objtype.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/objtype.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/objtype.cpp'; fi`
preproc.o: ../source/DevKit/Compiler/preproc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT preproc.o -MD -MP -MF $(DEPDIR)/preproc.Tpo -c -o preproc.o `test -f '../source/DevKit/Compiler/preproc.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/preproc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/preproc.Tpo $(DEPDIR)/preproc.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/preproc.cpp' object='preproc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o preproc.o `test -f '../source/DevKit/Compiler/preproc.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/preproc.cpp
preproc.obj: ../source/DevKit/Compiler/preproc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT preproc.obj -MD -MP -MF $(DEPDIR)/preproc.Tpo -c -o preproc.obj `if test -f '../source/DevKit/Compiler/preproc.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/preproc.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/preproc.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/preproc.Tpo $(DEPDIR)/preproc.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/preproc.cpp' object='preproc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o preproc.obj `if test -f '../source/DevKit/Compiler/preproc.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/preproc.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/preproc.cpp'; fi`
realproc.o: ../source/DevKit/Compiler/realproc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT realproc.o -MD -MP -MF $(DEPDIR)/realproc.Tpo -c -o realproc.o `test -f '../source/DevKit/Compiler/realproc.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/realproc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/realproc.Tpo $(DEPDIR)/realproc.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/realproc.cpp' object='realproc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o realproc.o `test -f '../source/DevKit/Compiler/realproc.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/realproc.cpp
realproc.obj: ../source/DevKit/Compiler/realproc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT realproc.obj -MD -MP -MF $(DEPDIR)/realproc.Tpo -c -o realproc.obj `if test -f '../source/DevKit/Compiler/realproc.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/realproc.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/realproc.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/realproc.Tpo $(DEPDIR)/realproc.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/realproc.cpp' object='realproc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o realproc.obj `if test -f '../source/DevKit/Compiler/realproc.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/realproc.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/realproc.cpp'; fi`
sludge_functions.o: ../source/DevKit/Compiler/sludge_functions.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sludge_functions.o -MD -MP -MF $(DEPDIR)/sludge_functions.Tpo -c -o sludge_functions.o `test -f '../source/DevKit/Compiler/sludge_functions.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/sludge_functions.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sludge_functions.Tpo $(DEPDIR)/sludge_functions.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/sludge_functions.cpp' object='sludge_functions.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sludge_functions.o `test -f '../source/DevKit/Compiler/sludge_functions.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/sludge_functions.cpp
sludge_functions.obj: ../source/DevKit/Compiler/sludge_functions.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sludge_functions.obj -MD -MP -MF $(DEPDIR)/sludge_functions.Tpo -c -o sludge_functions.obj `if test -f '../source/DevKit/Compiler/sludge_functions.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/sludge_functions.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/sludge_functions.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sludge_functions.Tpo $(DEPDIR)/sludge_functions.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/sludge_functions.cpp' object='sludge_functions.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sludge_functions.obj `if test -f '../source/DevKit/Compiler/sludge_functions.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/sludge_functions.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/sludge_functions.cpp'; fi`
splitter.o: ../source/DevKit/Compiler/splitter.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT splitter.o -MD -MP -MF $(DEPDIR)/splitter.Tpo -c -o splitter.o `test -f '../source/DevKit/Compiler/splitter.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/splitter.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/splitter.Tpo $(DEPDIR)/splitter.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/splitter.cpp' object='splitter.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o splitter.o `test -f '../source/DevKit/Compiler/splitter.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/splitter.cpp
splitter.obj: ../source/DevKit/Compiler/splitter.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT splitter.obj -MD -MP -MF $(DEPDIR)/splitter.Tpo -c -o splitter.obj `if test -f '../source/DevKit/Compiler/splitter.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/splitter.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/splitter.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/splitter.Tpo $(DEPDIR)/splitter.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/splitter.cpp' object='splitter.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o splitter.obj `if test -f '../source/DevKit/Compiler/splitter.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/splitter.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/splitter.cpp'; fi`
tokens.o: ../source/DevKit/Compiler/tokens.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT tokens.o -MD -MP -MF $(DEPDIR)/tokens.Tpo -c -o tokens.o `test -f '../source/DevKit/Compiler/tokens.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/tokens.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/tokens.Tpo $(DEPDIR)/tokens.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/tokens.cpp' object='tokens.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o tokens.o `test -f '../source/DevKit/Compiler/tokens.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/tokens.cpp
tokens.obj: ../source/DevKit/Compiler/tokens.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT tokens.obj -MD -MP -MF $(DEPDIR)/tokens.Tpo -c -o tokens.obj `if test -f '../source/DevKit/Compiler/tokens.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/tokens.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/tokens.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/tokens.Tpo $(DEPDIR)/tokens.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/tokens.cpp' object='tokens.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o tokens.obj `if test -f '../source/DevKit/Compiler/tokens.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/tokens.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/tokens.cpp'; fi`
translation.o: ../source/DevKit/Compiler/translation.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT translation.o -MD -MP -MF $(DEPDIR)/translation.Tpo -c -o translation.o `test -f '../source/DevKit/Compiler/translation.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/translation.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/translation.Tpo $(DEPDIR)/translation.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/translation.cpp' object='translation.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o translation.o `test -f '../source/DevKit/Compiler/translation.cpp' || echo '$(srcdir)/'`../source/DevKit/Compiler/translation.cpp
translation.obj: ../source/DevKit/Compiler/translation.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT translation.obj -MD -MP -MF $(DEPDIR)/translation.Tpo -c -o translation.obj `if test -f '../source/DevKit/Compiler/translation.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/translation.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/translation.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/translation.Tpo $(DEPDIR)/translation.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Compiler/translation.cpp' object='translation.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o translation.obj `if test -f '../source/DevKit/Compiler/translation.cpp'; then $(CYGPATH_W) '../source/DevKit/Compiler/translation.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Compiler/translation.cpp'; fi`
moreio.o: ../source/DevKit/Common/moreio.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT moreio.o -MD -MP -MF $(DEPDIR)/moreio.Tpo -c -o moreio.o `test -f '../source/DevKit/Common/moreio.cpp' || echo '$(srcdir)/'`../source/DevKit/Common/moreio.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/moreio.Tpo $(DEPDIR)/moreio.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Common/moreio.cpp' object='moreio.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o moreio.o `test -f '../source/DevKit/Common/moreio.cpp' || echo '$(srcdir)/'`../source/DevKit/Common/moreio.cpp
moreio.obj: ../source/DevKit/Common/moreio.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT moreio.obj -MD -MP -MF $(DEPDIR)/moreio.Tpo -c -o moreio.obj `if test -f '../source/DevKit/Common/moreio.cpp'; then $(CYGPATH_W) '../source/DevKit/Common/moreio.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Common/moreio.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/moreio.Tpo $(DEPDIR)/moreio.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Common/moreio.cpp' object='moreio.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o moreio.obj `if test -f '../source/DevKit/Common/moreio.cpp'; then $(CYGPATH_W) '../source/DevKit/Common/moreio.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Common/moreio.cpp'; fi`
helpers.o: ../source/DevKit/Common/helpers.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT helpers.o -MD -MP -MF $(DEPDIR)/helpers.Tpo -c -o helpers.o `test -f '../source/DevKit/Common/helpers.cpp' || echo '$(srcdir)/'`../source/DevKit/Common/helpers.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/helpers.Tpo $(DEPDIR)/helpers.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Common/helpers.cpp' object='helpers.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o helpers.o `test -f '../source/DevKit/Common/helpers.cpp' || echo '$(srcdir)/'`../source/DevKit/Common/helpers.cpp
helpers.obj: ../source/DevKit/Common/helpers.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT helpers.obj -MD -MP -MF $(DEPDIR)/helpers.Tpo -c -o helpers.obj `if test -f '../source/DevKit/Common/helpers.cpp'; then $(CYGPATH_W) '../source/DevKit/Common/helpers.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Common/helpers.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/helpers.Tpo $(DEPDIR)/helpers.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Common/helpers.cpp' object='helpers.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o helpers.obj `if test -f '../source/DevKit/Common/helpers.cpp'; then $(CYGPATH_W) '../source/DevKit/Common/helpers.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Common/helpers.cpp'; fi`
stringarray.o: ../source/DevKit/Common/stringarray.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT stringarray.o -MD -MP -MF $(DEPDIR)/stringarray.Tpo -c -o stringarray.o `test -f '../source/DevKit/Common/stringarray.cpp' || echo '$(srcdir)/'`../source/DevKit/Common/stringarray.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/stringarray.Tpo $(DEPDIR)/stringarray.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Common/stringarray.cpp' object='stringarray.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o stringarray.o `test -f '../source/DevKit/Common/stringarray.cpp' || echo '$(srcdir)/'`../source/DevKit/Common/stringarray.cpp
stringarray.obj: ../source/DevKit/Common/stringarray.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT stringarray.obj -MD -MP -MF $(DEPDIR)/stringarray.Tpo -c -o stringarray.obj `if test -f '../source/DevKit/Common/stringarray.cpp'; then $(CYGPATH_W) '../source/DevKit/Common/stringarray.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Common/stringarray.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/stringarray.Tpo $(DEPDIR)/stringarray.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/Common/stringarray.cpp' object='stringarray.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o stringarray.obj `if test -f '../source/DevKit/Common/stringarray.cpp'; then $(CYGPATH_W) '../source/DevKit/Common/stringarray.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/Common/stringarray.cpp'; fi`
tga.o: ../source/CommonCode/tga.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT tga.o -MD -MP -MF $(DEPDIR)/tga.Tpo -c -o tga.o `test -f '../source/CommonCode/tga.cpp' || echo '$(srcdir)/'`../source/CommonCode/tga.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/tga.Tpo $(DEPDIR)/tga.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/CommonCode/tga.cpp' object='tga.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o tga.o `test -f '../source/CommonCode/tga.cpp' || echo '$(srcdir)/'`../source/CommonCode/tga.cpp
tga.obj: ../source/CommonCode/tga.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT tga.obj -MD -MP -MF $(DEPDIR)/tga.Tpo -c -o tga.obj `if test -f '../source/CommonCode/tga.cpp'; then $(CYGPATH_W) '../source/CommonCode/tga.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/CommonCode/tga.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/tga.Tpo $(DEPDIR)/tga.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/CommonCode/tga.cpp' object='tga.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o tga.obj `if test -f '../source/CommonCode/tga.cpp'; then $(CYGPATH_W) '../source/CommonCode/tga.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/CommonCode/tga.cpp'; fi`
utf8.o: ../source/CommonCode/utf8.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT utf8.o -MD -MP -MF $(DEPDIR)/utf8.Tpo -c -o utf8.o `test -f '../source/CommonCode/utf8.cpp' || echo '$(srcdir)/'`../source/CommonCode/utf8.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/utf8.Tpo $(DEPDIR)/utf8.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/CommonCode/utf8.cpp' object='utf8.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o utf8.o `test -f '../source/CommonCode/utf8.cpp' || echo '$(srcdir)/'`../source/CommonCode/utf8.cpp
utf8.obj: ../source/CommonCode/utf8.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT utf8.obj -MD -MP -MF $(DEPDIR)/utf8.Tpo -c -o utf8.obj `if test -f '../source/CommonCode/utf8.cpp'; then $(CYGPATH_W) '../source/CommonCode/utf8.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/CommonCode/utf8.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/utf8.Tpo $(DEPDIR)/utf8.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/CommonCode/utf8.cpp' object='utf8.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o utf8.obj `if test -f '../source/CommonCode/utf8.cpp'; then $(CYGPATH_W) '../source/CommonCode/utf8.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/CommonCode/utf8.cpp'; fi`
floormaker.o: ../source/DevKit/GraphicalTools/floormaker.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT floormaker.o -MD -MP -MF $(DEPDIR)/floormaker.Tpo -c -o floormaker.o `test -f '../source/DevKit/GraphicalTools/floormaker.cpp' || echo '$(srcdir)/'`../source/DevKit/GraphicalTools/floormaker.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/floormaker.Tpo $(DEPDIR)/floormaker.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/GraphicalTools/floormaker.cpp' object='floormaker.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o floormaker.o `test -f '../source/DevKit/GraphicalTools/floormaker.cpp' || echo '$(srcdir)/'`../source/DevKit/GraphicalTools/floormaker.cpp
floormaker.obj: ../source/DevKit/GraphicalTools/floormaker.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT floormaker.obj -MD -MP -MF $(DEPDIR)/floormaker.Tpo -c -o floormaker.obj `if test -f '../source/DevKit/GraphicalTools/floormaker.cpp'; then $(CYGPATH_W) '../source/DevKit/GraphicalTools/floormaker.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/GraphicalTools/floormaker.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/floormaker.Tpo $(DEPDIR)/floormaker.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/GraphicalTools/floormaker.cpp' object='floormaker.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o floormaker.obj `if test -f '../source/DevKit/GraphicalTools/floormaker.cpp'; then $(CYGPATH_W) '../source/DevKit/GraphicalTools/floormaker.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/GraphicalTools/floormaker.cpp'; fi`
sprites.o: ../source/DevKit/GraphicalTools/sprites.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sprites.o -MD -MP -MF $(DEPDIR)/sprites.Tpo -c -o sprites.o `test -f '../source/DevKit/GraphicalTools/sprites.cpp' || echo '$(srcdir)/'`../source/DevKit/GraphicalTools/sprites.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sprites.Tpo $(DEPDIR)/sprites.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/GraphicalTools/sprites.cpp' object='sprites.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sprites.o `test -f '../source/DevKit/GraphicalTools/sprites.cpp' || echo '$(srcdir)/'`../source/DevKit/GraphicalTools/sprites.cpp
sprites.obj: ../source/DevKit/GraphicalTools/sprites.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sprites.obj -MD -MP -MF $(DEPDIR)/sprites.Tpo -c -o sprites.obj `if test -f '../source/DevKit/GraphicalTools/sprites.cpp'; then $(CYGPATH_W) '../source/DevKit/GraphicalTools/sprites.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/GraphicalTools/sprites.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/sprites.Tpo $(DEPDIR)/sprites.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/GraphicalTools/sprites.cpp' object='sprites.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sprites.obj `if test -f '../source/DevKit/GraphicalTools/sprites.cpp'; then $(CYGPATH_W) '../source/DevKit/GraphicalTools/sprites.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/GraphicalTools/sprites.cpp'; fi`
translator.o: ../source/DevKit/TranslationEditor/translator.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT translator.o -MD -MP -MF $(DEPDIR)/translator.Tpo -c -o translator.o `test -f '../source/DevKit/TranslationEditor/translator.cpp' || echo '$(srcdir)/'`../source/DevKit/TranslationEditor/translator.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/translator.Tpo $(DEPDIR)/translator.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/TranslationEditor/translator.cpp' object='translator.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o translator.o `test -f '../source/DevKit/TranslationEditor/translator.cpp' || echo '$(srcdir)/'`../source/DevKit/TranslationEditor/translator.cpp
translator.obj: ../source/DevKit/TranslationEditor/translator.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT translator.obj -MD -MP -MF $(DEPDIR)/translator.Tpo -c -o translator.obj `if test -f '../source/DevKit/TranslationEditor/translator.cpp'; then $(CYGPATH_W) '../source/DevKit/TranslationEditor/translator.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/TranslationEditor/translator.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/translator.Tpo $(DEPDIR)/translator.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/TranslationEditor/translator.cpp' object='translator.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o translator.obj `if test -f '../source/DevKit/TranslationEditor/translator.cpp'; then $(CYGPATH_W) '../source/DevKit/TranslationEditor/translator.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/TranslationEditor/translator.cpp'; fi`
zbuffer.o: ../source/DevKit/GraphicalTools/zbuffer.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT zbuffer.o -MD -MP -MF $(DEPDIR)/zbuffer.Tpo -c -o zbuffer.o `test -f '../source/DevKit/GraphicalTools/zbuffer.cpp' || echo '$(srcdir)/'`../source/DevKit/GraphicalTools/zbuffer.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/zbuffer.Tpo $(DEPDIR)/zbuffer.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/GraphicalTools/zbuffer.cpp' object='zbuffer.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o zbuffer.o `test -f '../source/DevKit/GraphicalTools/zbuffer.cpp' || echo '$(srcdir)/'`../source/DevKit/GraphicalTools/zbuffer.cpp
zbuffer.obj: ../source/DevKit/GraphicalTools/zbuffer.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT zbuffer.obj -MD -MP -MF $(DEPDIR)/zbuffer.Tpo -c -o zbuffer.obj `if test -f '../source/DevKit/GraphicalTools/zbuffer.cpp'; then $(CYGPATH_W) '../source/DevKit/GraphicalTools/zbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/GraphicalTools/zbuffer.cpp'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/zbuffer.Tpo $(DEPDIR)/zbuffer.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='../source/DevKit/GraphicalTools/zbuffer.cpp' object='zbuffer.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o zbuffer.obj `if test -f '../source/DevKit/GraphicalTools/zbuffer.cpp'; then $(CYGPATH_W) '../source/DevKit/GraphicalTools/zbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/../source/DevKit/GraphicalTools/zbuffer.cpp'; fi`
install-dist_pkgdataDATA: $(dist_pkgdata_DATA)
@$(NORMAL_INSTALL)
test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
@list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdatadir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \
done
uninstall-dist_pkgdataDATA:
@$(NORMAL_UNINSTALL)
@list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
test -n "$$files" || exit 0; \
echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$files
# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS):
@fail= failcom='exit 1'; \
for f in x $$MAKEFLAGS; do \
case $$f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
fi; test -z "$$fail"
$(RECURSIVE_CLEAN_TARGETS):
@fail= failcom='exit 1'; \
for f in x $$MAKEFLAGS; do \
case $$f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
case "$@" in \
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
*) list='$(SUBDIRS)' ;; \
esac; \
rev=''; for subdir in $$list; do \
if test "$$subdir" = "."; then :; else \
rev="$$subdir $$rev"; \
fi; \
done; \
rev="$$rev ."; \
target=`echo $@ | sed s/-recursive//`; \
for subdir in $$rev; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done && test -z "$$fail"
tags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
done
ctags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
done
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; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
set x; \
here=`pwd`; \
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
include_option=--etags-include; \
empty_fix=.; \
else \
include_option=--include; \
empty_fix=; \
fi; \
list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test ! -f $$subdir/TAGS || \
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
fi; \
done; \
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; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
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; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__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)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test -d "$(distdir)/$$subdir" \
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|| exit 1; \
fi; \
done
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
$(am__relativize); \
new_distdir=$$reldir; \
dir1=$$subdir; dir2="$(top_distdir)"; \
$(am__relativize); \
new_top_distdir=$$reldir; \
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
($(am__cd) $$subdir && \
$(MAKE) $(AM_MAKEFLAGS) \
top_distdir="$$new_top_distdir" \
distdir="$$new_distdir" \
am__remove_distdir=: \
am__skip_length_check=: \
am__skip_mode_fix=: \
distdir) \
|| exit 1; \
fi; \
done
check-am: all-am
check: check-recursive
all-am: Makefile $(PROGRAMS) $(DATA)
installdirs: installdirs-recursive
installdirs-am:
for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkgdatadir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-recursive
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)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_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-recursive
clean-am: clean-binPROGRAMS clean-generic mostlyclean-am
distclean: distclean-recursive
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
dvi: dvi-recursive
dvi-am:
html: html-recursive
html-am:
info: info-recursive
info-am:
install-data-am: install-dist_pkgdataDATA
install-dvi: install-dvi-recursive
install-dvi-am:
install-exec-am: install-binPROGRAMS
install-html: install-html-recursive
install-html-am:
install-info: install-info-recursive
install-info-am:
install-man:
install-pdf: install-pdf-recursive
install-pdf-am:
install-ps: install-ps-recursive
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-recursive
-rm -rf ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-recursive
mostlyclean-am: mostlyclean-compile mostlyclean-generic
pdf: pdf-recursive
pdf-am:
ps: ps-recursive
ps-am:
uninstall-am: uninstall-binPROGRAMS uninstall-dist_pkgdataDATA
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
install-am install-strip tags-recursive
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
all all-am check check-am clean clean-binPROGRAMS \
clean-generic ctags ctags-recursive distclean \
distclean-compile distclean-generic distclean-tags distdir dvi \
dvi-am html html-am info info-am install install-am \
install-binPROGRAMS install-data install-data-am \
install-dist_pkgdataDATA install-dvi install-dvi-am \
install-exec install-exec-am install-html install-html-am \
install-info install-info-am install-man install-pdf \
install-pdf-am install-ps install-ps-am install-strip \
installcheck installcheck-am installdirs installdirs-am \
maintainer-clean maintainer-clean-generic mostlyclean \
mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
tags tags-recursive uninstall uninstall-am \
uninstall-binPROGRAMS uninstall-dist_pkgdataDATA
# 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:
|