1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
|
# common therion objects
CMNOBJECTS = thdate.o extern/shapelib/shpopen.o extern/shapelib/dbfopen.o extern/shapelib/safileio.o \
thexception.o thbuffer.o thmbuffer.o thlog.o thlogfile.o thtmpdir.o thlocale.o \
thparse.o thcmdline.o thconfig.o thinput.o thchenc.o thdatabase.o \
thdataobject.o thdatareader.o thsurvey.o thendsurvey.o thdata.o \
thperson.o thtf.o thtfangle.o thtflength.o thtfpwf.o \
thdataleg.o thobjectname.o thinfnan.o thlayout.o thlookup.o thcomment.o \
thinit.o thdb1d.o thsvxctrl.o thdatastation.o thobjectid.o \
thobjectsrc.o thgrade.o thlibrary.o thgeomag.o thbezier.o \
thexport.o thexporter.o thselector.o extern/img/img.o \
thexpmodel.o thdb2d00.o thscrapis.o thcs.o thcsdata.o thexptable.o \
thdb2d.o thscrap.o thendscrap.o th2ddataobject.o thdb2dprj.o \
thdb2dpt.o thdb2dlp.o thdb2dab.o thdb2dji.o thdb2dmi.o thdb2dcp.o \
thdb2dxm.o thdb2dxs.o thscraplo.o thscraplp.o thscrapen.o \
thpoint.o thline.o tharea.o thlegenddata.o thmpost.o thsymbolsets.o \
thjoin.o thmap.o thexpmap.o thlayoutln.o thlayoutclr.o thexpsys.o thexpuni.o \
thpdf.o thpdfdbg.o thpdfdata.o thtexfonts.o \
thsymbolset.o thlang.o thmapstat.o thexpdb.o thpic.o thsketch.o thproj.o \
extern/lxMath.o extern/lxFile.o extern/icase.o thdb3d.o thsurface.o thimport.o thsvg.o thepsparse.o \
thtrans.o thwarpp.o thwarppt.o thwarppme.o thwarp.o thexpshp.o thattr.o thtex.o \
extern/poly2tri/common/shapes.o extern/poly2tri/sweep/advancing_front.o extern/poly2tri/sweep/sweep.o extern/poly2tri/sweep/cdt.o extern/poly2tri/sweep/sweep_context.o \
extern/quickhull/QuickHull.o therion.o
TESTOBJECTS = utest-main.o utest-proj.o utest-str.o
EXT =
# Prefix to install to (override like so: make PREFIX=/usr)
PREFIX ?= /usr/local
# Directory to install config files in (override like so: make SYSCONFDIR=/etc)
SYSCONFDIR ?= $(PREFIX)/etc
# PLATFORM CONFIG
# PLATFORM LINUX
##CXX = c++
##CC = gcc
##POBJECTS =
##LOCHEXE = loch/loch
##CXXPFLAGS = -DTHLINUX
##CCPFLAGS = -DTHLINUX
##LDPFLAGS = -s
##export THPLATFORM = LINUX
##export OUTDIR = ../therion.bin
##THXTHMKCMD = $(OUTDIR)/therion
# PLATFORM DEBIAN
CXX ?= c++
CC ?= gcc
POBJECTS =
LOCHEXE = loch/loch
CXXPFLAGS = -DTHLINUX
CCPFLAGS = -DTHLINUX
LDPFLAGS = -s
export THPLATFORM = LINUX
export OUTDIR = .
THXTHMKCMD = $(OUTDIR)/therion
# PLATFORM WIN32
##EXT = .exe
##CXX ?= c++
##CC ?= gcc
##POBJECTS = therion.res
##LOCHEXE = loch/loch
##CXXPFLAGS = -DTHWIN32
##CCPFLAGS = -DTHWIN32
##LDPFLAGS = -static-libgcc -s
##export THPLATFORM = WIN32
##export OUTDIR ?= ../therion.bin
##THXTHMKCMD = $(OUTDIR)/therion
# PLATFORM WIN32CROSS
##CROSS ?= i686-w64-mingw32.static-
##EXT = .exe
##CXX = $(CROSS)c++
##export CC = $(CROSS)gcc
##export AR = $(CROSS)ar
##POBJECTS = therion.res
##LOCHEXE = loch/loch
##CXXPFLAGS = -DTHWIN32
##CCPFLAGS = -DTHWIN32
##LDPFLAGS = -static-libgcc -static -s
##export THPLATFORM = WIN32
##THXTHMKCMD = therion
##export OUTDIR ?= ../therion.bin
# PLATFORM MACOSX
##CXX = c++
##CC = cc
##LOCHEXE = loch/loch
##POBJECTS =
##CXXPFLAGS = -DTHMACOSX
##CCPFLAGS = -DTHMACOSX
##LDPFLAGS =
##export THPLATFORM = MACOSX
##export OUTDIR = .
##THXTHMKCMD = ./therion
# PLATFORM ENDCONFIG
# BUILD CONFIG
# BUILD OZONE
##CCBFLAGS = -O3
##CXXBFLAGS = -O3
##LDBFLAGS = $(LDPFLAGS)
# BUILD OXYGEN
CCBFLAGS = -O2
CXXBFLAGS = -O2
LDBFLAGS = $(LDPFLAGS)
# BUILD RELEASE
##CCBFLAGS =
##CXXBFLAGS =
##LDBFLAGS = $(LDPFLAGS)
# BUILD DEBUG
##CCBFLAGS = -ggdb -fsanitize=address
##CXXBFLAGS = -ggdb -DTHDEBUG -fsanitize=address
##LDBFLAGS =
# BUILD ENDCONFIG
# proj4 settings
PROJ_UNSUPPORTED = 5.0.0 5.0.1 6.0.0 6.1.0 6.1.1 6.2.0
PROJ_VER = $(shell $(CROSS)pkg-config proj --modversion)
ifneq ($(filter $(PROJ_VER),$(PROJ_UNSUPPORTED)),)
$(error unsupported Proj version: $(PROJ_VER))
endif
PROJ_LIBS ?= $(shell $(CROSS)pkg-config proj --libs)
PROJ_MVER ?= $(shell echo $(PROJ_VER) | sed 's/\..*//')
CXXJFLAGS ?= -DPROJ_VER=$(PROJ_MVER) -I$(shell $(CROSS)pkg-config proj --variable=includedir)
# compiler settings
CXXFLAGS = -DIMG_API_VERSION=1 -DP2T_STATIC_EXPORTS -Wall $(CXXPFLAGS) $(CXXBFLAGS) $(CXXJFLAGS) -Iextern -Iextern/shapelib -Iextern/quickhull -Iextern/img -I$(shell $(CROSS)pkg-config fmt --variable=includedir) -std=c++17
CCFLAGS = -DIMG_API_VERSION=1 -Wall $(CCPFLAGS) $(CCBFLAGS)
OBJECTS = $(addprefix $(OUTDIR)/,$(POBJECTS)) $(addprefix $(OUTDIR)/,$(CMNOBJECTS))
TESTOBJECTS_P = $(addprefix $(OUTDIR)/,$(TESTOBJECTS))
# linker settings
LIBS = $(PROJ_LIBS) $(shell $(CROSS)pkg-config fmt --libs)
LDFLAGS = $(LDBFLAGS)
$(OUTDIR)/%.o : %.cxx
$(CXX) -c $(CXXFLAGS) -o $@ $<
$(OUTDIR)/%.o : %.cpp
$(CXX) -c $(CXXFLAGS) -o $@ $<
$(OUTDIR)/%.o : %.cc
$(CXX) -c $(CXXFLAGS) -o $@ $<
$(OUTDIR)/%.o : %.c
$(CC) -c $(CCFLAGS) -o $@ $<
all: version outdirs $(OUTDIR)/therion tests doc xtherion/xtherion $(LOCHEXE)
outdirs:
mkdir -p $(OUTDIR)/extern/poly2tri/sweep/
mkdir -p $(OUTDIR)/extern/poly2tri/common/
mkdir -p $(OUTDIR)/extern/quickhull
mkdir -p $(OUTDIR)/extern/shapelib
mkdir -p $(OUTDIR)/extern/img
mkdir -p $(OUTDIR)/loch
mkdir -p $(OUTDIR)/loch/help
mkdir -p $(OUTDIR)/loch/help/en
mkdir -p $(OUTDIR)/loch/help/sk
mkdir -p $(OUTDIR)/xtherion
mkdir -p $(OUTDIR)/thbook
version: outdirs
python3 set_version.py .
ifeq ($(THPLATFORM),WIN32)
echo "[PROJ]" > $(OUTDIR)/innosetup.ini && echo "version=$(PROJ_MVER)" >> $(OUTDIR)/innosetup.ini
endif
thversion.h: version
$(OUTDIR)/therion: $(OBJECTS)
$(CXX) $(CXXFLAGS) -o $(OUTDIR)/therion$(EXT) therion-main.cxx $(OBJECTS) $(LDFLAGS) $(LIBS)
$(OUTDIR)/utest$(EXT): $(OBJECTS) $(TESTOBJECTS_P)
$(CXX) $(CXXFLAGS) -o $(OUTDIR)/utest$(EXT) $(OBJECTS) $(TESTOBJECTS_P) $(LDFLAGS) $(LIBS)
tests: $(OUTDIR)/utest$(EXT)
ifneq ($(THPLATFORM),WIN32)
$(OUTDIR)/utest$(EXT)
endif
$(OUTDIR)/therion.res: therion.rc
$(CROSS)windres -i therion.rc -J rc -o $(OUTDIR)/therion.res -O coff
init:
./therion --print-init-file > therion.ini
install: all
tclsh makeinstall.tcl $(THPLATFORM) $(DESTDIR)$(PREFIX) $(DESTDIR)$(SYSCONFDIR)
release:
python3 make_release.py
depend:
perl makedepend.pl > Makefile.dep
perl maketest.pl Makefile.dep
perl makefile.pl mv Makefile.dep Makefile
$(CXX) -MM $(CXXFLAGS) *.cxx >> Makefile
perl makedepend2.pl
library: thversion.h
$(THXTHMKCMD) --print-library-src thlibrarydata.thcfg > thlibrarydata.log
perl makelibrary.pl thlibrarydata.log > thlibrarydata.tmp
perl maketest.pl thlibrarydata.tmp
perl makefile.pl mv thlibrarydata.tmp thlibrarydata.cxx
ifeq ($(THXTHMKCMD),$(OUTDIR)/therion)
THERION_TCL_DEPS += $(OUTDIR)/therion
endif
xtherion/therion.tcl: $(THERION_TCL_DEPS)
$(THXTHMKCMD) --print-xtherion-src > xtherion/therion.tcl
xtherion/xtherion: version xtherion/therion.tcl xtherion/*.tcl
$(MAKE) -C ./xtherion
loch/loch: version loch/*.h loch/*.cxx
$(MAKE) -C ./loch
doc: $(OUTDIR)/thbook/thbook.pdf
thbook: version $(OUTDIR)/thbook/thbook.pdf
samples: $(OUTDIR)/samples.doc/index.tex
samples-quick:
$(MAKE) -C samples quick
touch thbook/version.tex
$(MAKE) -C thbook
samples-html:
$(MAKE) -C samples html
$(OUTDIR)/samples.doc/index.tex:
$(MAKE) -C samples
touch thbook/version.tex
$(MAKE) -C thbook
$(OUTDIR)/thbook/thbook.pdf: thbook/*.tex thversion.h
$(MAKE) -C thbook
clean:
perl makefile.pl rm -q ./xtherion/therion.tcl
perl makefile.pl rmdir -q samples.doc
$(MAKE) -C ./samples clean
$(MAKE) -C ./loch clean
$(MAKE) cleanrest
cleanrest:
$(MAKE) -C ./xtherion clean
$(MAKE) -C ./loch clean
perl makefile.pl rm -q thmpost.cxx thtex.h thlangdata.h thchencdata.cxx thcsdata.h thmpost.h thcsdata.cxx thtex.cxx thsymbolsetlist.h thsymbolsets.cxx thsymbolsets.h thlangdatafields.h thchencdata.h SYMBOLS.txt
perl makefile.pl rm -q therion ./xtherion/xtherion ./xtherion/xtherion.tcl therion.exe *~ *.log *.o thchencdata/*~ .xtherion.dat ./xtherion/ver.tcl thversion.h thbook/version.tex
perl makefile.pl rm -q xtherion/*~ .xth_thconfig_xth xtherion/screendump thlang/*~
perl makefile.pl rm -q extern/*.o extern/*~ extern/quickhull/*.o extern/shapelib/*.o extern/poly2tri/common/*.o extern/poly2tri/sweep/*.o samples/*~ samples/*.log
perl makefile.pl rm -q symbols.html therion.res innosetup.ini
perl makefile.pl rm -q tri/*.o tri/*~
perl makefile.pl rm -q utest
perl makefile.pl rm -q tex/*~
perl makefile.pl rm -q us.stackdump loch/us.stackdump samples/us.stackdump xtherion/us.stackdump
perl makefile.pl rm -q mpost/*~ examples/*~ examples/therion.log
perl makefile.pl rm -q core symbols.xhtml cave.kml
perl makefile.pl rm -q data.3d data.svx data.pos data.pts data.err data.plt
perl makefile.pl rm -q cave.3d cave.lox cave.thm cave.pdf cave.sql cave.xhtml therion.tcl cave_a.pdf cave_m.pdf cave.vrml cave.wrl cave.3dmf cave.svg cave.tlx
perl makefile.pl rm -q ./thbook/*~ ./thbook/thbook.log ./thbook/thbook.pdf ./lib/*~ ./mpost/*~ ./tex/*~
perl makefile.pl rmdir -q doc thTMPDIR samples.doc symbols cave.shp tests/.doc
perl makefile.pl rmdir -q doc symbols cave.shp tests/.doc
perl makefile.pl rmdir -q thTMPDIR samples/*/thTMPDIR samples/*/*/thTMPDIR
thmpost.h: mpost/*.mp
$(MAKE) -C ./mpost
thmpost.cxx: thmpost.h
thsymbolsets.h: thmpost.h thsymbolsetlist.h
thsymbolsets.cxx: thsymbolsets.h
thsymbolsetlist.h: thsymbolsetlist.pl mpost/thTrans.mp
perl thsymbolsetlist.pl
thtex.h: tex/*.tex
$(MAKE) -C ./tex
thtex.cxx: thtex.h
thchencdata.cxx: thchencdata.h
thchencdata.h: thchencdata/*.TXT
$(MAKE) -C ./thchencdata
thcsdata.h: thcsdata.tcl
tclsh thcsdata.tcl $(shell $(CROSS)pkg-config proj --variable=prefix)/share/proj
update:
$(MAKE) -C ./thlang update
unixify: clean
tclsh makeunixify.tcl
thlangdata.h: thlang/texts.txt
$(MAKE) -C ./thlang
thlangdatafields.h: thlangdata.h
$(MAKE) -C ./thlang
config-debug:
perl makeconfig.pl BUILD DEBUG
cd loch; perl makeconfig.pl BUILD DEBUG
config-release:
perl makeconfig.pl BUILD RELEASE
cd loch; perl makeconfig.pl BUILD RELEASE
config-oxygen:
perl makeconfig.pl BUILD OXYGEN
cd loch; perl makeconfig.pl BUILD OXYGEN
config-ozone:
perl makeconfig.pl BUILD OZONE
cd loch; perl makeconfig.pl BUILD OZONE
config-debian:
perl makeconfig.pl PLATFORM DEBIAN
cd loch; perl makeconfig.pl PLATFORM DEBIAN
config-linux:
perl makeconfig.pl PLATFORM LINUX
cd loch; perl makeconfig.pl PLATFORM LINUX
config-win32:
perl makeconfig.pl PLATFORM WIN32
cd loch; perl makeconfig.pl PLATFORM WIN32
config-win32cross:
perl makeconfig.pl PLATFORM WIN32CROSS
cd loch; perl makeconfig.pl PLATFORM WIN32CROSS
config-macosx:
perl makeconfig.pl PLATFORM MACOSX
cd loch; perl makeconfig.pl PLATFORM MACOSX
# external sources
$(OUTDIR)/extern/lxMath.o: loch/lxMath.h loch/lxMath.cxx
$(CXX) -c $(CXXFLAGS) -o $(OUTDIR)/extern/lxMath.o loch/lxMath.cxx
$(OUTDIR)/extern/lxFile.o: loch/lxFile.h loch/lxFile.cxx
$(CXX) -c $(CXXFLAGS) -o $(OUTDIR)/extern/lxFile.o loch/lxFile.cxx
$(OUTDIR)/extern/icase.o: loch/icase.h loch/icase.cxx
$(CXX) -c $(CXXFLAGS) -o $(OUTDIR)/extern/icase.o loch/icase.cxx
extern/img/img.o: extern/img/img.c extern/img/img.h
extern/poly2tri/common/shapes.o: extern/poly2tri/common/shapes.cc extern/poly2tri/common/shapes.h
extern/poly2tri/sweep/advancing_front.o: extern/poly2tri/sweep/advancing_front.cc
extern/poly2tri/sweep/sweep.o: extern/poly2tri/sweep/sweep.cc
extern/poly2tri/sweep/cdt.o: extern/poly2tri/sweep/cdt.cc
extern/poly2tri/sweep/sweep_context.o: extern/poly2tri/sweep/sweep_context.cc
# DEPENDENCIES
$(OUTDIR)/th2ddataobject.o: th2ddataobject.cxx th2ddataobject.h thdataobject.h \
thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h \
thdataleg.h thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thexception.h thsymbolset.h thsymbolsetlist.h
$(OUTDIR)/tharea.o: tharea.cxx tharea.h th2ddataobject.h thdataobject.h \
thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h \
thdataleg.h thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thexception.h thexpmap.h thexport.h thlayout.h \
thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h thlang.h \
thlangdata.h thline.h
$(OUTDIR)/thattr.o: thattr.cxx thattr.h thmbuffer.h thchenc.h thchencdata.h \
thparse.h thbuffer.h extern/shapelib/shapefil.h therion.h
$(OUTDIR)/thbezier.o: thbezier.cxx thbezier.h
$(OUTDIR)/thbuffer.o: thbuffer.cxx thbuffer.h
$(OUTDIR)/thchenc.o: thchenc.cxx thchenc.h thchencdata.h thparse.h thbuffer.h \
thmbuffer.h thchencdata.cxx therion.h thexception.h
$(OUTDIR)/thchencdata.o: thchencdata.cxx
$(OUTDIR)/thcmdline.o: thcmdline.cxx thcmdline.h therion.h thlogfile.h thbuffer.h \
thconfig.h thmbuffer.h thinput.h thparse.h thexporter.h thexport.h \
thobjectsrc.h thlayout.h thdataobject.h thdatabase.h thdb1d.h \
thobjectid.h thinfnan.h thdataleg.h thobjectname.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h thlocale.h \
loch/icase.h thselector.h thtmpdir.h
$(OUTDIR)/thcomment.o: thcomment.cxx thcomment.h thdataobject.h thdatabase.h \
thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thdata.h thtfangle.h thtf.h thtflength.h thtfpwf.h \
thexception.h
$(OUTDIR)/thconfig.o: thconfig.cxx thconfig.h thbuffer.h thmbuffer.h thinput.h \
thparse.h thexporter.h thexport.h thobjectsrc.h thlayout.h \
thdataobject.h thdatabase.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thobjectname.h therion.h thdb3d.h loch/lxMath.h thattr.h thchenc.h \
thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h thperson.h \
thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h \
thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h \
thscraplo.h thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h \
thsymbolsetlist.h thlocale.h loch/icase.h thselector.h thlang.h \
thlangdata.h thexception.h thdatareader.h thcsdata.h thproj.h \
thlogfile.h thinit.h thgeomag.h thgeomagdata.h thcomment.h thdata.h \
thtfangle.h thtf.h thtflength.h thtfpwf.h thsketch.h thpic.h thwarp.h \
thcs.h
$(OUTDIR)/thcs.o: thcs.cxx thcs.h thcsdata.h thparse.h thbuffer.h thmbuffer.h \
thexception.h thproj.h thdatabase.h thdataobject.h thperson.h thdate.h \
thdataleg.h thobjectname.h therion.h thobjectsrc.h thinfnan.h \
thlayoutclr.h thpdfdata.h thepsparse.h thdb1d.h thobjectid.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h
$(OUTDIR)/thcsdata.o: thcsdata.cxx thcsdata.h thparse.h thbuffer.h thmbuffer.h \
thcs.h
$(OUTDIR)/thdata.o: thdata.cxx thdata.h thdataleg.h thparse.h thbuffer.h \
thmbuffer.h thobjectname.h therion.h thobjectsrc.h thinfnan.h \
thdataobject.h thdatabase.h thdb1d.h thobjectid.h thdb3d.h loch/lxMath.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thtfangle.h thtf.h thtflength.h thtfpwf.h thexception.h \
thsurvey.h thlayout.h thsymbolset.h thsymbolsetlist.h thlocale.h \
thgrade.h thcsdata.h thdatareader.h thinput.h loch/icase.h
$(OUTDIR)/thdatabase.o: thdatabase.cxx thdatabase.h thdataobject.h thperson.h \
thparse.h thbuffer.h thmbuffer.h thdate.h thdataleg.h thobjectname.h \
therion.h thobjectsrc.h thinfnan.h thlayoutclr.h thpdfdata.h \
thepsparse.h thdb1d.h thobjectid.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thlegenddata.h \
thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h \
thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thsurvey.h thtfpwf.h thdata.h thtfangle.h thtf.h thtflength.h \
thendsurvey.h thexception.h thcmdline.h thdatastation.h thlookup.h \
thlocale.h thgrade.h thcomment.h thlayout.h thsymbolset.h \
thsymbolsetlist.h thscrap.h thsketch.h thpic.h thwarp.h thtrans.h \
th2ddataobject.h thpoint.h thline.h tharea.h thjoin.h thmap.h thimport.h \
thsurface.h thendscrap.h thconfig.h thinput.h thexporter.h thexport.h \
loch/icase.h thselector.h thproj.h
$(OUTDIR)/thdataleg.o: thdataleg.cxx thdataleg.h thparse.h thbuffer.h thmbuffer.h \
thobjectname.h therion.h thobjectsrc.h thinfnan.h thcs.h thcsdata.h
$(OUTDIR)/thdataobject.o: thdataobject.cxx thdataobject.h thdatabase.h thmbuffer.h \
thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h thparse.h \
thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h \
thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thexception.h thsurvey.h thtfpwf.h thdata.h thtfangle.h thtf.h \
thtflength.h thconfig.h thinput.h thexporter.h thexport.h thlayout.h \
thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h thselector.h \
thcsdata.h thproj.h thcs.h
$(OUTDIR)/thdatareader.o: thdatareader.cxx thdatareader.h thdatabase.h \
thdataobject.h thperson.h thparse.h thbuffer.h thmbuffer.h thdate.h \
thdataleg.h thobjectname.h therion.h thobjectsrc.h thinfnan.h \
thlayoutclr.h thpdfdata.h thepsparse.h thdb1d.h thobjectid.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thinput.h thexception.h
$(OUTDIR)/thdatastation.o: thdatastation.cxx thdatastation.h thdataobject.h \
thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h \
thdataleg.h thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thexception.h
$(OUTDIR)/thdate.o: thdate.cxx thdate.h thparse.h thbuffer.h thmbuffer.h \
thexception.h therion.h
$(OUTDIR)/thdb1d.o: thdb1d.cxx thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thparse.h thbuffer.h thmbuffer.h thobjectname.h therion.h thobjectsrc.h \
thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h thsurvey.h \
thdataobject.h thdatabase.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h \
thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h thtfpwf.h \
thdata.h thtfangle.h thtf.h thtflength.h thsvxctrl.h thexception.h \
thpoint.h th2ddataobject.h thlogfile.h thsurface.h thlocale.h thinit.h \
thinput.h thconfig.h thexporter.h thexport.h thlayout.h thsymbolset.h \
thsymbolsetlist.h loch/icase.h thselector.h thtrans.h thcs.h thcsdata.h \
thgeomag.h thgeomagdata.h extern/quickhull/QuickHull.hpp \
extern/quickhull/Structs/Vector3.hpp extern/quickhull/Structs/Plane.hpp \
extern/quickhull/Structs/Vector3.hpp extern/quickhull/Structs/Pool.hpp \
extern/quickhull/Structs/Mesh.hpp extern/quickhull/Structs/Plane.hpp \
extern/quickhull/Structs/Pool.hpp \
extern/quickhull/Structs/VertexDataSource.hpp \
extern/quickhull/ConvexHull.hpp \
extern/quickhull/Structs/VertexDataSource.hpp \
extern/quickhull/HalfEdgeMesh.hpp extern/quickhull/MathUtils.hpp \
extern/quickhull/Structs/Ray.hpp
$(OUTDIR)/thdb2d.o: thdb2d.cxx thdb2d.h thinfnan.h thdb2dprj.h thparse.h thbuffer.h \
thmbuffer.h thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h \
thdb2dlp.h thdb2dab.h thobjectname.h therion.h thobjectsrc.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h thdb1d.h \
thobjectid.h thdataleg.h thdb3d.h loch/lxMath.h thattr.h thchenc.h \
thchencdata.h thexception.h thdatabase.h thdataobject.h thtfangle.h \
thtf.h tharea.h th2ddataobject.h thmap.h thjoin.h thpoint.h thline.h \
thscrap.h thsketch.h thpic.h thwarp.h thtrans.h thsurvey.h thtfpwf.h \
thdata.h thtflength.h thlogfile.h thlayout.h thsymbolset.h \
thsymbolsetlist.h thlocale.h thexpmap.h thexport.h loch/icase.h thlang.h \
thlangdata.h thconfig.h thinput.h thexporter.h thselector.h thtmpdir.h \
thinit.h thfilehandle.h
$(OUTDIR)/thdb2d00.o: thdb2d00.cxx thdb2d.h thinfnan.h thdb2dprj.h thparse.h \
thbuffer.h thmbuffer.h thmapstat.h thdate.h thperson.h thlegenddata.h \
thdb2dpt.h thdb2dlp.h thdb2dab.h thobjectname.h therion.h thobjectsrc.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thdb1d.h thobjectid.h thdataleg.h thdb3d.h loch/lxMath.h \
thattr.h thchenc.h thchencdata.h thexception.h thdatabase.h \
thdataobject.h thtfangle.h thtf.h tharea.h th2ddataobject.h thmap.h \
thjoin.h thpoint.h thline.h thscrap.h thsketch.h thpic.h thwarp.h \
thtrans.h thsurvey.h thtfpwf.h thdata.h thtflength.h thlogfile.h \
thlayout.h thsymbolset.h thsymbolsetlist.h thlocale.h thconfig.h \
thinput.h thexporter.h thexport.h loch/icase.h thselector.h
$(OUTDIR)/thdb2dab.o: thdb2dab.cxx thdb2dab.h thobjectname.h thmbuffer.h therion.h \
thobjectsrc.h
$(OUTDIR)/thdb2dcp.o: thdb2dcp.cxx thdb2dcp.h thdb2dpt.h
$(OUTDIR)/thdb2dji.o: thdb2dji.cxx thdb2dji.h thobjectname.h thmbuffer.h therion.h \
thdatabase.h thdataobject.h thperson.h thparse.h thbuffer.h thdate.h \
thdataleg.h thobjectsrc.h thinfnan.h thlayoutclr.h thpdfdata.h \
thepsparse.h thdb1d.h thobjectid.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thlegenddata.h \
thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dmi.h thdb2dcp.h thdb2dxs.h \
thdb2dxm.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thexception.h
$(OUTDIR)/thdb2dlp.o: thdb2dlp.cxx thdb2dlp.h thdb2dpt.h thline.h th2ddataobject.h \
thdataobject.h thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h \
thinfnan.h thdataleg.h thparse.h thobjectname.h therion.h thobjectsrc.h \
thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h \
thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thexpmap.h thexport.h thlayout.h thsymbolset.h \
thsymbolsetlist.h thlocale.h loch/icase.h thlang.h thlangdata.h
$(OUTDIR)/thdb2dmi.o: thdb2dmi.cxx thdb2dmi.h thobjectname.h thmbuffer.h therion.h \
thobjectsrc.h thparse.h thbuffer.h thexception.h
$(OUTDIR)/thdb2dprj.o: thdb2dprj.cxx thdb2dprj.h thparse.h thbuffer.h thmbuffer.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thinfnan.h
$(OUTDIR)/thdb2dpt.o: thdb2dpt.cxx thdb2dpt.h thexpmap.h thexport.h thparse.h \
thbuffer.h thmbuffer.h thobjectsrc.h thlayout.h thdataobject.h \
thdatabase.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h thobjectname.h \
therion.h thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h \
thdb2d.h thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h \
thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h \
thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h \
thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h \
thlocale.h loch/icase.h thlang.h thlangdata.h
$(OUTDIR)/thdb2dxm.o: thdb2dxm.cxx thdb2dxm.h thdb2dmi.h thobjectname.h thmbuffer.h \
therion.h thobjectsrc.h thparse.h thbuffer.h thlayoutclr.h thpdfdata.h \
thepsparse.h
$(OUTDIR)/thdb2dxs.o: thdb2dxs.cxx thdb2dxs.h thdb2dmi.h thobjectname.h thmbuffer.h \
therion.h thobjectsrc.h thparse.h thbuffer.h
$(OUTDIR)/thdb3d.o: thdb3d.cxx thdb3d.h loch/lxMath.h
$(OUTDIR)/thendscrap.o: thendscrap.cxx thendscrap.h thdataobject.h thdatabase.h \
thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thexception.h
$(OUTDIR)/thendsurvey.o: thendsurvey.cxx thendsurvey.h thdataobject.h thdatabase.h \
thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thexception.h
$(OUTDIR)/thepsparse.o: thepsparse.cxx thepsparse.h thpdfdbg.h thexception.h \
thpdfdata.h thtexfonts.h therion.h thdouble.h
therion-main.o: therion-main.cxx therion.h thcmdline.h thconfig.h \
thbuffer.h thmbuffer.h thinput.h thparse.h thexporter.h thexport.h \
thobjectsrc.h thlayout.h thdataobject.h thdatabase.h thdb1d.h \
thobjectid.h thinfnan.h thdataleg.h thobjectname.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h thlocale.h \
loch/icase.h thselector.h thdatareader.h thexception.h thlibrary.h \
thinit.h thversion.h thtexfonts.h thbezier.h thlogfile.h thproj.h
$(OUTDIR)/therion.o: therion.cxx therion.h thlogfile.h thbuffer.h thtmpdir.h \
thcmdline.h thconfig.h thmbuffer.h thinput.h thparse.h thexporter.h \
thexport.h thobjectsrc.h thlayout.h thdataobject.h thdatabase.h thdb1d.h \
thobjectid.h thinfnan.h thdataleg.h thobjectname.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h thlocale.h \
loch/icase.h thselector.h thdatareader.h thexception.h thlibrary.h \
thinit.h thgrade.h thdata.h thtfangle.h thtf.h thtflength.h thtfpwf.h \
thpoint.h th2ddataobject.h thline.h tharea.h thversion.h thtexfonts.h \
thlang.h thlangdata.h thbezier.h
$(OUTDIR)/thexception.o: thexception.cxx thexception.h
$(OUTDIR)/thexpdb.o: thexpdb.cxx thexpdb.h thexport.h thparse.h thbuffer.h \
thmbuffer.h thobjectsrc.h thlayout.h thdataobject.h thdatabase.h \
thdb1d.h thobjectid.h thinfnan.h thdataleg.h thobjectname.h therion.h \
thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h \
thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h \
thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h \
thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h \
thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h \
thlocale.h loch/icase.h thexception.h thscrap.h thsketch.h thpic.h \
thwarp.h thtrans.h thmap.h thdata.h thtfangle.h thtf.h thtflength.h \
thtfpwf.h thinit.h thinput.h thsurvey.h
$(OUTDIR)/thexpmap.o: thexpmap.cxx thexpmap.h thexport.h thparse.h thbuffer.h \
thmbuffer.h thobjectsrc.h thlayout.h thdataobject.h thdatabase.h \
thdb1d.h thobjectid.h thinfnan.h thdataleg.h thobjectname.h therion.h \
thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h \
thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h \
thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h \
thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h \
thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h \
thlocale.h loch/icase.h thlang.h thlangdata.h thexporter.h thexception.h \
thtmpdir.h thscrap.h thsketch.h thpic.h thwarp.h thtrans.h thpoint.h \
th2ddataobject.h thline.h tharea.h thmap.h thconfig.h thinput.h \
thselector.h thlookup.h thinit.h thlogfile.h thpdf.h \
thmpost.h thtex.h thcmdline.h thtexfonts.h thsurvey.h thtfpwf.h thdata.h \
thtfangle.h thtf.h thtflength.h thcsdata.h thproj.h thsurface.h thsvg.h \
extern/img/img.h thcs.h
$(OUTDIR)/thexpmodel.o: thexpmodel.cxx thexpmodel.h thexport.h thparse.h thbuffer.h \
thmbuffer.h thobjectsrc.h thlayout.h thdataobject.h thdatabase.h \
thdb1d.h thobjectid.h thinfnan.h thdataleg.h thobjectname.h therion.h \
thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h \
thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h \
thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h \
thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h \
thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h \
thlocale.h loch/icase.h thsurvey.h thtfpwf.h thdata.h thtfangle.h thtf.h \
thtflength.h thexception.h extern/img/img.h thscrap.h thsketch.h thpic.h \
thwarp.h thtrans.h thsurface.h loch/lxFile.h thconfig.h thinput.h \
thexporter.h thselector.h thcsdata.h thproj.h thcs.h thtexfonts.h \
thlang.h thlangdata.h thfilehandle.h
$(OUTDIR)/thexport.o: thexport.cxx thexport.h thparse.h thbuffer.h thmbuffer.h \
thobjectsrc.h thlayout.h thdataobject.h thdatabase.h thdb1d.h \
thobjectid.h thinfnan.h thdataleg.h thobjectname.h therion.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h thlocale.h \
loch/icase.h thexception.h thconfig.h thinput.h thexporter.h \
thselector.h thcs.h thcsdata.h
$(OUTDIR)/thexporter.o: thexporter.cxx thexporter.h thexport.h thparse.h thbuffer.h \
thmbuffer.h thobjectsrc.h thlayout.h thdataobject.h thdatabase.h \
thdb1d.h thobjectid.h thinfnan.h thdataleg.h thobjectname.h therion.h \
thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h \
thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h \
thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h \
thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h \
thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h \
thlocale.h loch/icase.h thexception.h thconfig.h thinput.h thselector.h \
thexpmodel.h thsurvey.h thtfpwf.h thdata.h thtfangle.h thtf.h \
thtflength.h thexpmap.h thlang.h thlangdata.h thexpdb.h thexpsys.h \
thexptable.h
$(OUTDIR)/thexpshp.o: thexpshp.cxx thexpmap.h thexport.h thparse.h thbuffer.h \
thmbuffer.h thobjectsrc.h thlayout.h thdataobject.h thdatabase.h \
thdb1d.h thobjectid.h thinfnan.h thdataleg.h thobjectname.h therion.h \
thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h \
thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h \
thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h \
thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h \
thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h \
thlocale.h loch/icase.h thlang.h thlangdata.h thexporter.h thexception.h \
thmap.h thsketch.h thpic.h thwarp.h thconfig.h thinput.h thselector.h \
thtmpdir.h thinit.h thlogfile.h thcmdline.h thsurvey.h thtfpwf.h \
thdata.h thtfangle.h thtf.h thtflength.h thsurface.h \
extern/shapelib/shapefil.h thexpmodel.h thcsdata.h thcs.h thexpshp.h \
thscrap.h thtrans.h thpoint.h th2ddataobject.h thline.h tharea.h
$(OUTDIR)/thexpsys.o: thexpsys.cxx thexpsys.h thexport.h thparse.h thbuffer.h \
thmbuffer.h thobjectsrc.h thlayout.h thdataobject.h thdatabase.h \
thdb1d.h thobjectid.h thinfnan.h thdataleg.h thobjectname.h therion.h \
thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h \
thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h \
thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h \
thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h \
thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h \
thlocale.h loch/icase.h thexception.h
$(OUTDIR)/thexptable.o: thexptable.cxx thexptable.h thexport.h thparse.h thbuffer.h \
thmbuffer.h thobjectsrc.h thlayout.h thdataobject.h thdatabase.h \
thdb1d.h thobjectid.h thinfnan.h thdataleg.h thobjectname.h therion.h \
thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h \
thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h \
thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h \
thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h \
thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h \
thlocale.h loch/icase.h thexception.h thdata.h thtfangle.h thtf.h \
thtflength.h thtfpwf.h thexporter.h thinit.h thinput.h thsurvey.h \
thscrap.h thsketch.h thpic.h thwarp.h thtrans.h thpoint.h \
th2ddataobject.h thcsdata.h thproj.h thconfig.h thselector.h thcs.h \
thtexfonts.h thlang.h thlangdata.h
$(OUTDIR)/thexpuni.o: thexpuni.cxx thexpmap.h thexport.h thparse.h thbuffer.h \
thmbuffer.h thobjectsrc.h thlayout.h thdataobject.h thdatabase.h \
thdb1d.h thobjectid.h thinfnan.h thdataleg.h thobjectname.h therion.h \
thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h \
thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h \
thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h \
thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h \
thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h \
thlocale.h loch/icase.h thlang.h thlangdata.h thexporter.h thexception.h \
thmap.h thsketch.h thpic.h thwarp.h thconfig.h thinput.h thselector.h \
thtmpdir.h thcsdata.h thinit.h thlogfile.h thcmdline.h thsurvey.h \
thtfpwf.h thdata.h thtfangle.h thtf.h thtflength.h thsurface.h \
extern/shapelib/shapefil.h thexpmodel.h thexpuni.h thscrap.h thtrans.h \
thpoint.h th2ddataobject.h thline.h tharea.h thproj.h thcs.h \
thtexfonts.h
$(OUTDIR)/thgeomag.o: thgeomag.cxx thgeomagdata.h
$(OUTDIR)/thgrade.o: thgrade.cxx thgrade.h thdataobject.h thdatabase.h thmbuffer.h \
thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h thparse.h \
thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h \
thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h thdata.h \
thtfangle.h thtf.h thtflength.h thtfpwf.h thexception.h
$(OUTDIR)/thimport.o: thimport.cxx loch/icase.h thimport.h thdataobject.h \
thcsdata.h \
thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h \
thdataleg.h thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thexception.h thdata.h thtfangle.h thtf.h \
thtflength.h thtfpwf.h thsurvey.h thendsurvey.h extern/img/img.h
$(OUTDIR)/thinfnan.o: thinfnan.cxx thinfnan.h
$(OUTDIR)/thinit.o: thinit.cxx thinit.h thbuffer.h thmbuffer.h thinput.h thparse.h \
thchenc.h thchencdata.h therion.h thconfig.h thexporter.h thexport.h \
thobjectsrc.h thlayout.h thdataobject.h thdatabase.h thdb1d.h \
thobjectid.h thinfnan.h thdataleg.h thobjectname.h thdb3d.h \
loch/lxMath.h thattr.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h \
thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h thselector.h \
thexception.h thtexfonts.h thlang.h thlangdata.h thtmpdir.h thcs.h \
thcsdata.h thproj.h thpdfdbg.h
$(OUTDIR)/thinput.o: thinput.cxx thinput.h thbuffer.h thmbuffer.h thparse.h \
thchenc.h thchencdata.h therion.h thexception.h
$(OUTDIR)/thjoin.o: thjoin.cxx thjoin.h thdataobject.h thdatabase.h thmbuffer.h \
thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h thparse.h \
thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h \
thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thexception.h
$(OUTDIR)/thlang.o: thlang.cxx thlang.h thlangdata.h thparse.h thbuffer.h \
thmbuffer.h thlangdatafields.h thinit.h thinput.h thconfig.h \
thexporter.h thexport.h thobjectsrc.h thlayout.h thdataobject.h \
thdatabase.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h thobjectname.h \
therion.h thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h \
thdb2d.h thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h \
thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h \
thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h \
thlayoutln.h thscrapen.h thscraplp.h thsymbolset.h thsymbolsetlist.h \
thlocale.h loch/icase.h thselector.h thexception.h
$(OUTDIR)/thlayout.o: thlayout.cxx thlayout.h thdataobject.h thdatabase.h \
thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thsymbolset.h thsymbolsetlist.h thlocale.h thlookup.h \
thexception.h thdata.h thtfangle.h thtf.h thtflength.h thtfpwf.h \
thlang.h thlangdata.h thcsdata.h thconfig.h thinput.h thexporter.h \
thexport.h loch/icase.h thselector.h th2ddataobject.h
$(OUTDIR)/thlayoutclr.o: thlayoutclr.cxx thlayoutclr.h thparse.h thbuffer.h \
thmbuffer.h thpdfdata.h thepsparse.h thdatabase.h thdataobject.h \
thperson.h thdate.h thdataleg.h thobjectname.h therion.h thobjectsrc.h \
thinfnan.h thdb1d.h thobjectid.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thlegenddata.h \
thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h \
thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thexception.h
$(OUTDIR)/thlayoutln.o: thlayoutln.cxx thlayoutln.h thlayoutclr.h thparse.h \
thbuffer.h thmbuffer.h thpdfdata.h thepsparse.h thlayout.h \
thdataobject.h thdatabase.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h \
thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thscraplo.h thscrapen.h \
thscraplp.h thsymbolset.h thsymbolsetlist.h thlocale.h
$(OUTDIR)/thlegenddata.o: thlegenddata.cxx thlegenddata.h
$(OUTDIR)/thlibrary.o: thlibrary.cxx thlibrary.h thlibrarydata.cxx thdatabase.h \
thdataobject.h thperson.h thparse.h thbuffer.h thmbuffer.h thdate.h \
thdataleg.h thobjectname.h therion.h thobjectsrc.h thinfnan.h \
thlayoutclr.h thpdfdata.h thepsparse.h thdb1d.h thobjectid.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thlayout.h thsymbolset.h thsymbolsetlist.h \
thlocale.h thlang.h thlangdata.h thgrade.h thdata.h thtfangle.h thtf.h \
thtflength.h thtfpwf.h
$(OUTDIR)/thlibrarydata.o: thlibrarydata.cxx thdatabase.h thdataobject.h thperson.h \
thparse.h thbuffer.h thmbuffer.h thdate.h thdataleg.h thobjectname.h \
therion.h thobjectsrc.h thinfnan.h thlayoutclr.h thpdfdata.h \
thepsparse.h thdb1d.h thobjectid.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thlegenddata.h \
thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h \
thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thlayout.h thsymbolset.h thsymbolsetlist.h thlocale.h thlang.h \
thlangdata.h thgrade.h thdata.h thtfangle.h thtf.h thtflength.h \
thtfpwf.h
$(OUTDIR)/thline.o: thline.cxx thline.h th2ddataobject.h thdataobject.h \
thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h \
thdataleg.h thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thexception.h thexpmap.h thexport.h thlayout.h \
thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h thlang.h \
thlangdata.h thtflength.h thtf.h thtexfonts.h thscrap.h thsketch.h \
thpic.h thwarp.h thtrans.h
$(OUTDIR)/thlocale.o: thlocale.cxx thlocale.h thparse.h thbuffer.h thmbuffer.h \
thexception.h thlang.h thlangdata.h thinit.h thinput.h
$(OUTDIR)/thlog.o: thlog.cxx thlog.h thlogfile.h thbuffer.h
$(OUTDIR)/thlogfile.o: thlogfile.cxx thlogfile.h thbuffer.h therion.h
$(OUTDIR)/thlookup.o: thlookup.cxx thlookup.h thdataobject.h thdatabase.h \
thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thlocale.h thexception.h thdata.h thtfangle.h thtf.h \
thtflength.h thtfpwf.h thsymbolset.h thsymbolsetlist.h thlang.h \
thlangdata.h thcsdata.h thconfig.h thinput.h thexporter.h thexport.h \
thlayout.h loch/icase.h thselector.h thscrap.h thsketch.h thpic.h \
thwarp.h thtrans.h thmap.h thpdf.h thtexfonts.h
$(OUTDIR)/thmap.o: thmap.cxx thmap.h thdataobject.h thdatabase.h thmbuffer.h \
thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h thparse.h \
thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h \
thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thexception.h thscrap.h thsketch.h thpic.h thwarp.h thtrans.h \
thtflength.h thtf.h thconfig.h thinput.h thexporter.h thexport.h \
thlayout.h thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h \
thselector.h
$(OUTDIR)/thmapstat.o: thmapstat.cxx thmapstat.h thdate.h thperson.h thlegenddata.h \
thscrap.h thdataobject.h thdatabase.h thmbuffer.h thbuffer.h thdb1d.h \
thobjectid.h thinfnan.h thdataleg.h thparse.h thobjectname.h therion.h \
thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h \
thdb2d.h thdb2dprj.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h thsketch.h \
thpic.h thwarp.h thtrans.h thdata.h thtfangle.h thtf.h thtflength.h \
thtfpwf.h thmap.h thlayout.h thsymbolset.h thsymbolsetlist.h thlocale.h \
thlang.h thlangdata.h thversion.h thtexfonts.h thsurvey.h thconfig.h \
thinput.h thexporter.h thexport.h loch/icase.h thselector.h thcs.h \
thcsdata.h
$(OUTDIR)/thmbuffer.o: thmbuffer.cxx thmbuffer.h
$(OUTDIR)/thmpost.o: thmpost.cxx thmpost.h
$(OUTDIR)/thobjectid.o: thobjectid.cxx thobjectid.h
$(OUTDIR)/thobjectname.o: thobjectname.cxx thobjectname.h thmbuffer.h therion.h \
thexception.h thparse.h thbuffer.h thdatabase.h thdataobject.h \
thperson.h thdate.h thdataleg.h thobjectsrc.h thinfnan.h thlayoutclr.h \
thpdfdata.h thepsparse.h thdb1d.h thobjectid.h thdb3d.h loch/lxMath.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h \
thdb2dcp.h thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thsurvey.h thtfpwf.h thdata.h thtfangle.h thtf.h \
thtflength.h
$(OUTDIR)/thobjectsrc.o: thobjectsrc.cxx thobjectsrc.h
$(OUTDIR)/thparse.o: thparse.cxx thparse.h thbuffer.h thmbuffer.h therion.h \
thlang.h thlangdata.h thtexfonts.h thinfnan.h thdatabase.h \
thdataobject.h thperson.h thdate.h thdataleg.h thobjectname.h \
thobjectsrc.h thlayoutclr.h thpdfdata.h thepsparse.h thdb1d.h \
thobjectid.h thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h \
thdb2d.h thdb2dprj.h thmapstat.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thscraplo.h thlayoutln.h thscrapen.h thscraplp.h thtflength.h thtf.h \
thexception.h loch/icase.h
$(OUTDIR)/thpdf.o: thpdf.cxx thpdfdbg.h thexception.h thconfig.h thbuffer.h \
thmbuffer.h thinput.h thparse.h thexporter.h thexport.h thobjectsrc.h \
thlayout.h thdataobject.h thdatabase.h thdb1d.h thobjectid.h thinfnan.h \
thdataleg.h thobjectname.h therion.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h \
thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h thselector.h \
thtexfonts.h thlang.h thlangdata.h thversion.h thdouble.h
$(OUTDIR)/thpdfdata.o: thpdfdata.cxx thexception.h thpdfdata.h thepsparse.h \
thlang.h thlangdata.h thparse.h thbuffer.h thmbuffer.h
$(OUTDIR)/thpdfdbg.o: thpdfdbg.cxx thpdfdbg.h thexception.h thpdfdata.h \
thepsparse.h
$(OUTDIR)/thperson.o: thperson.cxx thperson.h thdatabase.h thdataobject.h thparse.h \
thbuffer.h thmbuffer.h thdate.h thdataleg.h thobjectname.h therion.h \
thobjectsrc.h thinfnan.h thlayoutclr.h thpdfdata.h thepsparse.h thdb1d.h \
thobjectid.h thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h \
thdb2d.h thdb2dprj.h thmapstat.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thscraplo.h thlayoutln.h thscrapen.h thscraplp.h thexception.h
$(OUTDIR)/thpic.o: thpic.cxx thpic.h thbuffer.h thdatabase.h thdataobject.h \
thperson.h thparse.h thmbuffer.h thdate.h thdataleg.h thobjectname.h \
therion.h thobjectsrc.h thinfnan.h thlayoutclr.h thpdfdata.h \
thepsparse.h thdb1d.h thobjectid.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thlegenddata.h \
thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h \
thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thinit.h thinput.h thtmpdir.h thexception.h thconfig.h thexporter.h \
thexport.h thlayout.h thsymbolset.h thsymbolsetlist.h thlocale.h \
loch/icase.h thselector.h
$(OUTDIR)/thpoint.o: thpoint.cxx thpoint.h th2ddataobject.h thdataobject.h \
thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h \
thdataleg.h thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thexception.h thexpmap.h thexport.h thlayout.h \
thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h thlang.h \
thlangdata.h thtflength.h thtf.h thtexfonts.h thscrap.h thsketch.h \
thpic.h thwarp.h thtrans.h
$(OUTDIR)/thproj.o: thproj.cxx therion.h thexception.h thproj.h thlogfile.h \
thbuffer.h thcs.h thcsdata.h thparse.h thmbuffer.h
$(OUTDIR)/thscrap.o: thscrap.cxx thscrap.h thdataobject.h thdatabase.h thmbuffer.h \
thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h thparse.h \
thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h \
thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h thsketch.h \
thpic.h thwarp.h thtrans.h thexception.h thtflength.h thtf.h \
th2ddataobject.h thline.h thpoint.h thscrapis.h thsurvey.h thtfpwf.h \
thdata.h thtfangle.h thsymbolset.h thsymbolsetlist.h thcsdata.h
$(OUTDIR)/thscrapen.o: thscrapen.cxx thscrapen.h
$(OUTDIR)/thscrapis.o: thscrapis.cxx thscrapis.h thdb3d.h loch/lxMath.h thscrap.h \
thdataobject.h thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h \
thinfnan.h thdataleg.h thparse.h thobjectname.h therion.h thobjectsrc.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thsketch.h thpic.h thwarp.h thtrans.h thpoint.h \
th2ddataobject.h thline.h thconfig.h thinput.h thexporter.h thexport.h \
thlayout.h thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h \
thselector.h extern/poly2tri/poly2tri.h extern/poly2tri/common/shapes.h \
extern/poly2tri/sweep/cdt.h extern/poly2tri/sweep/advancing_front.h \
extern/poly2tri/sweep/../common/shapes.h \
extern/poly2tri/sweep/sweep_context.h extern/poly2tri/sweep/sweep.h \
thsurvey.h thtfpwf.h thdata.h thtfangle.h thtf.h thtflength.h
$(OUTDIR)/thscraplo.o: thscraplo.cxx thscraplo.h
$(OUTDIR)/thscraplp.o: thscraplp.cxx thscraplp.h thdb1d.h thobjectid.h thinfnan.h \
thdataleg.h thparse.h thbuffer.h thmbuffer.h thobjectname.h therion.h \
thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h \
thscrap.h thdataobject.h thdatabase.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thsketch.h \
thpic.h thwarp.h thtrans.h thexpmap.h thexport.h thlayout.h \
thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h thlang.h \
thlangdata.h
$(OUTDIR)/thselector.o: thselector.cxx thselector.h thlayoutclr.h thparse.h \
thbuffer.h thmbuffer.h thpdfdata.h thepsparse.h thexception.h thconfig.h \
thinput.h thexporter.h thexport.h thobjectsrc.h thlayout.h \
thdataobject.h thdatabase.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thobjectname.h therion.h thdb3d.h loch/lxMath.h thattr.h thchenc.h \
thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h thperson.h \
thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h \
thdb2dcp.h thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h \
thsurvey.h thtfpwf.h thdata.h thtfangle.h thtf.h thtflength.h \
th2ddataobject.h thscrap.h thsketch.h thpic.h thwarp.h thtrans.h thmap.h
$(OUTDIR)/thsketch.o: thsketch.cxx therion.h thsketch.h thpic.h thwarp.h thscrap.h \
thdataobject.h thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h \
thinfnan.h thdataleg.h thparse.h thobjectname.h thobjectsrc.h thdb3d.h \
loch/lxMath.h thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h \
thmapstat.h thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h \
thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h \
thlayoutclr.h thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h \
thscrapen.h thscraplp.h thtrans.h thwarpp.h thwarppme.h thwarppdef.h \
thwarppt.h thconfig.h thinput.h thexporter.h thexport.h thlayout.h \
thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h thselector.h
$(OUTDIR)/thsurface.o: thsurface.cxx thsurface.h thdb3d.h loch/lxMath.h \
thdataobject.h thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h \
thinfnan.h thdataleg.h thparse.h thobjectname.h therion.h thobjectsrc.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thtflength.h thtf.h thexception.h thcsdata.h thdatareader.h \
thinput.h
$(OUTDIR)/thsurvey.o: thsurvey.cxx thsurvey.h thdataobject.h thdatabase.h \
thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thparse.h thobjectname.h therion.h thobjectsrc.h thdb3d.h loch/lxMath.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thtfpwf.h thdata.h thtfangle.h thtf.h thtflength.h \
thexception.h
$(OUTDIR)/thsvg.o: thsvg.cxx thepsparse.h thpdfdbg.h thexception.h thpdfdata.h \
therion.h thversion.h thconfig.h thbuffer.h thmbuffer.h thinput.h \
thparse.h thexporter.h thexport.h thobjectsrc.h thlayout.h \
thdataobject.h thdatabase.h thdb1d.h thobjectid.h thinfnan.h thdataleg.h \
thobjectname.h thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h \
thdb2d.h thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h \
thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h \
thdb2dxs.h thdb2dxm.h thlayoutclr.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thsymbolset.h thsymbolsetlist.h thlocale.h loch/icase.h \
thselector.h thtexfonts.h thdouble.h
$(OUTDIR)/thsvxctrl.o: thsvxctrl.cxx thsvxctrl.h thdataleg.h thparse.h thbuffer.h \
thmbuffer.h thobjectname.h therion.h thobjectsrc.h thinfnan.h \
thdatabase.h thdataobject.h thperson.h thdate.h thlayoutclr.h \
thpdfdata.h thepsparse.h thdb1d.h thobjectid.h thdb3d.h loch/lxMath.h \
thattr.h thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h \
thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h \
thdb2dcp.h thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thtmpdir.h thdata.h thtfangle.h thtf.h thtflength.h \
thtfpwf.h thexception.h thinit.h thinput.h thconfig.h thexporter.h \
thexport.h thlayout.h thsymbolset.h thsymbolsetlist.h thlocale.h \
loch/icase.h thselector.h thsurvey.h thcs.h thcsdata.h thlogfile.h \
extern/img/img.h
$(OUTDIR)/thsymbolset.o: thsymbolset.cxx thsymbolset.h thsymbolsetlist.h \
thlayoutclr.h thparse.h thbuffer.h thmbuffer.h thpdfdata.h thepsparse.h \
thpoint.h th2ddataobject.h thdataobject.h thdatabase.h thdb1d.h \
thobjectid.h thinfnan.h thdataleg.h thobjectname.h therion.h \
thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h \
thdb2d.h thdb2dprj.h thmapstat.h thdate.h thperson.h thlegenddata.h \
thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h \
thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h \
thline.h tharea.h thexception.h thlayout.h thlocale.h thtexfonts.h \
thlang.h thlangdata.h thtmpdir.h thcmdline.h thmpost.h thinit.h \
thinput.h thsymbolsets.h thlogfile.h
$(OUTDIR)/thsymbolsets.o: thsymbolsets.cxx thsymbolsets.h thsymbolsetlist.h
$(OUTDIR)/thtex.o: thtex.cxx thtex.h
$(OUTDIR)/thtexfonts.o: thtexfonts.cxx thtexfonts.h thtexenc.h thpdfdbg.h \
thexception.h thinit.h thbuffer.h thmbuffer.h thinput.h thparse.h \
thpdfdata.h thepsparse.h therion.h
$(OUTDIR)/thtf.o: thtf.cxx thtf.h thexception.h thparse.h thbuffer.h thmbuffer.h
$(OUTDIR)/thtfangle.o: thtfangle.cxx therion.h thparse.h thbuffer.h thmbuffer.h \
thtfangle.h thtf.h thexception.h thinfnan.h
$(OUTDIR)/thtflength.o: thtflength.cxx thtflength.h thtf.h thparse.h thbuffer.h \
thmbuffer.h thexception.h
$(OUTDIR)/thtfpwf.o: thtfpwf.cxx thtfpwf.h thexception.h thinfnan.h thparse.h \
thbuffer.h thmbuffer.h
$(OUTDIR)/thtmpdir.o: thtmpdir.cxx thtmpdir.h therion.h thinit.h thbuffer.h \
thmbuffer.h thinput.h thparse.h
$(OUTDIR)/thtrans.o: thtrans.cxx thtrans.h thinfnan.h thdatabase.h thdataobject.h \
thperson.h thparse.h thbuffer.h thmbuffer.h thdate.h thdataleg.h \
thobjectname.h therion.h thobjectsrc.h thlayoutclr.h thpdfdata.h \
thepsparse.h thdb1d.h thobjectid.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thlegenddata.h \
thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h thdb2dmi.h thdb2dcp.h \
thdb2dxs.h thdb2dxm.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h
$(OUTDIR)/thwarp.o: thwarp.cxx thwarp.h thpic.h thdb1d.h thobjectid.h thinfnan.h \
thdataleg.h thparse.h thbuffer.h thmbuffer.h thobjectname.h therion.h \
thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h thchenc.h thchencdata.h \
thscrap.h thdataobject.h thdatabase.h thdb2d.h thdb2dprj.h thmapstat.h \
thdate.h thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h \
thdb2dji.h thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h \
thpdfdata.h thepsparse.h thscraplo.h thlayoutln.h thscrapen.h \
thscraplp.h thsketch.h thtrans.h th2ddataobject.h thpoint.h thconfig.h \
thinput.h thexporter.h thexport.h thlayout.h thsymbolset.h \
thsymbolsetlist.h thlocale.h loch/icase.h thselector.h
$(OUTDIR)/thwarpp.o: thwarpp.cxx thwarpp.h thwarp.h thpic.h thwarppme.h \
thwarppdef.h therion.h thtrans.h thinfnan.h thwarppt.h thdataobject.h \
thdatabase.h thmbuffer.h thbuffer.h thdb1d.h thobjectid.h thdataleg.h \
thparse.h thobjectname.h thobjectsrc.h thdb3d.h loch/lxMath.h thattr.h \
thchenc.h thchencdata.h thdb2d.h thdb2dprj.h thmapstat.h thdate.h \
thperson.h thlegenddata.h thdb2dpt.h thdb2dlp.h thdb2dab.h thdb2dji.h \
thdb2dmi.h thdb2dcp.h thdb2dxs.h thdb2dxm.h thlayoutclr.h thpdfdata.h \
thepsparse.h thscraplo.h thlayoutln.h thscrapen.h thscraplp.h thscrap.h \
thsketch.h th2ddataobject.h thpoint.h thconfig.h thinput.h thexporter.h \
thexport.h thlayout.h thsymbolset.h thsymbolsetlist.h thlocale.h \
loch/icase.h thselector.h
$(OUTDIR)/thwarppme.o: thwarppme.cxx thinfnan.h thwarppme.h thwarppdef.h therion.h \
thtrans.h
$(OUTDIR)/thwarppt.o: thwarppt.cxx thwarppt.h thtrans.h thinfnan.h thwarppme.h \
thwarppdef.h therion.h
utest-icase.o: utest-icase.cxx extern/catch2/catch.hpp loch/icase.h \
thparse.h thbuffer.h thmbuffer.h thcsdata.h
utest-main.o: utest-main.cxx extern/catch2/catch.hpp thinit.h thbuffer.h \
thmbuffer.h thinput.h thparse.h thproj.h
utest-proj.o: utest-proj.cxx extern/catch2/catch.hpp thproj.h thcsdata.h \
thparse.h thbuffer.h thmbuffer.h thcs.h
utest-thdouble.o: utest-thdouble.cxx thdouble.h extern/catch2/catch.hpp
|