forked from iamCode/Dawn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.in
1756 lines (1558 loc) · 135 KB
/
Makefile.in
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
# 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 = dawn-rpg$(EXEEXT) $(am__EXEEXT_1)
# if configure is run with --with-testsuite we also need to build the testsuite program
@TESTSUITE_TRUE@am__append_1 = testsuite
subdir = .
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \
ChangeLog NEWS depcomp install-sh missing mkinstalldirs
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)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
@TESTSUITE_TRUE@am__EXEEXT_1 = testsuite$(EXEEXT)
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(dawndatadir)"
PROGRAMS = $(bin_PROGRAMS)
am_dawn_rpg_OBJECTS = a_star.$(OBJEXT) actionbar.$(OBJEXT) \
buffwindow.$(OBJEXT) callindirection.$(OBJEXT) \
camerafocushandler.$(OBJEXT) character.$(OBJEXT) \
editor.$(OBJEXT) characterinfoscreen.$(OBJEXT) \
interface.$(OBJEXT) luafunctions.$(OBJEXT) \
luainterfacegenerated.$(OBJEXT) magic.$(OBJEXT) \
message.$(OBJEXT) npc.$(OBJEXT) commonsounds.$(OBJEXT) \
configurableframe.$(OBJEXT) configuredframes.$(OBJEXT) \
configuration.$(OBJEXT) controlelement.$(OBJEXT) \
spell.$(OBJEXT) texture.$(OBJEXT) zone.$(OBJEXT) \
dawnstate.$(OBJEXT) debug.$(OBJEXT) elements.$(OBJEXT) \
frames.$(OBJEXT) framesbase.$(OBJEXT) fontcache.$(OBJEXT) \
gameloophandler.$(OBJEXT) GLFT_Font.$(OBJEXT) \
globals.$(OBJEXT) groundloot.$(OBJEXT) \
interactionpoint.$(OBJEXT) interactionregion.$(OBJEXT) \
inventory.$(OBJEXT) inventoryscreen.$(OBJEXT) item.$(OBJEXT) \
loadingscreen.$(OBJEXT) logwindow.$(OBJEXT) main.$(OBJEXT) \
musiccache.$(OBJEXT) optionswindow.$(OBJEXT) player.$(OBJEXT) \
quest.$(OBJEXT) questwindow.$(OBJEXT) random.$(OBJEXT) \
resolution.$(OBJEXT) shop.$(OBJEXT) soundengine.$(OBJEXT) \
spellbook.$(OBJEXT) statssystem.$(OBJEXT) \
testinterface.$(OBJEXT) textwindow.$(OBJEXT) tileset.$(OBJEXT) \
tooltip.$(OBJEXT) utils.$(OBJEXT) GLee.$(OBJEXT) \
pnglite.$(OBJEXT) EventClass.$(OBJEXT) MutexClass.$(OBJEXT) \
Thread.$(OBJEXT)
dawn_rpg_OBJECTS = $(am_dawn_rpg_OBJECTS)
dawn_rpg_LDADD = $(LDADD)
am__testsuite_SOURCES_DIST = tests/testsuite.cpp tests/testsuite.h
@TESTSUITE_TRUE@am_testsuite_OBJECTS = testsuite.$(OBJEXT)
testsuite_OBJECTS = $(am_testsuite_OBJECTS)
testsuite_LDADD = $(LDADD)
DEFAULT_INCLUDES = -I.@am__isrc@
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
CXXLD = $(CXX)
CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
-o $@
SOURCES = $(dawn_rpg_SOURCES) $(testsuite_SOURCES)
DIST_SOURCES = $(dawn_rpg_SOURCES) $(am__testsuite_SOURCES_DIST)
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 = $(dawndata_DATA)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
{ test ! -d "$(distdir)" \
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -fr "$(distdir)"; }; }
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
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@
EXEEXT = @EXEEXT@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
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@
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@
# do not check for files README, TODO, etc
AUTOMAKE_OPTIONS = foreign
INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/threadObject -I$(top_srcdir)/GLee -I/usr/include/freetype2 -I/usr/include/GL -I/usr/include/lua5.1
@TESTSUITE_TRUE@testsuite_SOURCES = tests/testsuite.cpp tests/testsuite.h
#todo: Data should be installed in $(pkgdatadir) which is .../share/dawn
dawndatadir = $(bindir)/data
dawn_rpg_SOURCES = src/a_star.cpp \
src/a_star.h \
src/actionbar.cpp \
src/actionbar.h \
src/buffwindow.cpp \
src/buffwindow.h \
src/callindirection.cpp \
src/callindirection.h \
src/camerafocushandler.cpp \
src/camerafocushandler.h \
src/character.cpp \
src/character.h \
src/direction.h \
src/drawinghelpers.h \
src/editor.cpp \
src/editor.h \
src/characterinfoscreen.cpp \
src/characterinfoscreen.h \
src/interface.cpp \
src/interface.h \
src/luafunctions.cpp \
src/luafunctions.h \
src/luainterfacegenerated.cpp \
src/luainterfacegenerated.h \
src/luainterface.h \
src/magic.h \
src/magic.cpp \
src/message.cpp \
src/message.h \
src/npc.cpp \
src/npc.h \
src/commonsounds.cpp \
src/commonsounds.h \
src/configurableframe.h \
src/configurableframe.cpp \
src/configuredframes.h \
src/configuredframes.cpp \
src/configuration.cpp \
src/configuration.h \
src/controlelement.h \
src/controlelement.cpp \
src/spell.cpp \
src/spell.h \
src/texture.cpp \
src/texture.h \
src/zone.cpp \
src/zone.h \
src/dawnstate.h \
src/dawnstate.cpp \
src/debug.cpp \
src/debug.h \
src/elements.cpp \
src/elements.h \
src/frames.h \
src/frames.cpp \
src/framesbase.cpp \
src/framesbase.h \
src/fontcache.cpp \
src/fontcache.h \
src/gameloophandler.h \
src/gameloophandler.cpp \
src/GLFT_Font.cpp \
src/GLFT_Font.h \
src/globals.cpp \
src/globals.h \
src/groundloot.cpp \
src/groundloot.h \
src/interactionpoint.cpp \
src/interactionpoint.h \
src/interactionregion.cpp \
src/interactionregion.h \
src/inventory.cpp \
src/inventory.h \
src/inventoryscreen.cpp \
src/inventoryscreen.h \
src/item.cpp \
src/item.h \
src/loadingmanager.h \
src/loadingscreen.cpp \
src/loadingscreen.h \
src/logwindow.cpp \
src/logwindow.h \
src/main.cpp \
src/musiccache.cpp \
src/musiccache.h \
src/optionswindow.cpp \
src/optionswindow.h \
src/player.cpp \
src/player.h \
src/quest.cpp \
src/quest.h \
src/questwindow.cpp \
src/questwindow.h \
src/random.cpp \
src/random.h \
src/resolution.cpp \
src/resolution.h \
src/shop.cpp \
src/shop.h \
src/soundengine.cpp \
src/soundengine.h \
src/spellbook.cpp \
src/spellbook.h \
src/stats.h \
src/statssystem.cpp \
src/statssystem.h \
src/testinterface.cpp \
src/testinterface.h \
src/textureframe.h \
src/textwindow.cpp \
src/textwindow.h \
src/tileset.cpp \
src/tileset.h \
src/timeconverterhelper.h \
src/tooltip.cpp \
src/tooltip.h \
src/utils.cpp \
src/utils.h \
src/GLee/GLee.cpp \
src/GLee/GLee.h \
src/pnglite/pnglite.c \
src/pnglite/pnglite.h \
src/threadObject/EventClass.cpp \
src/threadObject/EventClass.h \
src/threadObject/MutexClass.cpp \
src/threadObject/MutexClass.h \
src/threadObject/Thread.cpp \
src/threadObject/Thread.h
dawndata_DATA = data/spells.lua
all: all-am
.SUFFIXES:
.SUFFIXES: .c .cpp .o .obj
am--refresh:
@:
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: $(am__configure_deps)
$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(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)
dawn-rpg$(EXEEXT): $(dawn_rpg_OBJECTS) $(dawn_rpg_DEPENDENCIES)
@rm -f dawn-rpg$(EXEEXT)
$(CXXLINK) $(dawn_rpg_OBJECTS) $(dawn_rpg_LDADD) $(LIBS)
testsuite$(EXEEXT): $(testsuite_OBJECTS) $(testsuite_DEPENDENCIES)
@rm -f testsuite$(EXEEXT)
$(CXXLINK) $(testsuite_OBJECTS) $(testsuite_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/EventClass.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GLFT_Font.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GLee.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MutexClass.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Thread.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/a_star.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/actionbar.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/buffwindow.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/callindirection.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/camerafocushandler.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/character.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/characterinfoscreen.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/commonsounds.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/configurableframe.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/configuration.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/configuredframes.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/controlelement.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dawnstate.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/editor.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elements.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fontcache.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/frames.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/framesbase.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gameloophandler.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/globals.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/groundloot.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interactionpoint.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interactionregion.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interface.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inventory.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inventoryscreen.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/item.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/loadingscreen.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/logwindow.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/luafunctions.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/luainterfacegenerated.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/magic.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/message.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/musiccache.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/npc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/optionswindow.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/player.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pnglite.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/quest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/questwindow.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/random.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/resolution.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shop.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/soundengine.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/spell.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/spellbook.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/statssystem.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testinterface.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testsuite.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/texture.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/textwindow.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tileset.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tooltip.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/utils.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/zone.Po@am__quote@
.c.o:
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
.c.obj:
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
pnglite.o: src/pnglite/pnglite.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pnglite.o -MD -MP -MF $(DEPDIR)/pnglite.Tpo -c -o pnglite.o `test -f 'src/pnglite/pnglite.c' || echo '$(srcdir)/'`src/pnglite/pnglite.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pnglite.Tpo $(DEPDIR)/pnglite.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pnglite/pnglite.c' object='pnglite.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pnglite.o `test -f 'src/pnglite/pnglite.c' || echo '$(srcdir)/'`src/pnglite/pnglite.c
pnglite.obj: src/pnglite/pnglite.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pnglite.obj -MD -MP -MF $(DEPDIR)/pnglite.Tpo -c -o pnglite.obj `if test -f 'src/pnglite/pnglite.c'; then $(CYGPATH_W) 'src/pnglite/pnglite.c'; else $(CYGPATH_W) '$(srcdir)/src/pnglite/pnglite.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pnglite.Tpo $(DEPDIR)/pnglite.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pnglite/pnglite.c' object='pnglite.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pnglite.obj `if test -f 'src/pnglite/pnglite.c'; then $(CYGPATH_W) 'src/pnglite/pnglite.c'; else $(CYGPATH_W) '$(srcdir)/src/pnglite/pnglite.c'; fi`
.cpp.o:
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@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@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@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) '$<'`
a_star.o: src/a_star.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT a_star.o -MD -MP -MF $(DEPDIR)/a_star.Tpo -c -o a_star.o `test -f 'src/a_star.cpp' || echo '$(srcdir)/'`src/a_star.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/a_star.Tpo $(DEPDIR)/a_star.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/a_star.cpp' object='a_star.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 a_star.o `test -f 'src/a_star.cpp' || echo '$(srcdir)/'`src/a_star.cpp
a_star.obj: src/a_star.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT a_star.obj -MD -MP -MF $(DEPDIR)/a_star.Tpo -c -o a_star.obj `if test -f 'src/a_star.cpp'; then $(CYGPATH_W) 'src/a_star.cpp'; else $(CYGPATH_W) '$(srcdir)/src/a_star.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/a_star.Tpo $(DEPDIR)/a_star.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/a_star.cpp' object='a_star.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 a_star.obj `if test -f 'src/a_star.cpp'; then $(CYGPATH_W) 'src/a_star.cpp'; else $(CYGPATH_W) '$(srcdir)/src/a_star.cpp'; fi`
actionbar.o: src/actionbar.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT actionbar.o -MD -MP -MF $(DEPDIR)/actionbar.Tpo -c -o actionbar.o `test -f 'src/actionbar.cpp' || echo '$(srcdir)/'`src/actionbar.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/actionbar.Tpo $(DEPDIR)/actionbar.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/actionbar.cpp' object='actionbar.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 actionbar.o `test -f 'src/actionbar.cpp' || echo '$(srcdir)/'`src/actionbar.cpp
actionbar.obj: src/actionbar.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT actionbar.obj -MD -MP -MF $(DEPDIR)/actionbar.Tpo -c -o actionbar.obj `if test -f 'src/actionbar.cpp'; then $(CYGPATH_W) 'src/actionbar.cpp'; else $(CYGPATH_W) '$(srcdir)/src/actionbar.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/actionbar.Tpo $(DEPDIR)/actionbar.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/actionbar.cpp' object='actionbar.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 actionbar.obj `if test -f 'src/actionbar.cpp'; then $(CYGPATH_W) 'src/actionbar.cpp'; else $(CYGPATH_W) '$(srcdir)/src/actionbar.cpp'; fi`
buffwindow.o: src/buffwindow.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT buffwindow.o -MD -MP -MF $(DEPDIR)/buffwindow.Tpo -c -o buffwindow.o `test -f 'src/buffwindow.cpp' || echo '$(srcdir)/'`src/buffwindow.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/buffwindow.Tpo $(DEPDIR)/buffwindow.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/buffwindow.cpp' object='buffwindow.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 buffwindow.o `test -f 'src/buffwindow.cpp' || echo '$(srcdir)/'`src/buffwindow.cpp
buffwindow.obj: src/buffwindow.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT buffwindow.obj -MD -MP -MF $(DEPDIR)/buffwindow.Tpo -c -o buffwindow.obj `if test -f 'src/buffwindow.cpp'; then $(CYGPATH_W) 'src/buffwindow.cpp'; else $(CYGPATH_W) '$(srcdir)/src/buffwindow.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/buffwindow.Tpo $(DEPDIR)/buffwindow.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/buffwindow.cpp' object='buffwindow.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 buffwindow.obj `if test -f 'src/buffwindow.cpp'; then $(CYGPATH_W) 'src/buffwindow.cpp'; else $(CYGPATH_W) '$(srcdir)/src/buffwindow.cpp'; fi`
callindirection.o: src/callindirection.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT callindirection.o -MD -MP -MF $(DEPDIR)/callindirection.Tpo -c -o callindirection.o `test -f 'src/callindirection.cpp' || echo '$(srcdir)/'`src/callindirection.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/callindirection.Tpo $(DEPDIR)/callindirection.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/callindirection.cpp' object='callindirection.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 callindirection.o `test -f 'src/callindirection.cpp' || echo '$(srcdir)/'`src/callindirection.cpp
callindirection.obj: src/callindirection.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT callindirection.obj -MD -MP -MF $(DEPDIR)/callindirection.Tpo -c -o callindirection.obj `if test -f 'src/callindirection.cpp'; then $(CYGPATH_W) 'src/callindirection.cpp'; else $(CYGPATH_W) '$(srcdir)/src/callindirection.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/callindirection.Tpo $(DEPDIR)/callindirection.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/callindirection.cpp' object='callindirection.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 callindirection.obj `if test -f 'src/callindirection.cpp'; then $(CYGPATH_W) 'src/callindirection.cpp'; else $(CYGPATH_W) '$(srcdir)/src/callindirection.cpp'; fi`
camerafocushandler.o: src/camerafocushandler.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT camerafocushandler.o -MD -MP -MF $(DEPDIR)/camerafocushandler.Tpo -c -o camerafocushandler.o `test -f 'src/camerafocushandler.cpp' || echo '$(srcdir)/'`src/camerafocushandler.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/camerafocushandler.Tpo $(DEPDIR)/camerafocushandler.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/camerafocushandler.cpp' object='camerafocushandler.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 camerafocushandler.o `test -f 'src/camerafocushandler.cpp' || echo '$(srcdir)/'`src/camerafocushandler.cpp
camerafocushandler.obj: src/camerafocushandler.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT camerafocushandler.obj -MD -MP -MF $(DEPDIR)/camerafocushandler.Tpo -c -o camerafocushandler.obj `if test -f 'src/camerafocushandler.cpp'; then $(CYGPATH_W) 'src/camerafocushandler.cpp'; else $(CYGPATH_W) '$(srcdir)/src/camerafocushandler.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/camerafocushandler.Tpo $(DEPDIR)/camerafocushandler.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/camerafocushandler.cpp' object='camerafocushandler.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 camerafocushandler.obj `if test -f 'src/camerafocushandler.cpp'; then $(CYGPATH_W) 'src/camerafocushandler.cpp'; else $(CYGPATH_W) '$(srcdir)/src/camerafocushandler.cpp'; fi`
character.o: src/character.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT character.o -MD -MP -MF $(DEPDIR)/character.Tpo -c -o character.o `test -f 'src/character.cpp' || echo '$(srcdir)/'`src/character.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/character.Tpo $(DEPDIR)/character.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/character.cpp' object='character.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 character.o `test -f 'src/character.cpp' || echo '$(srcdir)/'`src/character.cpp
character.obj: src/character.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT character.obj -MD -MP -MF $(DEPDIR)/character.Tpo -c -o character.obj `if test -f 'src/character.cpp'; then $(CYGPATH_W) 'src/character.cpp'; else $(CYGPATH_W) '$(srcdir)/src/character.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/character.Tpo $(DEPDIR)/character.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/character.cpp' object='character.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 character.obj `if test -f 'src/character.cpp'; then $(CYGPATH_W) 'src/character.cpp'; else $(CYGPATH_W) '$(srcdir)/src/character.cpp'; fi`
editor.o: src/editor.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT editor.o -MD -MP -MF $(DEPDIR)/editor.Tpo -c -o editor.o `test -f 'src/editor.cpp' || echo '$(srcdir)/'`src/editor.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/editor.Tpo $(DEPDIR)/editor.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/editor.cpp' object='editor.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 editor.o `test -f 'src/editor.cpp' || echo '$(srcdir)/'`src/editor.cpp
editor.obj: src/editor.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT editor.obj -MD -MP -MF $(DEPDIR)/editor.Tpo -c -o editor.obj `if test -f 'src/editor.cpp'; then $(CYGPATH_W) 'src/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/src/editor.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/editor.Tpo $(DEPDIR)/editor.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/editor.cpp' object='editor.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 editor.obj `if test -f 'src/editor.cpp'; then $(CYGPATH_W) 'src/editor.cpp'; else $(CYGPATH_W) '$(srcdir)/src/editor.cpp'; fi`
characterinfoscreen.o: src/characterinfoscreen.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT characterinfoscreen.o -MD -MP -MF $(DEPDIR)/characterinfoscreen.Tpo -c -o characterinfoscreen.o `test -f 'src/characterinfoscreen.cpp' || echo '$(srcdir)/'`src/characterinfoscreen.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/characterinfoscreen.Tpo $(DEPDIR)/characterinfoscreen.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/characterinfoscreen.cpp' object='characterinfoscreen.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 characterinfoscreen.o `test -f 'src/characterinfoscreen.cpp' || echo '$(srcdir)/'`src/characterinfoscreen.cpp
characterinfoscreen.obj: src/characterinfoscreen.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT characterinfoscreen.obj -MD -MP -MF $(DEPDIR)/characterinfoscreen.Tpo -c -o characterinfoscreen.obj `if test -f 'src/characterinfoscreen.cpp'; then $(CYGPATH_W) 'src/characterinfoscreen.cpp'; else $(CYGPATH_W) '$(srcdir)/src/characterinfoscreen.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/characterinfoscreen.Tpo $(DEPDIR)/characterinfoscreen.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/characterinfoscreen.cpp' object='characterinfoscreen.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 characterinfoscreen.obj `if test -f 'src/characterinfoscreen.cpp'; then $(CYGPATH_W) 'src/characterinfoscreen.cpp'; else $(CYGPATH_W) '$(srcdir)/src/characterinfoscreen.cpp'; fi`
interface.o: src/interface.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT interface.o -MD -MP -MF $(DEPDIR)/interface.Tpo -c -o interface.o `test -f 'src/interface.cpp' || echo '$(srcdir)/'`src/interface.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/interface.Tpo $(DEPDIR)/interface.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/interface.cpp' object='interface.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 interface.o `test -f 'src/interface.cpp' || echo '$(srcdir)/'`src/interface.cpp
interface.obj: src/interface.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT interface.obj -MD -MP -MF $(DEPDIR)/interface.Tpo -c -o interface.obj `if test -f 'src/interface.cpp'; then $(CYGPATH_W) 'src/interface.cpp'; else $(CYGPATH_W) '$(srcdir)/src/interface.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/interface.Tpo $(DEPDIR)/interface.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/interface.cpp' object='interface.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 interface.obj `if test -f 'src/interface.cpp'; then $(CYGPATH_W) 'src/interface.cpp'; else $(CYGPATH_W) '$(srcdir)/src/interface.cpp'; fi`
luafunctions.o: src/luafunctions.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT luafunctions.o -MD -MP -MF $(DEPDIR)/luafunctions.Tpo -c -o luafunctions.o `test -f 'src/luafunctions.cpp' || echo '$(srcdir)/'`src/luafunctions.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/luafunctions.Tpo $(DEPDIR)/luafunctions.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/luafunctions.cpp' object='luafunctions.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 luafunctions.o `test -f 'src/luafunctions.cpp' || echo '$(srcdir)/'`src/luafunctions.cpp
luafunctions.obj: src/luafunctions.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT luafunctions.obj -MD -MP -MF $(DEPDIR)/luafunctions.Tpo -c -o luafunctions.obj `if test -f 'src/luafunctions.cpp'; then $(CYGPATH_W) 'src/luafunctions.cpp'; else $(CYGPATH_W) '$(srcdir)/src/luafunctions.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/luafunctions.Tpo $(DEPDIR)/luafunctions.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/luafunctions.cpp' object='luafunctions.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 luafunctions.obj `if test -f 'src/luafunctions.cpp'; then $(CYGPATH_W) 'src/luafunctions.cpp'; else $(CYGPATH_W) '$(srcdir)/src/luafunctions.cpp'; fi`
luainterfacegenerated.o: src/luainterfacegenerated.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT luainterfacegenerated.o -MD -MP -MF $(DEPDIR)/luainterfacegenerated.Tpo -c -o luainterfacegenerated.o `test -f 'src/luainterfacegenerated.cpp' || echo '$(srcdir)/'`src/luainterfacegenerated.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/luainterfacegenerated.Tpo $(DEPDIR)/luainterfacegenerated.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/luainterfacegenerated.cpp' object='luainterfacegenerated.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 luainterfacegenerated.o `test -f 'src/luainterfacegenerated.cpp' || echo '$(srcdir)/'`src/luainterfacegenerated.cpp
luainterfacegenerated.obj: src/luainterfacegenerated.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT luainterfacegenerated.obj -MD -MP -MF $(DEPDIR)/luainterfacegenerated.Tpo -c -o luainterfacegenerated.obj `if test -f 'src/luainterfacegenerated.cpp'; then $(CYGPATH_W) 'src/luainterfacegenerated.cpp'; else $(CYGPATH_W) '$(srcdir)/src/luainterfacegenerated.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/luainterfacegenerated.Tpo $(DEPDIR)/luainterfacegenerated.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/luainterfacegenerated.cpp' object='luainterfacegenerated.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 luainterfacegenerated.obj `if test -f 'src/luainterfacegenerated.cpp'; then $(CYGPATH_W) 'src/luainterfacegenerated.cpp'; else $(CYGPATH_W) '$(srcdir)/src/luainterfacegenerated.cpp'; fi`
magic.o: src/magic.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT magic.o -MD -MP -MF $(DEPDIR)/magic.Tpo -c -o magic.o `test -f 'src/magic.cpp' || echo '$(srcdir)/'`src/magic.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/magic.Tpo $(DEPDIR)/magic.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/magic.cpp' object='magic.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 magic.o `test -f 'src/magic.cpp' || echo '$(srcdir)/'`src/magic.cpp
magic.obj: src/magic.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT magic.obj -MD -MP -MF $(DEPDIR)/magic.Tpo -c -o magic.obj `if test -f 'src/magic.cpp'; then $(CYGPATH_W) 'src/magic.cpp'; else $(CYGPATH_W) '$(srcdir)/src/magic.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/magic.Tpo $(DEPDIR)/magic.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/magic.cpp' object='magic.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 magic.obj `if test -f 'src/magic.cpp'; then $(CYGPATH_W) 'src/magic.cpp'; else $(CYGPATH_W) '$(srcdir)/src/magic.cpp'; fi`
message.o: src/message.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT message.o -MD -MP -MF $(DEPDIR)/message.Tpo -c -o message.o `test -f 'src/message.cpp' || echo '$(srcdir)/'`src/message.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/message.Tpo $(DEPDIR)/message.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/message.cpp' object='message.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 message.o `test -f 'src/message.cpp' || echo '$(srcdir)/'`src/message.cpp
message.obj: src/message.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT message.obj -MD -MP -MF $(DEPDIR)/message.Tpo -c -o message.obj `if test -f 'src/message.cpp'; then $(CYGPATH_W) 'src/message.cpp'; else $(CYGPATH_W) '$(srcdir)/src/message.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/message.Tpo $(DEPDIR)/message.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/message.cpp' object='message.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 message.obj `if test -f 'src/message.cpp'; then $(CYGPATH_W) 'src/message.cpp'; else $(CYGPATH_W) '$(srcdir)/src/message.cpp'; fi`
npc.o: src/npc.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT npc.o -MD -MP -MF $(DEPDIR)/npc.Tpo -c -o npc.o `test -f 'src/npc.cpp' || echo '$(srcdir)/'`src/npc.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/npc.Tpo $(DEPDIR)/npc.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/npc.cpp' object='npc.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 npc.o `test -f 'src/npc.cpp' || echo '$(srcdir)/'`src/npc.cpp
npc.obj: src/npc.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT npc.obj -MD -MP -MF $(DEPDIR)/npc.Tpo -c -o npc.obj `if test -f 'src/npc.cpp'; then $(CYGPATH_W) 'src/npc.cpp'; else $(CYGPATH_W) '$(srcdir)/src/npc.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/npc.Tpo $(DEPDIR)/npc.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/npc.cpp' object='npc.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 npc.obj `if test -f 'src/npc.cpp'; then $(CYGPATH_W) 'src/npc.cpp'; else $(CYGPATH_W) '$(srcdir)/src/npc.cpp'; fi`
commonsounds.o: src/commonsounds.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT commonsounds.o -MD -MP -MF $(DEPDIR)/commonsounds.Tpo -c -o commonsounds.o `test -f 'src/commonsounds.cpp' || echo '$(srcdir)/'`src/commonsounds.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/commonsounds.Tpo $(DEPDIR)/commonsounds.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/commonsounds.cpp' object='commonsounds.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 commonsounds.o `test -f 'src/commonsounds.cpp' || echo '$(srcdir)/'`src/commonsounds.cpp
commonsounds.obj: src/commonsounds.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT commonsounds.obj -MD -MP -MF $(DEPDIR)/commonsounds.Tpo -c -o commonsounds.obj `if test -f 'src/commonsounds.cpp'; then $(CYGPATH_W) 'src/commonsounds.cpp'; else $(CYGPATH_W) '$(srcdir)/src/commonsounds.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/commonsounds.Tpo $(DEPDIR)/commonsounds.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/commonsounds.cpp' object='commonsounds.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 commonsounds.obj `if test -f 'src/commonsounds.cpp'; then $(CYGPATH_W) 'src/commonsounds.cpp'; else $(CYGPATH_W) '$(srcdir)/src/commonsounds.cpp'; fi`
configurableframe.o: src/configurableframe.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT configurableframe.o -MD -MP -MF $(DEPDIR)/configurableframe.Tpo -c -o configurableframe.o `test -f 'src/configurableframe.cpp' || echo '$(srcdir)/'`src/configurableframe.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/configurableframe.Tpo $(DEPDIR)/configurableframe.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/configurableframe.cpp' object='configurableframe.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 configurableframe.o `test -f 'src/configurableframe.cpp' || echo '$(srcdir)/'`src/configurableframe.cpp
configurableframe.obj: src/configurableframe.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT configurableframe.obj -MD -MP -MF $(DEPDIR)/configurableframe.Tpo -c -o configurableframe.obj `if test -f 'src/configurableframe.cpp'; then $(CYGPATH_W) 'src/configurableframe.cpp'; else $(CYGPATH_W) '$(srcdir)/src/configurableframe.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/configurableframe.Tpo $(DEPDIR)/configurableframe.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/configurableframe.cpp' object='configurableframe.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 configurableframe.obj `if test -f 'src/configurableframe.cpp'; then $(CYGPATH_W) 'src/configurableframe.cpp'; else $(CYGPATH_W) '$(srcdir)/src/configurableframe.cpp'; fi`
configuredframes.o: src/configuredframes.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT configuredframes.o -MD -MP -MF $(DEPDIR)/configuredframes.Tpo -c -o configuredframes.o `test -f 'src/configuredframes.cpp' || echo '$(srcdir)/'`src/configuredframes.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/configuredframes.Tpo $(DEPDIR)/configuredframes.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/configuredframes.cpp' object='configuredframes.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 configuredframes.o `test -f 'src/configuredframes.cpp' || echo '$(srcdir)/'`src/configuredframes.cpp
configuredframes.obj: src/configuredframes.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT configuredframes.obj -MD -MP -MF $(DEPDIR)/configuredframes.Tpo -c -o configuredframes.obj `if test -f 'src/configuredframes.cpp'; then $(CYGPATH_W) 'src/configuredframes.cpp'; else $(CYGPATH_W) '$(srcdir)/src/configuredframes.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/configuredframes.Tpo $(DEPDIR)/configuredframes.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/configuredframes.cpp' object='configuredframes.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 configuredframes.obj `if test -f 'src/configuredframes.cpp'; then $(CYGPATH_W) 'src/configuredframes.cpp'; else $(CYGPATH_W) '$(srcdir)/src/configuredframes.cpp'; fi`
configuration.o: src/configuration.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT configuration.o -MD -MP -MF $(DEPDIR)/configuration.Tpo -c -o configuration.o `test -f 'src/configuration.cpp' || echo '$(srcdir)/'`src/configuration.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/configuration.Tpo $(DEPDIR)/configuration.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/configuration.cpp' object='configuration.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 configuration.o `test -f 'src/configuration.cpp' || echo '$(srcdir)/'`src/configuration.cpp
configuration.obj: src/configuration.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT configuration.obj -MD -MP -MF $(DEPDIR)/configuration.Tpo -c -o configuration.obj `if test -f 'src/configuration.cpp'; then $(CYGPATH_W) 'src/configuration.cpp'; else $(CYGPATH_W) '$(srcdir)/src/configuration.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/configuration.Tpo $(DEPDIR)/configuration.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/configuration.cpp' object='configuration.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 configuration.obj `if test -f 'src/configuration.cpp'; then $(CYGPATH_W) 'src/configuration.cpp'; else $(CYGPATH_W) '$(srcdir)/src/configuration.cpp'; fi`
controlelement.o: src/controlelement.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT controlelement.o -MD -MP -MF $(DEPDIR)/controlelement.Tpo -c -o controlelement.o `test -f 'src/controlelement.cpp' || echo '$(srcdir)/'`src/controlelement.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/controlelement.Tpo $(DEPDIR)/controlelement.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/controlelement.cpp' object='controlelement.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 controlelement.o `test -f 'src/controlelement.cpp' || echo '$(srcdir)/'`src/controlelement.cpp
controlelement.obj: src/controlelement.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT controlelement.obj -MD -MP -MF $(DEPDIR)/controlelement.Tpo -c -o controlelement.obj `if test -f 'src/controlelement.cpp'; then $(CYGPATH_W) 'src/controlelement.cpp'; else $(CYGPATH_W) '$(srcdir)/src/controlelement.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/controlelement.Tpo $(DEPDIR)/controlelement.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/controlelement.cpp' object='controlelement.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 controlelement.obj `if test -f 'src/controlelement.cpp'; then $(CYGPATH_W) 'src/controlelement.cpp'; else $(CYGPATH_W) '$(srcdir)/src/controlelement.cpp'; fi`
spell.o: src/spell.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT spell.o -MD -MP -MF $(DEPDIR)/spell.Tpo -c -o spell.o `test -f 'src/spell.cpp' || echo '$(srcdir)/'`src/spell.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/spell.Tpo $(DEPDIR)/spell.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/spell.cpp' object='spell.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 spell.o `test -f 'src/spell.cpp' || echo '$(srcdir)/'`src/spell.cpp
spell.obj: src/spell.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT spell.obj -MD -MP -MF $(DEPDIR)/spell.Tpo -c -o spell.obj `if test -f 'src/spell.cpp'; then $(CYGPATH_W) 'src/spell.cpp'; else $(CYGPATH_W) '$(srcdir)/src/spell.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/spell.Tpo $(DEPDIR)/spell.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/spell.cpp' object='spell.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 spell.obj `if test -f 'src/spell.cpp'; then $(CYGPATH_W) 'src/spell.cpp'; else $(CYGPATH_W) '$(srcdir)/src/spell.cpp'; fi`
texture.o: src/texture.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT texture.o -MD -MP -MF $(DEPDIR)/texture.Tpo -c -o texture.o `test -f 'src/texture.cpp' || echo '$(srcdir)/'`src/texture.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/texture.Tpo $(DEPDIR)/texture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/texture.cpp' object='texture.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 texture.o `test -f 'src/texture.cpp' || echo '$(srcdir)/'`src/texture.cpp
texture.obj: src/texture.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT texture.obj -MD -MP -MF $(DEPDIR)/texture.Tpo -c -o texture.obj `if test -f 'src/texture.cpp'; then $(CYGPATH_W) 'src/texture.cpp'; else $(CYGPATH_W) '$(srcdir)/src/texture.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/texture.Tpo $(DEPDIR)/texture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/texture.cpp' object='texture.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 texture.obj `if test -f 'src/texture.cpp'; then $(CYGPATH_W) 'src/texture.cpp'; else $(CYGPATH_W) '$(srcdir)/src/texture.cpp'; fi`
zone.o: src/zone.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT zone.o -MD -MP -MF $(DEPDIR)/zone.Tpo -c -o zone.o `test -f 'src/zone.cpp' || echo '$(srcdir)/'`src/zone.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/zone.Tpo $(DEPDIR)/zone.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/zone.cpp' object='zone.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 zone.o `test -f 'src/zone.cpp' || echo '$(srcdir)/'`src/zone.cpp
zone.obj: src/zone.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT zone.obj -MD -MP -MF $(DEPDIR)/zone.Tpo -c -o zone.obj `if test -f 'src/zone.cpp'; then $(CYGPATH_W) 'src/zone.cpp'; else $(CYGPATH_W) '$(srcdir)/src/zone.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/zone.Tpo $(DEPDIR)/zone.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/zone.cpp' object='zone.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 zone.obj `if test -f 'src/zone.cpp'; then $(CYGPATH_W) 'src/zone.cpp'; else $(CYGPATH_W) '$(srcdir)/src/zone.cpp'; fi`
dawnstate.o: src/dawnstate.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dawnstate.o -MD -MP -MF $(DEPDIR)/dawnstate.Tpo -c -o dawnstate.o `test -f 'src/dawnstate.cpp' || echo '$(srcdir)/'`src/dawnstate.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/dawnstate.Tpo $(DEPDIR)/dawnstate.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/dawnstate.cpp' object='dawnstate.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 dawnstate.o `test -f 'src/dawnstate.cpp' || echo '$(srcdir)/'`src/dawnstate.cpp
dawnstate.obj: src/dawnstate.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT dawnstate.obj -MD -MP -MF $(DEPDIR)/dawnstate.Tpo -c -o dawnstate.obj `if test -f 'src/dawnstate.cpp'; then $(CYGPATH_W) 'src/dawnstate.cpp'; else $(CYGPATH_W) '$(srcdir)/src/dawnstate.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/dawnstate.Tpo $(DEPDIR)/dawnstate.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/dawnstate.cpp' object='dawnstate.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 dawnstate.obj `if test -f 'src/dawnstate.cpp'; then $(CYGPATH_W) 'src/dawnstate.cpp'; else $(CYGPATH_W) '$(srcdir)/src/dawnstate.cpp'; fi`
debug.o: src/debug.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT debug.o -MD -MP -MF $(DEPDIR)/debug.Tpo -c -o debug.o `test -f 'src/debug.cpp' || echo '$(srcdir)/'`src/debug.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/debug.Tpo $(DEPDIR)/debug.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/debug.cpp' object='debug.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 debug.o `test -f 'src/debug.cpp' || echo '$(srcdir)/'`src/debug.cpp
debug.obj: src/debug.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT debug.obj -MD -MP -MF $(DEPDIR)/debug.Tpo -c -o debug.obj `if test -f 'src/debug.cpp'; then $(CYGPATH_W) 'src/debug.cpp'; else $(CYGPATH_W) '$(srcdir)/src/debug.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/debug.Tpo $(DEPDIR)/debug.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/debug.cpp' object='debug.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 debug.obj `if test -f 'src/debug.cpp'; then $(CYGPATH_W) 'src/debug.cpp'; else $(CYGPATH_W) '$(srcdir)/src/debug.cpp'; fi`
elements.o: src/elements.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT elements.o -MD -MP -MF $(DEPDIR)/elements.Tpo -c -o elements.o `test -f 'src/elements.cpp' || echo '$(srcdir)/'`src/elements.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/elements.Tpo $(DEPDIR)/elements.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/elements.cpp' object='elements.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 elements.o `test -f 'src/elements.cpp' || echo '$(srcdir)/'`src/elements.cpp
elements.obj: src/elements.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT elements.obj -MD -MP -MF $(DEPDIR)/elements.Tpo -c -o elements.obj `if test -f 'src/elements.cpp'; then $(CYGPATH_W) 'src/elements.cpp'; else $(CYGPATH_W) '$(srcdir)/src/elements.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/elements.Tpo $(DEPDIR)/elements.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/elements.cpp' object='elements.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 elements.obj `if test -f 'src/elements.cpp'; then $(CYGPATH_W) 'src/elements.cpp'; else $(CYGPATH_W) '$(srcdir)/src/elements.cpp'; fi`
frames.o: src/frames.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT frames.o -MD -MP -MF $(DEPDIR)/frames.Tpo -c -o frames.o `test -f 'src/frames.cpp' || echo '$(srcdir)/'`src/frames.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/frames.Tpo $(DEPDIR)/frames.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/frames.cpp' object='frames.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 frames.o `test -f 'src/frames.cpp' || echo '$(srcdir)/'`src/frames.cpp
frames.obj: src/frames.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT frames.obj -MD -MP -MF $(DEPDIR)/frames.Tpo -c -o frames.obj `if test -f 'src/frames.cpp'; then $(CYGPATH_W) 'src/frames.cpp'; else $(CYGPATH_W) '$(srcdir)/src/frames.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/frames.Tpo $(DEPDIR)/frames.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/frames.cpp' object='frames.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 frames.obj `if test -f 'src/frames.cpp'; then $(CYGPATH_W) 'src/frames.cpp'; else $(CYGPATH_W) '$(srcdir)/src/frames.cpp'; fi`
framesbase.o: src/framesbase.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT framesbase.o -MD -MP -MF $(DEPDIR)/framesbase.Tpo -c -o framesbase.o `test -f 'src/framesbase.cpp' || echo '$(srcdir)/'`src/framesbase.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/framesbase.Tpo $(DEPDIR)/framesbase.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/framesbase.cpp' object='framesbase.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 framesbase.o `test -f 'src/framesbase.cpp' || echo '$(srcdir)/'`src/framesbase.cpp
framesbase.obj: src/framesbase.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT framesbase.obj -MD -MP -MF $(DEPDIR)/framesbase.Tpo -c -o framesbase.obj `if test -f 'src/framesbase.cpp'; then $(CYGPATH_W) 'src/framesbase.cpp'; else $(CYGPATH_W) '$(srcdir)/src/framesbase.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/framesbase.Tpo $(DEPDIR)/framesbase.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/framesbase.cpp' object='framesbase.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 framesbase.obj `if test -f 'src/framesbase.cpp'; then $(CYGPATH_W) 'src/framesbase.cpp'; else $(CYGPATH_W) '$(srcdir)/src/framesbase.cpp'; fi`
fontcache.o: src/fontcache.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fontcache.o -MD -MP -MF $(DEPDIR)/fontcache.Tpo -c -o fontcache.o `test -f 'src/fontcache.cpp' || echo '$(srcdir)/'`src/fontcache.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/fontcache.Tpo $(DEPDIR)/fontcache.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/fontcache.cpp' object='fontcache.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 fontcache.o `test -f 'src/fontcache.cpp' || echo '$(srcdir)/'`src/fontcache.cpp
fontcache.obj: src/fontcache.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT fontcache.obj -MD -MP -MF $(DEPDIR)/fontcache.Tpo -c -o fontcache.obj `if test -f 'src/fontcache.cpp'; then $(CYGPATH_W) 'src/fontcache.cpp'; else $(CYGPATH_W) '$(srcdir)/src/fontcache.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/fontcache.Tpo $(DEPDIR)/fontcache.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/fontcache.cpp' object='fontcache.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 fontcache.obj `if test -f 'src/fontcache.cpp'; then $(CYGPATH_W) 'src/fontcache.cpp'; else $(CYGPATH_W) '$(srcdir)/src/fontcache.cpp'; fi`
gameloophandler.o: src/gameloophandler.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gameloophandler.o -MD -MP -MF $(DEPDIR)/gameloophandler.Tpo -c -o gameloophandler.o `test -f 'src/gameloophandler.cpp' || echo '$(srcdir)/'`src/gameloophandler.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/gameloophandler.Tpo $(DEPDIR)/gameloophandler.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/gameloophandler.cpp' object='gameloophandler.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 gameloophandler.o `test -f 'src/gameloophandler.cpp' || echo '$(srcdir)/'`src/gameloophandler.cpp
gameloophandler.obj: src/gameloophandler.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gameloophandler.obj -MD -MP -MF $(DEPDIR)/gameloophandler.Tpo -c -o gameloophandler.obj `if test -f 'src/gameloophandler.cpp'; then $(CYGPATH_W) 'src/gameloophandler.cpp'; else $(CYGPATH_W) '$(srcdir)/src/gameloophandler.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/gameloophandler.Tpo $(DEPDIR)/gameloophandler.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/gameloophandler.cpp' object='gameloophandler.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 gameloophandler.obj `if test -f 'src/gameloophandler.cpp'; then $(CYGPATH_W) 'src/gameloophandler.cpp'; else $(CYGPATH_W) '$(srcdir)/src/gameloophandler.cpp'; fi`
GLFT_Font.o: src/GLFT_Font.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT GLFT_Font.o -MD -MP -MF $(DEPDIR)/GLFT_Font.Tpo -c -o GLFT_Font.o `test -f 'src/GLFT_Font.cpp' || echo '$(srcdir)/'`src/GLFT_Font.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/GLFT_Font.Tpo $(DEPDIR)/GLFT_Font.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/GLFT_Font.cpp' object='GLFT_Font.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 GLFT_Font.o `test -f 'src/GLFT_Font.cpp' || echo '$(srcdir)/'`src/GLFT_Font.cpp
GLFT_Font.obj: src/GLFT_Font.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT GLFT_Font.obj -MD -MP -MF $(DEPDIR)/GLFT_Font.Tpo -c -o GLFT_Font.obj `if test -f 'src/GLFT_Font.cpp'; then $(CYGPATH_W) 'src/GLFT_Font.cpp'; else $(CYGPATH_W) '$(srcdir)/src/GLFT_Font.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/GLFT_Font.Tpo $(DEPDIR)/GLFT_Font.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/GLFT_Font.cpp' object='GLFT_Font.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 GLFT_Font.obj `if test -f 'src/GLFT_Font.cpp'; then $(CYGPATH_W) 'src/GLFT_Font.cpp'; else $(CYGPATH_W) '$(srcdir)/src/GLFT_Font.cpp'; fi`
globals.o: src/globals.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT globals.o -MD -MP -MF $(DEPDIR)/globals.Tpo -c -o globals.o `test -f 'src/globals.cpp' || echo '$(srcdir)/'`src/globals.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/globals.Tpo $(DEPDIR)/globals.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/globals.cpp' object='globals.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 globals.o `test -f 'src/globals.cpp' || echo '$(srcdir)/'`src/globals.cpp
globals.obj: src/globals.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT globals.obj -MD -MP -MF $(DEPDIR)/globals.Tpo -c -o globals.obj `if test -f 'src/globals.cpp'; then $(CYGPATH_W) 'src/globals.cpp'; else $(CYGPATH_W) '$(srcdir)/src/globals.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/globals.Tpo $(DEPDIR)/globals.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/globals.cpp' object='globals.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 globals.obj `if test -f 'src/globals.cpp'; then $(CYGPATH_W) 'src/globals.cpp'; else $(CYGPATH_W) '$(srcdir)/src/globals.cpp'; fi`
groundloot.o: src/groundloot.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT groundloot.o -MD -MP -MF $(DEPDIR)/groundloot.Tpo -c -o groundloot.o `test -f 'src/groundloot.cpp' || echo '$(srcdir)/'`src/groundloot.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/groundloot.Tpo $(DEPDIR)/groundloot.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/groundloot.cpp' object='groundloot.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 groundloot.o `test -f 'src/groundloot.cpp' || echo '$(srcdir)/'`src/groundloot.cpp
groundloot.obj: src/groundloot.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT groundloot.obj -MD -MP -MF $(DEPDIR)/groundloot.Tpo -c -o groundloot.obj `if test -f 'src/groundloot.cpp'; then $(CYGPATH_W) 'src/groundloot.cpp'; else $(CYGPATH_W) '$(srcdir)/src/groundloot.cpp'; fi`