File: Makefile.in

package info (click to toggle)
madlib 1.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,196 kB
  • sloc: cpp: 39,851; sh: 10,041; makefile: 473
file content (878 lines) | stat: -rw-r--r-- 62,694 bytes parent folder | download | duplicates (6)
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
# Makefile.in generated by automake 1.10.2 from Makefile.am.
# @configure_input@

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008  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@

pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkgincludedir = $(includedir)/@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 = :
build_triplet = @build@
host_triplet = @host@
subdir = Adapt
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
	$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/MAdConfig.h
CONFIG_CLEAN_FILES =
LTLIBRARIES = $(noinst_LTLIBRARIES)
libMAdAdapt_la_LIBADD =
am_libMAdAdapt_la_OBJECTS = mathex.lo AdaptInterface.lo \
	MeshParametersManager.lo Constraint.lo \
	ModelConstraintManager.lo DESCOp.lo EdgeCollapseOp.lo \
	EdgeSplitOp.lo EdgeSwapConfig.lo EdgeSwapOp.lo \
	FaceCollapseOp.lo FaceSwapOp.lo MAdOperatorBase.lo \
	OperatorTools.lo RegionRemoveOp.lo SliverFaceHandler.lo \
	SliverRegionHandler.lo VertexMoveOp.lo MAdOutput.lo \
	MeanRatioEvaluator.lo OrientedMeanRatioEvaluator.lo \
	MeshQualityManager.lo GeoMatcher.lo LaplaceSmoothingOp.lo \
	MAdElasticityOp.lo MobileObject.lo AnalyticalSField.lo \
	AnisoMeshSize.lo BackgroundSF.lo DiscreteSF.lo IsoMeshSize.lo \
	LocalSizeField.lo MeshSizeBase.lo NullSField.lo \
	PWLinearSField.lo SizeFieldBase.lo SizeFieldManager.lo \
	CallbackManager.lo History.lo MAdStatistics.lo \
	MAdTimeManager.lo NodalDataManager.lo DistanceFunction.lo
libMAdAdapt_la_OBJECTS = $(am_libMAdAdapt_la_OBJECTS)
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
	--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
	--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
	$(LDFLAGS) -o $@
SOURCES = $(libMAdAdapt_la_SOURCES)
DIST_SOURCES = $(libMAdAdapt_la_SOURCES)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
VPATH = @srcdir@
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@ ${MAdLib_DEFS}
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DOX = @DOX@
DOXYGEN = @DOXYGEN@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
HOSTNAME = @HOSTNAME@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LINKER = @LINKER@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MAdLib_BENCHDIRS = @MAdLib_BENCHDIRS@
MAdLib_DEFS = @MAdLib_DEFS@
MAdLib_DIRS = @MAdLib_DIRS@
MAdLib_INCLUDES = @MAdLib_INCLUDES@
MAdLib_LIBADD = @MAdLib_LIBADD@
MAdLib_LIBS = @MAdLib_LIBS@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@
RM = @RM@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
UNAME = @UNAME@
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@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
allincludedir = @allincludedir@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
lt_ECHO = @lt_ECHO@
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@
noinst_LTLIBRARIES = libMAdAdapt.la
AM_CPPFLAGS = ${MAdLib_INCLUDES}\
  -I$(srcdir)/../Common\
  -I$(srcdir)/../Geo\
  -I$(srcdir)/../Mesh\
  -I${srcdir}/../Contrib/mathex\
  -I$(srcdir)/constraint\
  -I$(srcdir)/operator\
  -I$(srcdir)/output\
  -I$(srcdir)/quality\
  -I$(srcdir)/repositioning\
  -I$(srcdir)/sizeField\
  -I$(srcdir)/utils

libMAdAdapt_la_SOURCES = \
  ../Contrib/mathex/mathex.cpp\
  AdaptInterface.cc\
  MeshParametersManager.cc\
  constraint/Constraint.cc\
  constraint/ModelConstraintManager.cc\
  operator/DESCOp.cc\
  operator/EdgeCollapseOp.cc\
  operator/EdgeSplitOp.cc\
  operator/EdgeSwapConfig.cc\
  operator/EdgeSwapOp.cc\
  operator/FaceCollapseOp.cc\
  operator/FaceSwapOp.cc\
  operator/MAdOperatorBase.cc\
  operator/OperatorTools.cc\
  operator/RegionRemoveOp.cc\
  operator/SliverFaceHandler.cc\
  operator/SliverRegionHandler.cc\
  operator/VertexMoveOp.cc\
  output/MAdOutput.cc\
  quality/MeanRatioEvaluator.cc\
  quality/OrientedMeanRatioEvaluator.cc\
  quality/MeshQualityManager.cc\
  repositioning/GeoMatcher.cc\
  repositioning/LaplaceSmoothingOp.cc\
  repositioning/MAdElasticityOp.cc\
  repositioning/MobileObject.cc\
  sizeField/AnalyticalSField.cc\
  sizeField/AnisoMeshSize.cc\
  sizeField/BackgroundSF.cc\
  sizeField/DiscreteSF.cc\
  sizeField/IsoMeshSize.cc\
  sizeField/LocalSizeField.cc\
  sizeField/MeshSizeBase.cc\
  sizeField/NullSField.cc\
  sizeField/PWLinearSField.cc\
  sizeField/SizeFieldBase.cc\
  sizeField/SizeFieldManager.cc\
  utils/CallbackManager.cc\
  utils/History.cc\
  utils/MAdStatistics.cc\
  utils/MAdTimeManager.cc\
  utils/NodalDataManager.cc\
  utils/DistanceFunction.cc

all: all-am

.SUFFIXES:
.SUFFIXES: .cc .cpp .lo .o .obj
$(srcdir)/Makefile.in:  $(srcdir)/Makefile.am  $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
	        && { if test -f $@; then exit 0; else break; fi; }; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  Adapt/Makefile'; \
	cd $(top_srcdir) && \
	  $(AUTOMAKE) --foreign  Adapt/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

clean-noinstLTLIBRARIES:
	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
	@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
	  test "$$dir" != "$$p" || dir=.; \
	  echo "rm -f \"$${dir}/so_locations\""; \
	  rm -f "$${dir}/so_locations"; \
	done
libMAdAdapt.la: $(libMAdAdapt_la_OBJECTS) $(libMAdAdapt_la_DEPENDENCIES) 
	$(CXXLINK)  $(libMAdAdapt_la_OBJECTS) $(libMAdAdapt_la_LIBADD) $(LIBS)

mostlyclean-compile:
	-rm -f *.$(OBJEXT)

distclean-compile:
	-rm -f *.tab.c

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AdaptInterface.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AnalyticalSField.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AnisoMeshSize.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BackgroundSF.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/CallbackManager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Constraint.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DESCOp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DiscreteSF.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/DistanceFunction.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/EdgeCollapseOp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/EdgeSplitOp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/EdgeSwapConfig.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/EdgeSwapOp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FaceCollapseOp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FaceSwapOp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GeoMatcher.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/History.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/IsoMeshSize.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LaplaceSmoothingOp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LocalSizeField.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MAdElasticityOp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MAdOperatorBase.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MAdOutput.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MAdStatistics.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MAdTimeManager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MeanRatioEvaluator.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MeshParametersManager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MeshQualityManager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MeshSizeBase.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/MobileObject.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ModelConstraintManager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NodalDataManager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/NullSField.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/OperatorTools.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/OrientedMeanRatioEvaluator.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PWLinearSField.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/RegionRemoveOp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SizeFieldBase.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SizeFieldManager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SliverFaceHandler.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/SliverRegionHandler.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/VertexMoveOp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mathex.Plo@am__quote@

.cc.o:
@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCXX_TRUE@	mv -f $(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 $@ $<

.cc.obj:
@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCXX_TRUE@	mv -f $(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) '$<'`

.cc.lo:
@am__fastdepCXX_TRUE@	$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LTCXXCOMPILE) -c -o $@ $<

mathex.lo: ../Contrib/mathex/mathex.cpp
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT mathex.lo -MD -MP -MF $(DEPDIR)/mathex.Tpo -c -o mathex.lo `test -f '../Contrib/mathex/mathex.cpp' || echo '$(srcdir)/'`../Contrib/mathex/mathex.cpp
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/mathex.Tpo $(DEPDIR)/mathex.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='../Contrib/mathex/mathex.cpp' object='mathex.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o mathex.lo `test -f '../Contrib/mathex/mathex.cpp' || echo '$(srcdir)/'`../Contrib/mathex/mathex.cpp

Constraint.lo: constraint/Constraint.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT Constraint.lo -MD -MP -MF $(DEPDIR)/Constraint.Tpo -c -o Constraint.lo `test -f 'constraint/Constraint.cc' || echo '$(srcdir)/'`constraint/Constraint.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/Constraint.Tpo $(DEPDIR)/Constraint.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='constraint/Constraint.cc' object='Constraint.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o Constraint.lo `test -f 'constraint/Constraint.cc' || echo '$(srcdir)/'`constraint/Constraint.cc

ModelConstraintManager.lo: constraint/ModelConstraintManager.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT ModelConstraintManager.lo -MD -MP -MF $(DEPDIR)/ModelConstraintManager.Tpo -c -o ModelConstraintManager.lo `test -f 'constraint/ModelConstraintManager.cc' || echo '$(srcdir)/'`constraint/ModelConstraintManager.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/ModelConstraintManager.Tpo $(DEPDIR)/ModelConstraintManager.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='constraint/ModelConstraintManager.cc' object='ModelConstraintManager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o ModelConstraintManager.lo `test -f 'constraint/ModelConstraintManager.cc' || echo '$(srcdir)/'`constraint/ModelConstraintManager.cc

DESCOp.lo: operator/DESCOp.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DESCOp.lo -MD -MP -MF $(DEPDIR)/DESCOp.Tpo -c -o DESCOp.lo `test -f 'operator/DESCOp.cc' || echo '$(srcdir)/'`operator/DESCOp.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/DESCOp.Tpo $(DEPDIR)/DESCOp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/DESCOp.cc' object='DESCOp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DESCOp.lo `test -f 'operator/DESCOp.cc' || echo '$(srcdir)/'`operator/DESCOp.cc

EdgeCollapseOp.lo: operator/EdgeCollapseOp.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT EdgeCollapseOp.lo -MD -MP -MF $(DEPDIR)/EdgeCollapseOp.Tpo -c -o EdgeCollapseOp.lo `test -f 'operator/EdgeCollapseOp.cc' || echo '$(srcdir)/'`operator/EdgeCollapseOp.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/EdgeCollapseOp.Tpo $(DEPDIR)/EdgeCollapseOp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/EdgeCollapseOp.cc' object='EdgeCollapseOp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o EdgeCollapseOp.lo `test -f 'operator/EdgeCollapseOp.cc' || echo '$(srcdir)/'`operator/EdgeCollapseOp.cc

EdgeSplitOp.lo: operator/EdgeSplitOp.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT EdgeSplitOp.lo -MD -MP -MF $(DEPDIR)/EdgeSplitOp.Tpo -c -o EdgeSplitOp.lo `test -f 'operator/EdgeSplitOp.cc' || echo '$(srcdir)/'`operator/EdgeSplitOp.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/EdgeSplitOp.Tpo $(DEPDIR)/EdgeSplitOp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/EdgeSplitOp.cc' object='EdgeSplitOp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o EdgeSplitOp.lo `test -f 'operator/EdgeSplitOp.cc' || echo '$(srcdir)/'`operator/EdgeSplitOp.cc

EdgeSwapConfig.lo: operator/EdgeSwapConfig.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT EdgeSwapConfig.lo -MD -MP -MF $(DEPDIR)/EdgeSwapConfig.Tpo -c -o EdgeSwapConfig.lo `test -f 'operator/EdgeSwapConfig.cc' || echo '$(srcdir)/'`operator/EdgeSwapConfig.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/EdgeSwapConfig.Tpo $(DEPDIR)/EdgeSwapConfig.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/EdgeSwapConfig.cc' object='EdgeSwapConfig.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o EdgeSwapConfig.lo `test -f 'operator/EdgeSwapConfig.cc' || echo '$(srcdir)/'`operator/EdgeSwapConfig.cc

EdgeSwapOp.lo: operator/EdgeSwapOp.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT EdgeSwapOp.lo -MD -MP -MF $(DEPDIR)/EdgeSwapOp.Tpo -c -o EdgeSwapOp.lo `test -f 'operator/EdgeSwapOp.cc' || echo '$(srcdir)/'`operator/EdgeSwapOp.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/EdgeSwapOp.Tpo $(DEPDIR)/EdgeSwapOp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/EdgeSwapOp.cc' object='EdgeSwapOp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o EdgeSwapOp.lo `test -f 'operator/EdgeSwapOp.cc' || echo '$(srcdir)/'`operator/EdgeSwapOp.cc

FaceCollapseOp.lo: operator/FaceCollapseOp.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FaceCollapseOp.lo -MD -MP -MF $(DEPDIR)/FaceCollapseOp.Tpo -c -o FaceCollapseOp.lo `test -f 'operator/FaceCollapseOp.cc' || echo '$(srcdir)/'`operator/FaceCollapseOp.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/FaceCollapseOp.Tpo $(DEPDIR)/FaceCollapseOp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/FaceCollapseOp.cc' object='FaceCollapseOp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FaceCollapseOp.lo `test -f 'operator/FaceCollapseOp.cc' || echo '$(srcdir)/'`operator/FaceCollapseOp.cc

FaceSwapOp.lo: operator/FaceSwapOp.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT FaceSwapOp.lo -MD -MP -MF $(DEPDIR)/FaceSwapOp.Tpo -c -o FaceSwapOp.lo `test -f 'operator/FaceSwapOp.cc' || echo '$(srcdir)/'`operator/FaceSwapOp.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/FaceSwapOp.Tpo $(DEPDIR)/FaceSwapOp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/FaceSwapOp.cc' object='FaceSwapOp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o FaceSwapOp.lo `test -f 'operator/FaceSwapOp.cc' || echo '$(srcdir)/'`operator/FaceSwapOp.cc

MAdOperatorBase.lo: operator/MAdOperatorBase.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MAdOperatorBase.lo -MD -MP -MF $(DEPDIR)/MAdOperatorBase.Tpo -c -o MAdOperatorBase.lo `test -f 'operator/MAdOperatorBase.cc' || echo '$(srcdir)/'`operator/MAdOperatorBase.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/MAdOperatorBase.Tpo $(DEPDIR)/MAdOperatorBase.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/MAdOperatorBase.cc' object='MAdOperatorBase.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MAdOperatorBase.lo `test -f 'operator/MAdOperatorBase.cc' || echo '$(srcdir)/'`operator/MAdOperatorBase.cc

OperatorTools.lo: operator/OperatorTools.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT OperatorTools.lo -MD -MP -MF $(DEPDIR)/OperatorTools.Tpo -c -o OperatorTools.lo `test -f 'operator/OperatorTools.cc' || echo '$(srcdir)/'`operator/OperatorTools.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/OperatorTools.Tpo $(DEPDIR)/OperatorTools.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/OperatorTools.cc' object='OperatorTools.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o OperatorTools.lo `test -f 'operator/OperatorTools.cc' || echo '$(srcdir)/'`operator/OperatorTools.cc

RegionRemoveOp.lo: operator/RegionRemoveOp.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT RegionRemoveOp.lo -MD -MP -MF $(DEPDIR)/RegionRemoveOp.Tpo -c -o RegionRemoveOp.lo `test -f 'operator/RegionRemoveOp.cc' || echo '$(srcdir)/'`operator/RegionRemoveOp.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/RegionRemoveOp.Tpo $(DEPDIR)/RegionRemoveOp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/RegionRemoveOp.cc' object='RegionRemoveOp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o RegionRemoveOp.lo `test -f 'operator/RegionRemoveOp.cc' || echo '$(srcdir)/'`operator/RegionRemoveOp.cc

SliverFaceHandler.lo: operator/SliverFaceHandler.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SliverFaceHandler.lo -MD -MP -MF $(DEPDIR)/SliverFaceHandler.Tpo -c -o SliverFaceHandler.lo `test -f 'operator/SliverFaceHandler.cc' || echo '$(srcdir)/'`operator/SliverFaceHandler.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/SliverFaceHandler.Tpo $(DEPDIR)/SliverFaceHandler.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/SliverFaceHandler.cc' object='SliverFaceHandler.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SliverFaceHandler.lo `test -f 'operator/SliverFaceHandler.cc' || echo '$(srcdir)/'`operator/SliverFaceHandler.cc

SliverRegionHandler.lo: operator/SliverRegionHandler.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SliverRegionHandler.lo -MD -MP -MF $(DEPDIR)/SliverRegionHandler.Tpo -c -o SliverRegionHandler.lo `test -f 'operator/SliverRegionHandler.cc' || echo '$(srcdir)/'`operator/SliverRegionHandler.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/SliverRegionHandler.Tpo $(DEPDIR)/SliverRegionHandler.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/SliverRegionHandler.cc' object='SliverRegionHandler.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SliverRegionHandler.lo `test -f 'operator/SliverRegionHandler.cc' || echo '$(srcdir)/'`operator/SliverRegionHandler.cc

VertexMoveOp.lo: operator/VertexMoveOp.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT VertexMoveOp.lo -MD -MP -MF $(DEPDIR)/VertexMoveOp.Tpo -c -o VertexMoveOp.lo `test -f 'operator/VertexMoveOp.cc' || echo '$(srcdir)/'`operator/VertexMoveOp.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/VertexMoveOp.Tpo $(DEPDIR)/VertexMoveOp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='operator/VertexMoveOp.cc' object='VertexMoveOp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o VertexMoveOp.lo `test -f 'operator/VertexMoveOp.cc' || echo '$(srcdir)/'`operator/VertexMoveOp.cc

MAdOutput.lo: output/MAdOutput.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MAdOutput.lo -MD -MP -MF $(DEPDIR)/MAdOutput.Tpo -c -o MAdOutput.lo `test -f 'output/MAdOutput.cc' || echo '$(srcdir)/'`output/MAdOutput.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/MAdOutput.Tpo $(DEPDIR)/MAdOutput.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='output/MAdOutput.cc' object='MAdOutput.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MAdOutput.lo `test -f 'output/MAdOutput.cc' || echo '$(srcdir)/'`output/MAdOutput.cc

MeanRatioEvaluator.lo: quality/MeanRatioEvaluator.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MeanRatioEvaluator.lo -MD -MP -MF $(DEPDIR)/MeanRatioEvaluator.Tpo -c -o MeanRatioEvaluator.lo `test -f 'quality/MeanRatioEvaluator.cc' || echo '$(srcdir)/'`quality/MeanRatioEvaluator.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/MeanRatioEvaluator.Tpo $(DEPDIR)/MeanRatioEvaluator.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='quality/MeanRatioEvaluator.cc' object='MeanRatioEvaluator.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MeanRatioEvaluator.lo `test -f 'quality/MeanRatioEvaluator.cc' || echo '$(srcdir)/'`quality/MeanRatioEvaluator.cc

OrientedMeanRatioEvaluator.lo: quality/OrientedMeanRatioEvaluator.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT OrientedMeanRatioEvaluator.lo -MD -MP -MF $(DEPDIR)/OrientedMeanRatioEvaluator.Tpo -c -o OrientedMeanRatioEvaluator.lo `test -f 'quality/OrientedMeanRatioEvaluator.cc' || echo '$(srcdir)/'`quality/OrientedMeanRatioEvaluator.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/OrientedMeanRatioEvaluator.Tpo $(DEPDIR)/OrientedMeanRatioEvaluator.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='quality/OrientedMeanRatioEvaluator.cc' object='OrientedMeanRatioEvaluator.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o OrientedMeanRatioEvaluator.lo `test -f 'quality/OrientedMeanRatioEvaluator.cc' || echo '$(srcdir)/'`quality/OrientedMeanRatioEvaluator.cc

MeshQualityManager.lo: quality/MeshQualityManager.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MeshQualityManager.lo -MD -MP -MF $(DEPDIR)/MeshQualityManager.Tpo -c -o MeshQualityManager.lo `test -f 'quality/MeshQualityManager.cc' || echo '$(srcdir)/'`quality/MeshQualityManager.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/MeshQualityManager.Tpo $(DEPDIR)/MeshQualityManager.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='quality/MeshQualityManager.cc' object='MeshQualityManager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MeshQualityManager.lo `test -f 'quality/MeshQualityManager.cc' || echo '$(srcdir)/'`quality/MeshQualityManager.cc

GeoMatcher.lo: repositioning/GeoMatcher.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT GeoMatcher.lo -MD -MP -MF $(DEPDIR)/GeoMatcher.Tpo -c -o GeoMatcher.lo `test -f 'repositioning/GeoMatcher.cc' || echo '$(srcdir)/'`repositioning/GeoMatcher.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/GeoMatcher.Tpo $(DEPDIR)/GeoMatcher.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='repositioning/GeoMatcher.cc' object='GeoMatcher.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o GeoMatcher.lo `test -f 'repositioning/GeoMatcher.cc' || echo '$(srcdir)/'`repositioning/GeoMatcher.cc

LaplaceSmoothingOp.lo: repositioning/LaplaceSmoothingOp.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT LaplaceSmoothingOp.lo -MD -MP -MF $(DEPDIR)/LaplaceSmoothingOp.Tpo -c -o LaplaceSmoothingOp.lo `test -f 'repositioning/LaplaceSmoothingOp.cc' || echo '$(srcdir)/'`repositioning/LaplaceSmoothingOp.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/LaplaceSmoothingOp.Tpo $(DEPDIR)/LaplaceSmoothingOp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='repositioning/LaplaceSmoothingOp.cc' object='LaplaceSmoothingOp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o LaplaceSmoothingOp.lo `test -f 'repositioning/LaplaceSmoothingOp.cc' || echo '$(srcdir)/'`repositioning/LaplaceSmoothingOp.cc

MAdElasticityOp.lo: repositioning/MAdElasticityOp.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MAdElasticityOp.lo -MD -MP -MF $(DEPDIR)/MAdElasticityOp.Tpo -c -o MAdElasticityOp.lo `test -f 'repositioning/MAdElasticityOp.cc' || echo '$(srcdir)/'`repositioning/MAdElasticityOp.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/MAdElasticityOp.Tpo $(DEPDIR)/MAdElasticityOp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='repositioning/MAdElasticityOp.cc' object='MAdElasticityOp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MAdElasticityOp.lo `test -f 'repositioning/MAdElasticityOp.cc' || echo '$(srcdir)/'`repositioning/MAdElasticityOp.cc

MobileObject.lo: repositioning/MobileObject.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MobileObject.lo -MD -MP -MF $(DEPDIR)/MobileObject.Tpo -c -o MobileObject.lo `test -f 'repositioning/MobileObject.cc' || echo '$(srcdir)/'`repositioning/MobileObject.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/MobileObject.Tpo $(DEPDIR)/MobileObject.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='repositioning/MobileObject.cc' object='MobileObject.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MobileObject.lo `test -f 'repositioning/MobileObject.cc' || echo '$(srcdir)/'`repositioning/MobileObject.cc

AnalyticalSField.lo: sizeField/AnalyticalSField.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT AnalyticalSField.lo -MD -MP -MF $(DEPDIR)/AnalyticalSField.Tpo -c -o AnalyticalSField.lo `test -f 'sizeField/AnalyticalSField.cc' || echo '$(srcdir)/'`sizeField/AnalyticalSField.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/AnalyticalSField.Tpo $(DEPDIR)/AnalyticalSField.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/AnalyticalSField.cc' object='AnalyticalSField.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o AnalyticalSField.lo `test -f 'sizeField/AnalyticalSField.cc' || echo '$(srcdir)/'`sizeField/AnalyticalSField.cc

AnisoMeshSize.lo: sizeField/AnisoMeshSize.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT AnisoMeshSize.lo -MD -MP -MF $(DEPDIR)/AnisoMeshSize.Tpo -c -o AnisoMeshSize.lo `test -f 'sizeField/AnisoMeshSize.cc' || echo '$(srcdir)/'`sizeField/AnisoMeshSize.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/AnisoMeshSize.Tpo $(DEPDIR)/AnisoMeshSize.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/AnisoMeshSize.cc' object='AnisoMeshSize.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o AnisoMeshSize.lo `test -f 'sizeField/AnisoMeshSize.cc' || echo '$(srcdir)/'`sizeField/AnisoMeshSize.cc

BackgroundSF.lo: sizeField/BackgroundSF.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT BackgroundSF.lo -MD -MP -MF $(DEPDIR)/BackgroundSF.Tpo -c -o BackgroundSF.lo `test -f 'sizeField/BackgroundSF.cc' || echo '$(srcdir)/'`sizeField/BackgroundSF.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/BackgroundSF.Tpo $(DEPDIR)/BackgroundSF.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/BackgroundSF.cc' object='BackgroundSF.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o BackgroundSF.lo `test -f 'sizeField/BackgroundSF.cc' || echo '$(srcdir)/'`sizeField/BackgroundSF.cc

DiscreteSF.lo: sizeField/DiscreteSF.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DiscreteSF.lo -MD -MP -MF $(DEPDIR)/DiscreteSF.Tpo -c -o DiscreteSF.lo `test -f 'sizeField/DiscreteSF.cc' || echo '$(srcdir)/'`sizeField/DiscreteSF.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/DiscreteSF.Tpo $(DEPDIR)/DiscreteSF.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/DiscreteSF.cc' object='DiscreteSF.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DiscreteSF.lo `test -f 'sizeField/DiscreteSF.cc' || echo '$(srcdir)/'`sizeField/DiscreteSF.cc

IsoMeshSize.lo: sizeField/IsoMeshSize.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT IsoMeshSize.lo -MD -MP -MF $(DEPDIR)/IsoMeshSize.Tpo -c -o IsoMeshSize.lo `test -f 'sizeField/IsoMeshSize.cc' || echo '$(srcdir)/'`sizeField/IsoMeshSize.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/IsoMeshSize.Tpo $(DEPDIR)/IsoMeshSize.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/IsoMeshSize.cc' object='IsoMeshSize.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o IsoMeshSize.lo `test -f 'sizeField/IsoMeshSize.cc' || echo '$(srcdir)/'`sizeField/IsoMeshSize.cc

LocalSizeField.lo: sizeField/LocalSizeField.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT LocalSizeField.lo -MD -MP -MF $(DEPDIR)/LocalSizeField.Tpo -c -o LocalSizeField.lo `test -f 'sizeField/LocalSizeField.cc' || echo '$(srcdir)/'`sizeField/LocalSizeField.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/LocalSizeField.Tpo $(DEPDIR)/LocalSizeField.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/LocalSizeField.cc' object='LocalSizeField.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o LocalSizeField.lo `test -f 'sizeField/LocalSizeField.cc' || echo '$(srcdir)/'`sizeField/LocalSizeField.cc

MeshSizeBase.lo: sizeField/MeshSizeBase.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MeshSizeBase.lo -MD -MP -MF $(DEPDIR)/MeshSizeBase.Tpo -c -o MeshSizeBase.lo `test -f 'sizeField/MeshSizeBase.cc' || echo '$(srcdir)/'`sizeField/MeshSizeBase.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/MeshSizeBase.Tpo $(DEPDIR)/MeshSizeBase.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/MeshSizeBase.cc' object='MeshSizeBase.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MeshSizeBase.lo `test -f 'sizeField/MeshSizeBase.cc' || echo '$(srcdir)/'`sizeField/MeshSizeBase.cc

NullSField.lo: sizeField/NullSField.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT NullSField.lo -MD -MP -MF $(DEPDIR)/NullSField.Tpo -c -o NullSField.lo `test -f 'sizeField/NullSField.cc' || echo '$(srcdir)/'`sizeField/NullSField.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/NullSField.Tpo $(DEPDIR)/NullSField.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/NullSField.cc' object='NullSField.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o NullSField.lo `test -f 'sizeField/NullSField.cc' || echo '$(srcdir)/'`sizeField/NullSField.cc

PWLinearSField.lo: sizeField/PWLinearSField.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT PWLinearSField.lo -MD -MP -MF $(DEPDIR)/PWLinearSField.Tpo -c -o PWLinearSField.lo `test -f 'sizeField/PWLinearSField.cc' || echo '$(srcdir)/'`sizeField/PWLinearSField.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/PWLinearSField.Tpo $(DEPDIR)/PWLinearSField.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/PWLinearSField.cc' object='PWLinearSField.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o PWLinearSField.lo `test -f 'sizeField/PWLinearSField.cc' || echo '$(srcdir)/'`sizeField/PWLinearSField.cc

SizeFieldBase.lo: sizeField/SizeFieldBase.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SizeFieldBase.lo -MD -MP -MF $(DEPDIR)/SizeFieldBase.Tpo -c -o SizeFieldBase.lo `test -f 'sizeField/SizeFieldBase.cc' || echo '$(srcdir)/'`sizeField/SizeFieldBase.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/SizeFieldBase.Tpo $(DEPDIR)/SizeFieldBase.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/SizeFieldBase.cc' object='SizeFieldBase.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SizeFieldBase.lo `test -f 'sizeField/SizeFieldBase.cc' || echo '$(srcdir)/'`sizeField/SizeFieldBase.cc

SizeFieldManager.lo: sizeField/SizeFieldManager.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT SizeFieldManager.lo -MD -MP -MF $(DEPDIR)/SizeFieldManager.Tpo -c -o SizeFieldManager.lo `test -f 'sizeField/SizeFieldManager.cc' || echo '$(srcdir)/'`sizeField/SizeFieldManager.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/SizeFieldManager.Tpo $(DEPDIR)/SizeFieldManager.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='sizeField/SizeFieldManager.cc' object='SizeFieldManager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o SizeFieldManager.lo `test -f 'sizeField/SizeFieldManager.cc' || echo '$(srcdir)/'`sizeField/SizeFieldManager.cc

CallbackManager.lo: utils/CallbackManager.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT CallbackManager.lo -MD -MP -MF $(DEPDIR)/CallbackManager.Tpo -c -o CallbackManager.lo `test -f 'utils/CallbackManager.cc' || echo '$(srcdir)/'`utils/CallbackManager.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/CallbackManager.Tpo $(DEPDIR)/CallbackManager.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='utils/CallbackManager.cc' object='CallbackManager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o CallbackManager.lo `test -f 'utils/CallbackManager.cc' || echo '$(srcdir)/'`utils/CallbackManager.cc

History.lo: utils/History.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT History.lo -MD -MP -MF $(DEPDIR)/History.Tpo -c -o History.lo `test -f 'utils/History.cc' || echo '$(srcdir)/'`utils/History.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/History.Tpo $(DEPDIR)/History.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='utils/History.cc' object='History.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o History.lo `test -f 'utils/History.cc' || echo '$(srcdir)/'`utils/History.cc

MAdStatistics.lo: utils/MAdStatistics.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MAdStatistics.lo -MD -MP -MF $(DEPDIR)/MAdStatistics.Tpo -c -o MAdStatistics.lo `test -f 'utils/MAdStatistics.cc' || echo '$(srcdir)/'`utils/MAdStatistics.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/MAdStatistics.Tpo $(DEPDIR)/MAdStatistics.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='utils/MAdStatistics.cc' object='MAdStatistics.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MAdStatistics.lo `test -f 'utils/MAdStatistics.cc' || echo '$(srcdir)/'`utils/MAdStatistics.cc

MAdTimeManager.lo: utils/MAdTimeManager.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT MAdTimeManager.lo -MD -MP -MF $(DEPDIR)/MAdTimeManager.Tpo -c -o MAdTimeManager.lo `test -f 'utils/MAdTimeManager.cc' || echo '$(srcdir)/'`utils/MAdTimeManager.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/MAdTimeManager.Tpo $(DEPDIR)/MAdTimeManager.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='utils/MAdTimeManager.cc' object='MAdTimeManager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o MAdTimeManager.lo `test -f 'utils/MAdTimeManager.cc' || echo '$(srcdir)/'`utils/MAdTimeManager.cc

NodalDataManager.lo: utils/NodalDataManager.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT NodalDataManager.lo -MD -MP -MF $(DEPDIR)/NodalDataManager.Tpo -c -o NodalDataManager.lo `test -f 'utils/NodalDataManager.cc' || echo '$(srcdir)/'`utils/NodalDataManager.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/NodalDataManager.Tpo $(DEPDIR)/NodalDataManager.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='utils/NodalDataManager.cc' object='NodalDataManager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o NodalDataManager.lo `test -f 'utils/NodalDataManager.cc' || echo '$(srcdir)/'`utils/NodalDataManager.cc

DistanceFunction.lo: utils/DistanceFunction.cc
@am__fastdepCXX_TRUE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT DistanceFunction.lo -MD -MP -MF $(DEPDIR)/DistanceFunction.Tpo -c -o DistanceFunction.lo `test -f 'utils/DistanceFunction.cc' || echo '$(srcdir)/'`utils/DistanceFunction.cc
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/DistanceFunction.Tpo $(DEPDIR)/DistanceFunction.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='utils/DistanceFunction.cc' object='DistanceFunction.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o DistanceFunction.lo `test -f 'utils/DistanceFunction.cc' || echo '$(srcdir)/'`utils/DistanceFunction.cc

.cpp.o:
@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCXX_TRUE@	mv -f $(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@	mv -f $(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) '$<'`

.cpp.lo:
@am__fastdepCXX_TRUE@	$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCXX_TRUE@	mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(LTCXXCOMPILE) -c -o $@ $<

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs

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:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	tags=; \
	here=`pwd`; \
	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
	  test -n "$$unique" || unique=$$empty_fix; \
	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	    $$tags $$unique; \
	fi
ctags: CTAGS
CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	tags=; \
	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)$$tags$$unique" \
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
	     $$tags $$unique

GTAGS:
	here=`$(am__cd) $(top_builddir) && pwd` \
	  && cd $(top_srcdir) \
	  && gtags -i $(GTAGS_ARGS) $$here

distclean-tags:
	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags

distdir: $(DISTFILES)
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	list='$(DISTFILES)'; \
	  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 $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
	    fi; \
	    cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
	  else \
	    test -f $(distdir)/$$file \
	    || cp -p $$d/$$file $(distdir)/$$file \
	    || exit 1; \
	  fi; \
	done
check-am: all-am
check: check-am
all-am: Makefile $(LTLIBRARIES)
installdirs:
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am

install-am: all-am
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am

installcheck: installcheck-am
install-strip:
	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	  `test -z '$(STRIP)' || \
	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:

clean-generic:

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)

maintainer-clean-generic:
	@echo "This command is intended for maintainers to use"
	@echo "it deletes files that may require special tools to rebuild."
clean: clean-am

clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
	mostlyclean-am

distclean: distclean-am
	-rm -rf ./$(DEPDIR)
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-tags

dvi: dvi-am

dvi-am:

html: html-am

info: info-am

info-am:

install-data-am:

install-dvi: install-dvi-am

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

installcheck-am:

maintainer-clean: maintainer-clean-am
	-rm -rf ./$(DEPDIR)
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-am

mostlyclean-am: mostlyclean-compile mostlyclean-generic \
	mostlyclean-libtool

pdf: pdf-am

pdf-am:

ps: ps-am

ps-am:

uninstall-am:

.MAKE: install-am install-strip

.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
	clean-libtool clean-noinstLTLIBRARIES ctags distclean \
	distclean-compile distclean-generic distclean-libtool \
	distclean-tags distdir dvi dvi-am html html-am info info-am \
	install install-am install-data install-data-am 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 \
	maintainer-clean maintainer-clean-generic mostlyclean \
	mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
	pdf pdf-am ps ps-am tags uninstall uninstall-am


purge:
# 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: