-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmakefile
1825 lines (1496 loc) · 220 KB
/
makefile
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
# Eigen Compiler Suite makefile
# Copyright (C) Florian Negele
# This file is part of the Eigen Compiler Suite.
# The ECS is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# The ECS is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with the ECS. If not, see <https://www.gnu.org/licenses/>.
all: tools runtime utilities
commit: tools runtime utilities documentation checks tests
.PHONY: all commit tools utilities runtime documentation tests checks clean depwalk install uninstall
.SUFFIXES: # delete the default suffixes
MAKEFLAGS += --no-builtin-rules --no-builtin-variables
# common definitions
LANGUAGES := cd cpp fal ob asm
LANGUAGENAMES := CODE CPP FALSE OBERON ASSEMBLY
PREPROCESSORS := $(filter cppprep, $(foreach LANGUAGE, $(LANGUAGES), $(LANGUAGE)prep))
PRINTERS := $(filter-out cdprint, $(foreach LANGUAGE, $(LANGUAGES), $(LANGUAGE)print))
CHECKERS := $(filter-out asmcheck, $(foreach LANGUAGE, $(LANGUAGES), $(LANGUAGE)check))
SERIALIZERS := $(filter-out cddump asmdump, $(foreach LANGUAGE, $(LANGUAGES), $(LANGUAGE)dump))
INTERPRETERS := $(filter-out asmrun, $(foreach LANGUAGE, $(LANGUAGES), $(LANGUAGE)run))
TRANSPILERS := $(filter-out cdcpp cppcpp asmcpp, $(foreach LANGUAGE, $(LANGUAGES), $(LANGUAGE)cpp))
EXTRACTORS := doc cpp ob
EXTRACTORNAMES := DOCUMENTATION CPP OBERON
FORMATTERS := doc html latex
FORMATTERNAMES := DOCUMENTATION HTML LATEX
GENERATORS := $(filter-out docdoc, $(foreach EXTRACTOR, $(EXTRACTORS), $(addprefix $(EXTRACTOR), $(FORMATTERS))))
FRONTENDS := cd cpp fal ob
FRONTENDNAMES := CODE CPP FALSE OBERON
BACKENDS := code amd16 amd32 amd64 arma32 arma64 armt32 armt32fpe avr avr32 m68k mibl mips32 mips64 mmix or1k ppc32 ppc64 risc wasm xtensa
BACKENDNAMES := CODE AMD16 AMD32 AMD64 ARMA32 ARMA64 ARMT32 ARMT32FPE AVR AVR32 M68K MICROBLAZE MIPS32 MIPS64 MMIX OR1K POWERPC32 POWERPC64 RISC WEBASSEMBLY XTENSA
COMPILERS := $(filter-out cdcode, $(foreach FRONTEND, $(FRONTENDS), $(addprefix $(FRONTEND), $(BACKENDS))))
TARGETS := $(filter-out code, $(BACKENDS))
TARGETNAMES := $(filter-out CODE, $(BACKENDNAMES))
DEBUGFILEFORMATS := dwarf
DEBUGFILEFORMATNAMES := DWARF
CONVERTERS := $(foreach DEBUGFILEFORMAT, $(DEBUGFILEFORMATS), dbg$(DEBUGFILEFORMAT))
ARCHITECTURES := $(filter-out armt32fpe, $(TARGETS))
ARCHITECTURENAMES := $(filter-out ARMT32FPE, $(TARGETNAMES))
ASSEMBLERS := $(addsuffix asm, $(ARCHITECTURES))
DISASSEMBLERS := $(addsuffix dism, $(ARCHITECTURES))
LINKFILEFORMATS := lib bin mem hex prg
LINKFILEFORMATNAMES := LIBRARY BINARY MEMORY INTELHEX GEMDOS
LINKERS := $(foreach LINKFILEFORMAT, $(LINKFILEFORMATS), link$(LINKFILEFORMAT))
ENVIRONMENTS := amd32linux amd64linux arma32linux arma64linux armt32linux armt32fpelinux at32uc3a3 atmega32 atmega328 atmega8515 bios16 bios32 bios64 dos efi32 efi64 mips32linux mmixsim or1ksim osx32 osx64 riscdisk rpi2b tos webassembly win32 win64 xtensalinux
ENVIRONMENTTARGETS := amd32 amd64 arma32 arma64 armt32 armt32fpe avr32 avr avr avr amd16 amd32 amd64 amd16 amd32 amd64 mips32 mmix or1k amd32 amd64 risc arma32 m68k wasm amd32 amd64 xtensa
ENVIRONMENTARCHITECTURES := amd32 amd64 arma32 arma64 armt32 armt32 avr32 avr avr avr amd16 amd32 amd64 amd16 amd32 amd64 mips32 mmix or1k amd32 amd64 risc arma32 m68k wasm amd32 amd64 xtensa
# environment & toolchain
ifdef windir
CP := copy
RM := del
TC := type nul >
PRG := .exe
DIR = $(subst /,\,$1)
DIRP = $(subst /,\\,$1)
ESC = $(strip $1)
NUL := nul
ENVIRONMENT := windows.cpp
ifdef CommonProgramFiles(x86)
HOSTENVIRONMENTS := win32 win64
else
HOSTENVIRONMENTS := dos win32
endif
ifndef toolchain
toolchain := msvc
endif
else
CP := cp -f
RM := rm -f
TC := touch
PRG :=
DIR = $1
DIRP = $1
ESC = \$(strip $1)
NUL := /dev/null
KERNEL := $(shell uname -s)
ifeq "$(KERNEL)" "Linux"
ENVIRONMENT := linux.cpp posix.cpp
MACHINE := $(shell uname -m)
ifeq "$(MACHINE)" "i686"
HOSTENVIRONMENTS := amd32linux
else ifeq "$(MACHINE)" "x86_64"
HOSTENVIRONMENTS := amd64linux
else ifeq "$(MACHINE)" "armv7l"
HOSTENVIRONMENTS := arma32linux armt32linux armt32fpelinux
else ifeq "$(MACHINE)" "armv8l"
HOSTENVIRONMENTS := arma32linux armt32linux armt32fpelinux
else ifeq "$(MACHINE)" "aarch64"
HOSTENVIRONMENTS := arma64linux
else ifeq "$(MACHINE)" "mips"
HOSTENVIRONMENTS := mips32linux
else
HOSTENVIRONMENTS :=
endif
ifndef toolchain
toolchain := gcc
endif
else ifeq "$(KERNEL)" "Darwin"
ENVIRONMENT := osx.cpp posix.cpp
HOSTENVIRONMENTS := osx32 osx64
ifndef toolchain
toolchain := clang
endif
else ifeq "$(KERNEL)" "FreeBSD"
ENVIRONMENT := freebsd.cpp posix.cpp
HOSTENVIRONMENTS :=
ifndef toolchain
toolchain := clang
endif
else
ENVIRONMENT := $(error unknown host environment)
endif
endif
ifeq "$(toolchain)" "ecs"
O := .obf
CC := ecsd
LD := ecsd
CFLAGS = -c -s cpp
LFLAGS = -C
CCHECKFLAGS := -i cppcheck
CRUNFLAGS := -c
LRUNFLAGS := -C
else ifeq "$(toolchain)" "gcc"
O := .o
CC := g++
LD := g++
COMMONFLAGS := -c -pipe -x c++ -std=c++17 --pedantic -Wfatal-errors
CFLAGS = $(COMMONFLAGS) -Werror -Wall -Wextra -Wmissing-noreturn -Wno-switch -Wno-empty-body -Wno-parentheses -Wzero-as-null-pointer-constant -Wno-missing-field-initializers -Wno-return-type -Wno-misleading-indentation -Wno-psabi -Wno-implicit-fallthrough -Wno-suggest-attribute=noreturn -o $(notdir $@)
LFLAGS = -o $(notdir $@)
CCHECKFLAGS := $(COMMONFLAGS) -fsyntax-only
CRUNFLAGS := $(COMMONFLAGS)
LRUNFLAGS := -o
else ifeq "$(toolchain)" "clang"
O := .o
CC := clang++
LD := clang++
COMMONFLAGS := -c -pipe -x c++ -std=c++17 -pedantic -Wfatal-errors -Wno-nested-anon-types
CFLAGS = $(COMMONFLAGS) -Wall -Wextra -Wmissing-noreturn -Wno-switch -Wno-empty-body -Wno-parentheses -Wno-dangling-else -Wno-unused-private-field -Wno-missing-field-initializers -Wno-overloaded-virtual -Wno-missing-braces -Wno-misleading-indentation -Wno-bitwise-instead-of-logical -o $(notdir $@)
LFLAGS = -Wno-unused-command-line-argument -o $(notdir $@)
CCHECKFLAGS := $(COMMONFLAGS) -fsyntax-only -Wno-dangling-else -Wno-parentheses
CRUNFLAGS := $(COMMONFLAGS)
LRUNFLAGS := -Wno-unused-command-line-argument -o
else ifeq "$(toolchain)" "msvc"
O := .obj
CC := cl
LD := link
COMMONFLAGS := /EHsc /Wp64 /WL /W4 /wd4267 /wd4611 /wd4800 /GF /GR /J /c /TP
CFLAGS = $(COMMONFLAGS) /Za /WX /Fo$(notdir $@)
LFLAGS = /nologo /machine:x86 /out:$(notdir $@)
CCHECKFLAGS := $(COMMONFLAGS) /we4002 /we4003 /we4005 /Za /Zs
CRUNFLAGS := $(COMMONFLAGS)
LRUNFLAGS := /nologo /machine:x86 /out:
else
CC := $(error unknown toolchain)
endif
# tools & utilities
TOOLS := $(call DIR,tools/)
TOOLSP := $(call DIRP,tools/)
UTILITIES := $(call DIR,utilities/)
UTILITIESP := $(call DIRP,utilities/)
BIN := $(addprefix $(TOOLS), $(addsuffix $(PRG), mapsearch docprint doccheck cdopt \
$(PREPROCESSORS) $(PRINTERS) $(CHECKERS) $(SERIALIZERS) $(INTERPRETERS) $(TRANSPILERS) $(GENERATORS) $(COMPILERS) $(CONVERTERS) $(ASSEMBLERS) $(DISASSEMBLERS) $(LINKERS))) \
$(addprefix $(UTILITIES), $(addsuffix $(PRG), depwalk ecsd hexdump linecheck regtest))
SRC := $(addprefix $(TOOLS), object.cpp objlinker.cpp objmap.cpp objhexfile.cpp mapsearch.cpp debugging.cpp dbgconverter.cpp dbgdwarfconverter.cpp \
documentation.cpp doclexer.cpp docparser.cpp docprinter.cpp docprint.cpp docchecker.cpp doccheck.cpp docextractor.cpp dochtmlformatter.cpp doclatexformatter.cpp \
code.cpp cdchecker.cpp cdoptimizer.cpp cdopt.cpp cdinterpreter.cpp cdemitter.cpp cdgenerator.cpp xml.cpp xmlprinter.cpp xmlserializer.cpp \
cpp.cpp cpplexer.cpp cpppreprocessor.cpp cppparser.cpp cppprinter.cpp cppchecker.cpp cppserializer.cpp cppinterpreter.cpp cppextractor.cpp cppemitter.cpp \
false.cpp fallexer.cpp falparser.cpp falprinter.cpp falserializer.cpp falinterpreter.cpp faltranspiler.cpp falemitter.cpp \
oberon.cpp oblexer.cpp obparser.cpp obprinter.cpp obchecker.cpp obserializer.cpp obinterpreter.cpp obtranspiler.cpp obextractor.cpp obemitter.cpp \
assembly.cpp asmlexer.cpp asmparser.cpp asmprinter.cpp asmchecker.cpp asmassembler.cpp asmdisassembler.cpp asmgenerator.cpp \
amd64.cpp amd64assembler.cpp amd64disassembler.cpp amd64generator.cpp arm.cpp arma32.cpp arma32assembler.cpp arma32disassembler.cpp armgenerator.cpp arma32generator.cpp \
arma64.cpp arma64assembler.cpp arma64disassembler.cpp arma64generator.cpp armt32.cpp armt32assembler.cpp armt32disassembler.cpp armt32generator.cpp \
avr.cpp avrassembler.cpp avrdisassembler.cpp avrgenerator.cpp avr32.cpp avr32assembler.cpp avr32disassembler.cpp avr32generator.cpp \
m68k.cpp m68kassembler.cpp m68kdisassembler.cpp m68kgenerator.cpp mibl.cpp miblassembler.cpp mibldisassembler.cpp miblgenerator.cpp \
mips.cpp mipsassembler.cpp mipsdisassembler.cpp mipsgenerator.cpp mmix.cpp mmixassembler.cpp mmixdisassembler.cpp mmixgenerator.cpp \
or1k.cpp or1kassembler.cpp or1kdisassembler.cpp or1kgenerator.cpp ppc.cpp ppcassembler.cpp ppcdisassembler.cpp ppcgenerator.cpp \
risc.cpp riscassembler.cpp riscdisassembler.cpp riscgenerator.cpp wasm.cpp wasmassembler.cpp wasmdisassembler.cpp wasmgenerator.cpp \
xtensa.cpp xtensaassembler.cpp xtensadisassembler.cpp xtensagenerator.cpp) \
$(addprefix $(UTILITIES), depwalk.cpp ecsd.cpp hexdump.cpp linecheck.cpp regtest.cpp $(ENVIRONMENT))
DRV := $(addprefix $(TOOLS), $(addsuffix .drv, $(PREPROCESSORS) $(PRINTERS) $(CHECKERS) $(SERIALIZERS) $(INTERPRETERS) $(TRANSPILERS) $(GENERATORS) $(COMPILERS) $(CONVERTERS) $(ASSEMBLERS) $(DISASSEMBLERS) $(LINKERS)))
OBJ := $(SRC:.cpp=$(O)) $(DRV:.drv=$(O))
FINDMATCH = $(if $(findstring $(lastword $1), $2), $(words $1), $(call FINDMATCH, $(filter-out $(lastword $1), $1), $2))
CREATEMACRO = $(addprefix $(word $(call FINDMATCH, $(call $2S), $(basename $1)), $(call $2NAMES)), $(firstword $3 $2))
# output of make depwalk
$(addprefix $(TOOLS), object$(O): object.cpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), objlinker$(O): objlinker.cpp charset.hpp diagnostics.hpp error.hpp format.hpp object.hpp objlinker.hpp objmap.hpp position.hpp rangeset.hpp utilities.hpp)
$(addprefix $(TOOLS), objmap$(O): objmap.cpp object.hpp objmap.hpp utilities.hpp)
$(addprefix $(TOOLS), objhexfile$(O): objhexfile.cpp objhexfile.hpp utilities.hpp)
$(addprefix $(TOOLS), mapsearch$(O): mapsearch.cpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp objmap.hpp position.hpp strdiagnostics.hpp utilities.hpp)
$(addprefix $(TOOLS), debugging$(O): debugging.cpp debugging.hpp utilities.hpp)
$(addprefix $(TOOLS), dbgconverter$(O): dbgconverter.cpp charset.hpp dbgconverter.hpp dbgconvertercontext.hpp debugging.hpp diagnostics.hpp error.hpp object.hpp position.hpp utilities.hpp)
$(addprefix $(TOOLS), dbgdwarfconverter$(O): dbgdwarfconverter.cpp dbgconverter.hpp dbgconvertercontext.hpp dbgdwarfconverter.hpp debugging.hpp format.hpp ieee.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), documentation$(O): documentation.cpp documentation.hpp position.hpp)
$(addprefix $(TOOLS), doclexer$(O): doclexer.cpp doclexer.hpp documentation.def position.hpp utilities.hpp)
$(addprefix $(TOOLS), docparser$(O): docparser.cpp diagnostics.hpp doclexer.hpp docparser.hpp documentation.def documentation.hpp error.hpp format.hpp position.hpp)
$(addprefix $(TOOLS), docprinter$(O): docprinter.cpp doclexer.hpp docprinter.hpp documentation.def documentation.hpp position.hpp)
$(addprefix $(TOOLS), docprint$(O): docprint.cpp diagnostics.hpp docparser.hpp docprinter.hpp documentation.hpp driver.hpp error.hpp format.hpp position.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), docchecker$(O): docchecker.cpp diagnostics.hpp docchecker.hpp documentation.hpp error.hpp format.hpp position.hpp)
$(addprefix $(TOOLS), doccheck$(O): doccheck.cpp diagnostics.hpp docchecker.hpp docparser.hpp documentation.hpp driver.hpp error.hpp format.hpp position.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), docextractor$(O): docextractor.cpp diagnostics.hpp docextractor.hpp docparser.hpp documentation.hpp position.hpp)
$(addprefix $(TOOLS), dochtmlformatter$(O): dochtmlformatter.cpp dochtmlformatter.hpp documentation.hpp position.hpp)
$(addprefix $(TOOLS), doclatexformatter$(O): doclatexformatter.cpp doclatexformatter.hpp documentation.hpp position.hpp utilities.hpp)
$(addprefix $(TOOLS), code$(O): code.cpp asmlexer.hpp assembly.def code.def code.hpp diagnostics.hpp ieee.hpp layout.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), cdchecker$(O): cdchecker.cpp asmchecker.hpp asmcheckercontext.hpp asmlexer.hpp assembly.def assembly.hpp cdchecker.hpp code.def code.hpp diagnostics.hpp error.hpp format.hpp object.hpp)
$(addprefix $(TOOLS), cdoptimizer$(O): cdoptimizer.cpp cdoptimizer.hpp code.def code.hpp object.hpp)
$(addprefix $(TOOLS), cdopt$(O): cdopt.cpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembly.def assembly.hpp cdchecker.hpp cdgenerator.hpp cdoptimizer.hpp charset.hpp code.def code.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdinterpreter$(O): cdinterpreter.cpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembly.def assembly.hpp cdchecker.hpp cdinterpreter.hpp code.def code.hpp diagnostics.hpp environment.hpp error.hpp format.hpp object.hpp position.hpp utilities.hpp)
$(addprefix $(TOOLS), cdemitter$(O): cdemitter.cpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembly.def assembly.hpp cdchecker.hpp cdemitter.hpp cdemittercontext.hpp charset.hpp code.def code.hpp diagnostics.hpp object.hpp position.hpp utilities.hpp)
$(addprefix $(TOOLS), cdgenerator$(O): cdgenerator.cpp asmlexer.hpp assembly.def cdgenerator.hpp code.def code.hpp diagnostics.hpp layout.hpp object.hpp stdlayout.hpp utilities.hpp)
$(addprefix $(TOOLS), xml$(O): xml.cpp xml.hpp)
$(addprefix $(TOOLS), xmlprinter$(O): xmlprinter.cpp indenter.hpp xml.hpp xmlprinter.hpp)
$(addprefix $(TOOLS), xmlserializer$(O): xmlserializer.cpp position.hpp xml.hpp xmlserializer.hpp)
$(addprefix $(TOOLS), cpp$(O): cpp.cpp cpp.def cpp.hpp cpplexer.hpp diagnostics.hpp layout.hpp position.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), cpplexer$(O): cpplexer.cpp charset.hpp cpp.def cpplexer.hpp cpplexercontext.hpp diagnostics.hpp error.hpp format.hpp position.hpp stringpool.hpp utilities.hpp)
$(addprefix $(TOOLS), cpppreprocessor$(O): cpppreprocessor.cpp cpp.def cpplexer.hpp cpplexercontext.hpp cpppreprocessor.hpp cpppreprocessorcontext.hpp diagnostics.hpp error.hpp format.hpp position.hpp stringpool.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), cppparser$(O): cppparser.cpp cpp.def cpp.hpp cppchecker.hpp cppcheckercontext.hpp cppevaluator.hpp cppinterpreter.hpp cpplexer.hpp cpplexercontext.hpp cppparser.hpp cpppreprocessor.hpp cpppreprocessorcontext.hpp cppprinter.hpp diagnostics.hpp error.hpp format.hpp position.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppprinter$(O): cppprinter.cpp cpp.def cpp.hpp cpplexer.hpp cppprinter.hpp diagnostics.hpp indenter.hpp position.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), cppchecker$(O): cppchecker.cpp cpp.def cpp.hpp cppchecker.hpp cppcheckercontext.hpp cppevaluator.hpp cppexecutor.hpp cppinterpreter.hpp cpplexer.hpp cppprinter.hpp diagnostics.hpp error.hpp format.hpp position.hpp stringpool.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), cppserializer$(O): cppserializer.cpp cpp.def cpp.hpp cpplexer.hpp cppserializer.hpp diagnostics.hpp position.hpp structurepool.hpp xml.hpp xmlserializer.hpp)
$(addprefix $(TOOLS), cppinterpreter$(O): cppinterpreter.cpp cpp.def cpp.hpp cppevaluator.hpp cppexecutor.hpp cppinterpreter.hpp cpplexer.hpp cppprinter.hpp diagnostics.hpp environment.hpp error.hpp format.hpp position.hpp stringpool.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), cppextractor$(O): cppextractor.cpp cppextractor.hpp docextractor.hpp docparser.hpp documentation.hpp position.hpp)
$(addprefix $(TOOLS), cppemitter$(O): cppemitter.cpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembly.def cdchecker.hpp cdemitter.hpp cdemittercontext.hpp charset.hpp code.def code.hpp cpp.def cpp.hpp cppemitter.hpp cpplexer.hpp cppprinter.hpp diagnostics.hpp error.hpp object.hpp position.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), false$(O): false.cpp fallexer.hpp false.def false.hpp position.hpp structurepool.hpp)
$(addprefix $(TOOLS), fallexer$(O): fallexer.cpp fallexer.hpp false.def position.hpp utilities.hpp)
$(addprefix $(TOOLS), falparser$(O): falparser.cpp diagnostics.hpp error.hpp fallexer.hpp falparser.hpp false.def false.hpp position.hpp structurepool.hpp)
$(addprefix $(TOOLS), falprinter$(O): falprinter.cpp fallexer.hpp falprinter.hpp false.def false.hpp position.hpp structurepool.hpp)
$(addprefix $(TOOLS), falserializer$(O): falserializer.cpp fallexer.hpp false.def false.hpp falserializer.hpp position.hpp structurepool.hpp xml.hpp xmlserializer.hpp)
$(addprefix $(TOOLS), falinterpreter$(O): falinterpreter.cpp diagnostics.hpp environment.hpp error.hpp falinterpreter.hpp fallexer.hpp false.def false.hpp position.hpp structurepool.hpp)
$(addprefix $(TOOLS), faltranspiler$(O): faltranspiler.cpp fallexer.hpp false.def false.hpp faltranspiler.hpp indenter.hpp position.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), falemitter$(O): falemitter.cpp asmchecker.hpp asmparser.hpp cdchecker.hpp cdemitter.hpp cdemittercontext.hpp charset.hpp code.def code.hpp falemitter.hpp fallexer.hpp false.def false.hpp object.hpp position.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), oberon$(O): oberon.cpp layout.hpp oberon.def oberon.hpp oblexer.hpp position.hpp rangeset.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), oblexer$(O): oblexer.cpp oberon.def oblexer.hpp position.hpp utilities.hpp)
$(addprefix $(TOOLS), obparser$(O): obparser.cpp diagnostics.hpp error.hpp format.hpp oberon.def oberon.hpp oblexer.hpp obparser.hpp position.hpp rangeset.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), obprinter$(O): obprinter.cpp indenter.hpp oberon.def oberon.hpp oblexer.hpp obprinter.hpp position.hpp rangeset.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), obchecker$(O): obchecker.cpp diagnostics.hpp error.hpp format.hpp obchecker.hpp oberon.def oberon.hpp obevaluator.hpp obinterpreter.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), obserializer$(O): obserializer.cpp oberon.def oberon.hpp oblexer.hpp obserializer.hpp position.hpp rangeset.hpp structurepool.hpp xml.hpp xmlserializer.hpp)
$(addprefix $(TOOLS), obinterpreter$(O): obinterpreter.cpp charset.hpp diagnostics.hpp environment.hpp error.hpp format.hpp oberon.def oberon.hpp obevaluator.hpp obinterpreter.hpp oblexer.hpp position.hpp rangeset.hpp strdiagnostics.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), obtranspiler$(O): obtranspiler.cpp indenter.hpp oberon.def oberon.hpp oblexer.hpp obtranspiler.hpp position.hpp rangeset.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), obextractor$(O): obextractor.cpp docextractor.hpp docparser.hpp documentation.hpp indenter.hpp oberon.def oberon.hpp obextractor.hpp oblexer.hpp position.hpp rangeset.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), obemitter$(O): obemitter.cpp asmchecker.hpp asmparser.hpp cdchecker.hpp cdemitter.hpp cdemittercontext.hpp charset.hpp code.def code.hpp diagnostics.hpp error.hpp obemitter.hpp oberon.def oberon.hpp object.hpp oblexer.hpp position.hpp rangeset.hpp strdiagnostics.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), assembly$(O): assembly.cpp asmlexer.hpp assembly.def assembly.hpp diagnostics.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), asmlexer$(O): asmlexer.cpp asmlexer.hpp assembly.def diagnostics.hpp object.hpp position.hpp utilities.hpp)
$(addprefix $(TOOLS), asmparser$(O): asmparser.cpp asmlexer.hpp asmparser.hpp assembly.def assembly.hpp diagnostics.hpp error.hpp format.hpp object.hpp stringpool.hpp)
$(addprefix $(TOOLS), asmprinter$(O): asmprinter.cpp asmlexer.hpp asmprinter.hpp assembly.def assembly.hpp diagnostics.hpp indenter.hpp object.hpp)
$(addprefix $(TOOLS), asmchecker$(O): asmchecker.cpp asmchecker.hpp asmcheckercontext.hpp asmlexer.hpp assembly.def assembly.hpp charset.hpp diagnostics.hpp error.hpp format.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), asmassembler$(O): asmassembler.cpp asmassembler.hpp asmchecker.hpp asmcheckercontext.hpp asmlexer.hpp assembly.def assembly.hpp charset.hpp diagnostics.hpp error.hpp format.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), asmdisassembler$(O): asmdisassembler.cpp asmdisassembler.hpp asmlexer.hpp assembly.def charset.hpp diagnostics.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), asmgenerator$(O): asmgenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp code.def code.hpp debugging.hpp diagnostics.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp utilities.hpp)
$(addprefix $(TOOLS), amd64$(O): amd64.cpp amd64.def amd64.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), amd64assembler$(O): amd64assembler.cpp amd64.def amd64.hpp amd64assembler.hpp asmassembler.hpp asmchecker.hpp utilities.hpp)
$(addprefix $(TOOLS), amd64disassembler$(O): amd64disassembler.cpp amd64.def amd64.hpp amd64disassembler.hpp asmdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), amd64generator$(O): amd64generator.cpp amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), arm$(O): arm.cpp arm.def arm.hpp utilities.hpp)
$(addprefix $(TOOLS), arma32$(O): arma32.cpp arm.def arm.hpp arma32.def arma32.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), arma32assembler$(O): arma32assembler.cpp arm.def arm.hpp arma32.def arma32.hpp arma32assembler.hpp asmassembler.hpp asmchecker.hpp utilities.hpp)
$(addprefix $(TOOLS), arma32disassembler$(O): arma32disassembler.cpp arm.def arm.hpp arma32.def arma32.hpp arma32disassembler.hpp asmdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), armgenerator$(O): armgenerator.cpp arm.def arm.hpp armgenerator.hpp armgeneratorcontext.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), arma32generator$(O): arma32generator.cpp arm.def arm.hpp arma32.def arma32.hpp arma32assembler.hpp arma32generator.hpp armgenerator.hpp armgeneratorcontext.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), arma64$(O): arma64.cpp arm.def arm.hpp arma64.def arma64.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), arma64assembler$(O): arma64assembler.cpp arm.def arm.hpp arma32assembler.hpp arma64.def arma64.hpp arma64assembler.hpp asmassembler.hpp asmchecker.hpp utilities.hpp)
$(addprefix $(TOOLS), arma64disassembler$(O): arma64disassembler.cpp arm.def arm.hpp arma64.def arma64.hpp arma64disassembler.hpp asmdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), arma64generator$(O): arma64generator.cpp arm.def arm.hpp arma32assembler.hpp arma64.def arma64.hpp arma64assembler.hpp arma64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), armt32$(O): armt32.cpp arm.def arm.hpp armt32.def armt32.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), armt32assembler$(O): armt32assembler.cpp arm.def arm.hpp arma32assembler.hpp armt32.def armt32.hpp armt32assembler.hpp asmassembler.hpp asmchecker.hpp utilities.hpp)
$(addprefix $(TOOLS), armt32disassembler$(O): armt32disassembler.cpp arm.def arm.hpp armt32.def armt32.hpp armt32disassembler.hpp asmdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), armt32generator$(O): armt32generator.cpp arm.def arm.hpp arma32assembler.hpp armgenerator.hpp armgeneratorcontext.hpp armt32.def armt32.hpp armt32assembler.hpp armt32generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), avr$(O): avr.cpp avr.def avr.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), avrassembler$(O): avrassembler.cpp asmassembler.hpp asmchecker.hpp asmlexer.hpp assembly.def assembly.hpp avr.def avr.hpp avrassembler.hpp diagnostics.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), avrdisassembler$(O): avrdisassembler.cpp asmdisassembler.hpp avr.def avr.hpp avrdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), avrgenerator$(O): avrgenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def avr.def avr.hpp avrassembler.hpp avrgenerator.hpp code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), avr32$(O): avr32.cpp avr32.def avr32.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), avr32assembler$(O): avr32assembler.cpp asmassembler.hpp asmchecker.hpp avr32.def avr32.hpp avr32assembler.hpp utilities.hpp)
$(addprefix $(TOOLS), avr32disassembler$(O): avr32disassembler.cpp asmdisassembler.hpp avr32.def avr32.hpp avr32disassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), avr32generator$(O): avr32generator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def avr32.def avr32.hpp avr32assembler.hpp avr32generator.hpp code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), m68k$(O): m68k.cpp m68k.def m68k.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), m68kassembler$(O): m68kassembler.cpp asmassembler.hpp asmchecker.hpp m68k.def m68k.hpp m68kassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), m68kdisassembler$(O): m68kdisassembler.cpp asmdisassembler.hpp m68k.def m68k.hpp m68kdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), m68kgenerator$(O): m68kgenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp m68k.def m68k.hpp m68kassembler.hpp m68kgenerator.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), mibl$(O): mibl.cpp mibl.def mibl.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), miblassembler$(O): miblassembler.cpp asmassembler.hpp asmchecker.hpp mibl.def mibl.hpp miblassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), mibldisassembler$(O): mibldisassembler.cpp asmdisassembler.hpp mibl.def mibl.hpp mibldisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), miblgenerator$(O): miblgenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp mibl.def mibl.hpp miblassembler.hpp miblgenerator.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), mips$(O): mips.cpp mips.def mips.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), mipsassembler$(O): mipsassembler.cpp asmassembler.hpp asmchecker.hpp mips.def mips.hpp mipsassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), mipsdisassembler$(O): mipsdisassembler.cpp asmdisassembler.hpp mips.def mips.hpp mipsdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), mipsgenerator$(O): mipsgenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp mips.def mips.hpp mipsassembler.hpp mipsgenerator.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), mmix$(O): mmix.cpp mmix.def mmix.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), mmixassembler$(O): mmixassembler.cpp asmassembler.hpp asmchecker.hpp asmlexer.hpp assembly.def assembly.hpp diagnostics.hpp mmix.def mmix.hpp mmixassembler.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), mmixdisassembler$(O): mmixdisassembler.cpp asmdisassembler.hpp mmix.def mmix.hpp mmixdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), mmixgenerator$(O): mmixgenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp ieee.hpp layout.hpp mmix.def mmix.hpp mmixassembler.hpp mmixgenerator.hpp object.hpp utilities.hpp)
$(addprefix $(TOOLS), or1k$(O): or1k.cpp object.hpp or1k.def or1k.hpp utilities.hpp)
$(addprefix $(TOOLS), or1kassembler$(O): or1kassembler.cpp asmassembler.hpp asmchecker.hpp or1k.def or1k.hpp or1kassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), or1kdisassembler$(O): or1kdisassembler.cpp asmdisassembler.hpp or1k.def or1k.hpp or1kdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), or1kgenerator$(O): or1kgenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp or1k.def or1k.hpp or1kassembler.hpp or1kgenerator.hpp utilities.hpp)
$(addprefix $(TOOLS), ppc$(O): ppc.cpp object.hpp ppc.def ppc.hpp utilities.hpp)
$(addprefix $(TOOLS), ppcassembler$(O): ppcassembler.cpp asmassembler.hpp asmchecker.hpp ppc.def ppc.hpp ppcassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), ppcdisassembler$(O): ppcdisassembler.cpp asmdisassembler.hpp ppc.def ppc.hpp ppcdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), ppcgenerator$(O): ppcgenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp ppc.def ppc.hpp ppcassembler.hpp ppcgenerator.hpp utilities.hpp)
$(addprefix $(TOOLS), risc$(O): risc.cpp object.hpp risc.def risc.hpp utilities.hpp)
$(addprefix $(TOOLS), riscassembler$(O): riscassembler.cpp asmassembler.hpp asmchecker.hpp risc.def risc.hpp riscassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), riscdisassembler$(O): riscdisassembler.cpp asmdisassembler.hpp risc.def risc.hpp riscdisassembler.hpp utilities.hpp)
$(addprefix $(TOOLS), riscgenerator$(O): riscgenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp risc.def risc.hpp riscassembler.hpp riscgenerator.hpp utilities.hpp)
$(addprefix $(TOOLS), wasm$(O): wasm.cpp ieee.hpp object.hpp utilities.hpp wasm.def wasm.hpp)
$(addprefix $(TOOLS), wasmassembler$(O): wasmassembler.cpp asmassembler.hpp asmchecker.hpp utilities.hpp wasm.def wasm.hpp wasmassembler.hpp)
$(addprefix $(TOOLS), wasmdisassembler$(O): wasmdisassembler.cpp asmdisassembler.hpp utilities.hpp wasm.def wasm.hpp wasmdisassembler.hpp)
$(addprefix $(TOOLS), wasmgenerator$(O): wasmgenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp utilities.hpp wasm.def wasm.hpp wasmassembler.hpp wasmgenerator.hpp)
$(addprefix $(TOOLS), xtensa$(O): xtensa.cpp object.hpp utilities.hpp xtensa.def xtensa.hpp)
$(addprefix $(TOOLS), xtensaassembler$(O): xtensaassembler.cpp asmassembler.hpp asmchecker.hpp utilities.hpp xtensa.def xtensa.hpp xtensaassembler.hpp)
$(addprefix $(TOOLS), xtensadisassembler$(O): xtensadisassembler.cpp asmdisassembler.hpp utilities.hpp xtensa.def xtensa.hpp xtensadisassembler.hpp)
$(addprefix $(TOOLS), xtensagenerator$(O): xtensagenerator.cpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmgeneratorcontext.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def code.def code.hpp debugging.hpp diagnostics.hpp layout.hpp object.hpp utilities.hpp xtensa.def xtensa.hpp xtensaassembler.hpp xtensagenerator.hpp)
$(addprefix $(TOOLS), cppprep$(O): cppprep.drv charset.hpp cpp.def cpplexer.hpp cpppreprocessor.hpp diagnostics.hpp driver.hpp error.hpp format.hpp position.hpp preprocessor.cpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cppprint$(O): cppprint.drv charset.hpp cpp.def cpp.hpp cppchecker.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp cppprinter.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp position.hpp printer.cpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falprint$(O): falprint.drv charset.hpp diagnostics.hpp driver.hpp error.hpp fallexer.hpp falparser.hpp falprinter.hpp false.def false.hpp format.hpp layout.hpp position.hpp printer.cpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp)
$(addprefix $(TOOLS), obprint$(O): obprint.drv charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp oberon.def oberon.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp printer.cpp rangeset.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp)
$(addprefix $(TOOLS), asmprint$(O): asmprint.drv asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp printer.cpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdcheck$(O): cdcheck.drv asmchecker.hpp asmlexer.hpp asmparser.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp checker.cpp code.def code.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cppcheck$(O): cppcheck.drv charset.hpp checker.cpp cpp.def cpp.hpp cppchecker.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp position.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falcheck$(O): falcheck.drv charset.hpp checker.cpp diagnostics.hpp driver.hpp error.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp position.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp)
$(addprefix $(TOOLS), obcheck$(O): obcheck.drv charset.hpp checker.cpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp oberon.def oberon.hpp obinterpreter.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppdump$(O): cppdump.drv charset.hpp cpp.def cpp.hpp cppchecker.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp cppserializer.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp position.hpp serializer.cpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp xml.hpp xmlprinter.hpp)
$(addprefix $(TOOLS), faldump$(O): faldump.drv charset.hpp diagnostics.hpp driver.hpp error.hpp fallexer.hpp falparser.hpp false.def false.hpp falserializer.hpp format.hpp layout.hpp position.hpp serializer.cpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp xml.hpp xmlprinter.hpp)
$(addprefix $(TOOLS), obdump$(O): obdump.drv charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp oberon.def oberon.hpp obinterpreter.hpp oblexer.hpp obparser.hpp obprinter.hpp obserializer.hpp position.hpp rangeset.hpp serializer.cpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp xml.hpp xmlprinter.hpp)
$(addprefix $(TOOLS), cdrun$(O): cdrun.drv asmchecker.hpp asmlexer.hpp asmparser.hpp assembly.def assembly.hpp cdchecker.hpp cdinterpreter.hpp charset.hpp code.def code.hpp diagnostics.hpp driver.hpp environment.hpp error.hpp format.hpp interpreter.cpp layout.hpp object.hpp position.hpp stdcharset.hpp stdenvironment.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cpprun$(O): cpprun.drv charset.hpp cpp.def cpp.hpp cppchecker.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp diagnostics.hpp driver.hpp environment.hpp error.hpp format.hpp interpreter.cpp layout.hpp position.hpp stdcharset.hpp stdenvironment.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falrun$(O): falrun.drv charset.hpp diagnostics.hpp driver.hpp environment.hpp error.hpp falinterpreter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp interpreter.cpp layout.hpp position.hpp stdcharset.hpp stdenvironment.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp)
$(addprefix $(TOOLS), obrun$(O): obrun.drv charset.hpp diagnostics.hpp driver.hpp environment.hpp error.hpp format.hpp interpreter.cpp layout.hpp obchecker.hpp oberon.def oberon.hpp obinterpreter.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp stdenvironment.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp)
$(addprefix $(TOOLS), falcpp$(O): falcpp.drv charset.hpp diagnostics.hpp driver.hpp error.hpp fallexer.hpp falparser.hpp false.def false.hpp faltranspiler.hpp format.hpp layout.hpp position.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp transpiler.cpp)
$(addprefix $(TOOLS), obcpp$(O): obcpp.drv charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp oberon.def oberon.hpp obinterpreter.hpp oblexer.hpp obparser.hpp obprinter.hpp obtranspiler.hpp position.hpp rangeset.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp transpiler.cpp utilities.hpp)
$(addprefix $(TOOLS), dochtml$(O): dochtml.drv diagnostics.hpp docchecker.hpp dochtmlformatter.hpp docparser.hpp documentation.hpp driver.hpp error.hpp format.hpp generator.cpp layout.hpp position.hpp stdlayout.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), doclatex$(O): doclatex.drv diagnostics.hpp docchecker.hpp doclatexformatter.hpp docparser.hpp documentation.hpp driver.hpp error.hpp format.hpp generator.cpp layout.hpp position.hpp stdlayout.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), cppdoc$(O): cppdoc.drv charset.hpp cpp.def cpp.hpp cppchecker.hpp cppextractor.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp diagnostics.hpp docchecker.hpp docprinter.hpp documentation.hpp driver.hpp error.hpp format.hpp generator.cpp layout.hpp position.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cpphtml$(O): cpphtml.drv charset.hpp cpp.def cpp.hpp cppchecker.hpp cppextractor.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp diagnostics.hpp docchecker.hpp dochtmlformatter.hpp documentation.hpp driver.hpp error.hpp format.hpp generator.cpp layout.hpp position.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cpplatex$(O): cpplatex.drv charset.hpp cpp.def cpp.hpp cppchecker.hpp cppextractor.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp diagnostics.hpp docchecker.hpp doclatexformatter.hpp documentation.hpp driver.hpp error.hpp format.hpp generator.cpp layout.hpp position.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obdoc$(O): obdoc.drv charset.hpp diagnostics.hpp docchecker.hpp docprinter.hpp documentation.hpp driver.hpp error.hpp format.hpp generator.cpp layout.hpp obchecker.hpp oberon.def oberon.hpp obextractor.hpp obinterpreter.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp)
$(addprefix $(TOOLS), obhtml$(O): obhtml.drv charset.hpp diagnostics.hpp docchecker.hpp dochtmlformatter.hpp documentation.hpp driver.hpp error.hpp format.hpp generator.cpp layout.hpp obchecker.hpp oberon.def oberon.hpp obextractor.hpp obinterpreter.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp)
$(addprefix $(TOOLS), oblatex$(O): oblatex.drv charset.hpp diagnostics.hpp docchecker.hpp doclatexformatter.hpp documentation.hpp driver.hpp error.hpp format.hpp generator.cpp layout.hpp obchecker.hpp oberon.def oberon.hpp obextractor.hpp obinterpreter.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp structurepool.hpp)
$(addprefix $(TOOLS), cdamd16$(O): cdamd16.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdamd32$(O): cdamd32.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdamd64$(O): cdamd64.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdarma32$(O): cdarma32.drv arma32assembler.hpp arma32generator.hpp armgenerator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdarma64$(O): cdarma64.drv arma32assembler.hpp arma64assembler.hpp arma64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdarmt32$(O): cdarmt32.drv arma32assembler.hpp armgenerator.hpp armt32assembler.hpp armt32generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdarmt32fpe$(O): cdarmt32fpe.drv arma32assembler.hpp armgenerator.hpp armt32assembler.hpp armt32generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdavr$(O): cdavr.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp avrassembler.hpp avrgenerator.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdavr32$(O): cdavr32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp avr32assembler.hpp avr32generator.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdm68k$(O): cdm68k.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp m68kassembler.hpp m68kgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdmibl$(O): cdmibl.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp miblassembler.hpp miblgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdmips32$(O): cdmips32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp mips.def mips.hpp mipsassembler.hpp mipsgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp utilities.hpp)
$(addprefix $(TOOLS), cdmips64$(O): cdmips64.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp mips.def mips.hpp mipsassembler.hpp mipsgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp utilities.hpp)
$(addprefix $(TOOLS), cdmmix$(O): cdmmix.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp mmixassembler.hpp mmixgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdor1k$(O): cdor1k.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp or1kassembler.hpp or1kgenerator.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdppc32$(O): cdppc32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp ppc.def ppc.hpp ppcassembler.hpp ppcgenerator.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdppc64$(O): cdppc64.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp ppc.def ppc.hpp ppcassembler.hpp ppcgenerator.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdrisc$(O): cdrisc.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp riscassembler.hpp riscgenerator.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), cdwasm$(O): cdwasm.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp wasmassembler.hpp wasmgenerator.hpp)
$(addprefix $(TOOLS), cdxtensa$(O): cdxtensa.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmlexer.hpp asmparser.hpp asmprinter.hpp assembly.def assembly.hpp cdchecker.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp xtensaassembler.hpp xtensagenerator.hpp)
$(addprefix $(TOOLS), cppcode$(O): cppcode.drv asmchecker.hpp asmparser.hpp cdchecker.hpp cdemitter.hpp cdgenerator.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppamd16$(O): cppamd16.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppamd32$(O): cppamd32.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppamd64$(O): cppamd64.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cpparma32$(O): cpparma32.drv arma32assembler.hpp arma32generator.hpp armgenerator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cpparma64$(O): cpparma64.drv arma32assembler.hpp arma64assembler.hpp arma64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cpparmt32$(O): cpparmt32.drv arma32assembler.hpp armgenerator.hpp armt32assembler.hpp armt32generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cpparmt32fpe$(O): cpparmt32fpe.drv arma32assembler.hpp armgenerator.hpp armt32assembler.hpp armt32generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppavr$(O): cppavr.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp avrassembler.hpp avrgenerator.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppavr32$(O): cppavr32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp avr32assembler.hpp avr32generator.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppm68k$(O): cppm68k.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp m68kassembler.hpp m68kgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppmibl$(O): cppmibl.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp miblassembler.hpp miblgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppmips32$(O): cppmips32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp mips.def mips.hpp mipsassembler.hpp mipsgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), cppmips64$(O): cppmips64.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp mips.def mips.hpp mipsassembler.hpp mipsgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), cppmmix$(O): cppmmix.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp mmixassembler.hpp mmixgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppor1k$(O): cppor1k.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp or1kassembler.hpp or1kgenerator.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppppc32$(O): cppppc32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp ppc.def ppc.hpp ppcassembler.hpp ppcgenerator.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppppc64$(O): cppppc64.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp ppc.def ppc.hpp ppcassembler.hpp ppcgenerator.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cpprisc$(O): cpprisc.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp riscassembler.hpp riscgenerator.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), cppwasm$(O): cppwasm.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp wasmassembler.hpp wasmgenerator.hpp)
$(addprefix $(TOOLS), cppxtensa$(O): cppxtensa.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp cpp.def cpp.hpp cppchecker.hpp cppemitter.hpp cppinterpreter.hpp cpplexer.hpp cppparser.hpp cpppreprocessor.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp xtensaassembler.hpp xtensagenerator.hpp)
$(addprefix $(TOOLS), falcode$(O): falcode.drv asmchecker.hpp asmparser.hpp cdchecker.hpp cdemitter.hpp cdgenerator.hpp charset.hpp code.def code.hpp compiler.cpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falamd16$(O): falamd16.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falamd32$(O): falamd32.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falamd64$(O): falamd64.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falarma32$(O): falarma32.drv arma32assembler.hpp arma32generator.hpp armgenerator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falarma64$(O): falarma64.drv arma32assembler.hpp arma64assembler.hpp arma64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falarmt32$(O): falarmt32.drv arma32assembler.hpp armgenerator.hpp armt32assembler.hpp armt32generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falarmt32fpe$(O): falarmt32fpe.drv arma32assembler.hpp armgenerator.hpp armt32assembler.hpp armt32generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falavr$(O): falavr.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp avrassembler.hpp avrgenerator.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falavr32$(O): falavr32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp avr32assembler.hpp avr32generator.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falm68k$(O): falm68k.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp m68kassembler.hpp m68kgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falmibl$(O): falmibl.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp miblassembler.hpp miblgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falmips32$(O): falmips32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp mips.def mips.hpp mipsassembler.hpp mipsgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), falmips64$(O): falmips64.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp mips.def mips.hpp mipsassembler.hpp mipsgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), falmmix$(O): falmmix.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp mmixassembler.hpp mmixgenerator.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falor1k$(O): falor1k.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp or1kassembler.hpp or1kgenerator.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falppc32$(O): falppc32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp ppc.def ppc.hpp ppcassembler.hpp ppcgenerator.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falppc64$(O): falppc64.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp ppc.def ppc.hpp ppcassembler.hpp ppcgenerator.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falrisc$(O): falrisc.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp riscassembler.hpp riscgenerator.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), falwasm$(O): falwasm.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp wasmassembler.hpp wasmgenerator.hpp)
$(addprefix $(TOOLS), falxtensa$(O): falxtensa.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp falemitter.hpp fallexer.hpp falparser.hpp false.def false.hpp format.hpp layout.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp xtensaassembler.hpp xtensagenerator.hpp)
$(addprefix $(TOOLS), obcode$(O): obcode.drv asmchecker.hpp asmparser.hpp cdchecker.hpp cdemitter.hpp cdgenerator.hpp charset.hpp code.def code.hpp compiler.cpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp stdlayout.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obamd16$(O): obamd16.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obamd32$(O): obamd32.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obamd64$(O): obamd64.drv amd64.def amd64.hpp amd64assembler.hpp amd64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obarma32$(O): obarma32.drv arma32assembler.hpp arma32generator.hpp armgenerator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obarma64$(O): obarma64.drv arma32assembler.hpp arma64assembler.hpp arma64generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obarmt32$(O): obarmt32.drv arma32assembler.hpp armgenerator.hpp armt32assembler.hpp armt32generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obarmt32fpe$(O): obarmt32fpe.drv arma32assembler.hpp armgenerator.hpp armt32assembler.hpp armt32generator.hpp asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obavr$(O): obavr.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp avrassembler.hpp avrgenerator.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obavr32$(O): obavr32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp avr32assembler.hpp avr32generator.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obm68k$(O): obm68k.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp m68kassembler.hpp m68kgenerator.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obmibl$(O): obmibl.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp miblassembler.hpp miblgenerator.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obmips32$(O): obmips32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp mips.def mips.hpp mipsassembler.hpp mipsgenerator.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), obmips64$(O): obmips64.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp mips.def mips.hpp mipsassembler.hpp mipsgenerator.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp utilities.hpp)
$(addprefix $(TOOLS), obmmix$(O): obmmix.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp mmixassembler.hpp mmixgenerator.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obor1k$(O): obor1k.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp or1kassembler.hpp or1kgenerator.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obppc32$(O): obppc32.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp ppc.def ppc.hpp ppcassembler.hpp ppcgenerator.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obppc64$(O): obppc64.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp ppc.def ppc.hpp ppcassembler.hpp ppcgenerator.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obrisc$(O): obrisc.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp riscassembler.hpp riscgenerator.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp)
$(addprefix $(TOOLS), obwasm$(O): obwasm.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp wasmassembler.hpp wasmgenerator.hpp)
$(addprefix $(TOOLS), obxtensa$(O): obxtensa.drv asmassembler.hpp asmchecker.hpp asmgenerator.hpp asmparser.hpp asmprinter.hpp cdchecker.hpp cdemitter.hpp charset.hpp code.def code.hpp compiler.cpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp layout.hpp obchecker.hpp obemitter.hpp oberon.def oberon.hpp obinterpreter.hpp object.hpp oblexer.hpp obparser.hpp obprinter.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp structurepool.hpp xtensaassembler.hpp xtensagenerator.hpp)
$(addprefix $(TOOLS), dbgdwarf$(O): dbgdwarf.drv charset.hpp converter.cpp dbgconverter.hpp dbgdwarfconverter.hpp debugging.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), amd16asm$(O): amd16asm.drv amd64.def amd64.hpp amd64assembler.hpp asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), amd32asm$(O): amd32asm.drv amd64.def amd64.hpp amd64assembler.hpp asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), amd64asm$(O): amd64asm.drv amd64.def amd64.hpp amd64assembler.hpp asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), arma32asm$(O): arma32asm.drv arma32assembler.hpp asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), arma64asm$(O): arma64asm.drv arma32assembler.hpp arma64assembler.hpp asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), armt32asm$(O): armt32asm.drv arma32assembler.hpp armt32assembler.hpp asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), avrasm$(O): avrasm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp avrassembler.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), avr32asm$(O): avr32asm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp avr32assembler.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), m68kasm$(O): m68kasm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp m68kassembler.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), miblasm$(O): miblasm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp miblassembler.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), mips32asm$(O): mips32asm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp mips.def mips.hpp mipsassembler.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp utilities.hpp)
$(addprefix $(TOOLS), mips64asm$(O): mips64asm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp mips.def mips.hpp mipsassembler.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp utilities.hpp)
$(addprefix $(TOOLS), mmixasm$(O): mmixasm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp mmixassembler.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), or1kasm$(O): or1kasm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp or1kassembler.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), ppc32asm$(O): ppc32asm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp ppc.def ppc.hpp ppcassembler.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), ppc64asm$(O): ppc64asm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp ppc.def ppc.hpp ppcassembler.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), riscasm$(O): riscasm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp riscassembler.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp)
$(addprefix $(TOOLS), wasmasm$(O): wasmasm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp wasmassembler.hpp)
$(addprefix $(TOOLS), xtensaasm$(O): xtensaasm.drv asmassembler.hpp asmchecker.hpp asmlexer.hpp asmparser.hpp assembler.cpp assembly.def assembly.hpp charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp stringpool.hpp xtensaassembler.hpp)
$(addprefix $(TOOLS), amd16dism$(O): amd16dism.drv amd64.def amd64.hpp amd64disassembler.hpp asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), amd32dism$(O): amd32dism.drv amd64.def amd64.hpp amd64disassembler.hpp asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), amd64dism$(O): amd64dism.drv amd64.def amd64.hpp amd64disassembler.hpp asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), arma32dism$(O): arma32dism.drv arma32disassembler.hpp asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), arma64dism$(O): arma64dism.drv arma64disassembler.hpp asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), armt32dism$(O): armt32dism.drv armt32disassembler.hpp asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), avrdism$(O): avrdism.drv asmdisassembler.hpp avrdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), avr32dism$(O): avr32dism.drv asmdisassembler.hpp avr32disassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), m68kdism$(O): m68kdism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp m68kdisassembler.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), mibldism$(O): mibldism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp mibldisassembler.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), mips32dism$(O): mips32dism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp mips.def mips.hpp mipsdisassembler.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp utilities.hpp)
$(addprefix $(TOOLS), mips64dism$(O): mips64dism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp mips.def mips.hpp mipsdisassembler.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp utilities.hpp)
$(addprefix $(TOOLS), mmixdism$(O): mmixdism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp mmixdisassembler.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), or1kdism$(O): or1kdism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp or1kdisassembler.hpp position.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), ppc32dism$(O): ppc32dism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp ppc.def ppc.hpp ppcdisassembler.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), ppc64dism$(O): ppc64dism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp ppc.def ppc.hpp ppcdisassembler.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), riscdism$(O): riscdism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp riscdisassembler.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), wasmdism$(O): wasmdism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp wasmdisassembler.hpp)
$(addprefix $(TOOLS), xtensadism$(O): xtensadism.drv asmdisassembler.hpp charset.hpp diagnostics.hpp disassembler.cpp driver.hpp error.hpp format.hpp object.hpp position.hpp stdcharset.hpp strdiagnostics.hpp xtensadisassembler.hpp)
$(addprefix $(TOOLS), linklib$(O): linklib.drv charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp linker.cpp object.hpp objlinker.hpp objmap.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), linkbin$(O): linkbin.drv charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp linker.cpp object.hpp objlinker.hpp objmap.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), linkmem$(O): linkmem.drv charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp linker.cpp object.hpp objlinker.hpp objmap.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), linkhex$(O): linkhex.drv charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp linker.cpp object.hpp objhexfile.hpp objlinker.hpp objmap.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp)
$(addprefix $(TOOLS), linkprg$(O): linkprg.drv charset.hpp diagnostics.hpp driver.hpp error.hpp format.hpp linker.cpp object.hpp objlinker.hpp objmap.hpp position.hpp rangeset.hpp stdcharset.hpp strdiagnostics.hpp utilities.hpp)
$(addprefix $(UTILITIES), depwalk$(O): depwalk.cpp)
$(addprefix $(UTILITIES), ecsd$(O): ecsd.cpp system.hpp)
$(addprefix $(UTILITIES), hexdump$(O): hexdump.cpp system.hpp)
$(addprefix $(UTILITIES), linecheck$(O): linecheck.cpp)
$(addprefix $(UTILITIES), regtest$(O): regtest.cpp system.hpp)
$(addprefix $(UTILITIES), freebsd$(O): freebsd.cpp system.hpp)
$(addprefix $(UTILITIES), linux$(O): linux.cpp system.hpp)
$(addprefix $(UTILITIES), osx$(O): osx.cpp system.hpp)
$(addprefix $(UTILITIES), posix$(O): posix.cpp system.hpp)
$(addprefix $(UTILITIES), windows$(O): windows.cpp system.hpp)
$(addprefix $(TOOLS), linkhex$(PRG): $(addsuffix $(O), objhexfile))
$(addprefix $(TOOLS), mapsearch$(PRG): $(addsuffix $(O), object objmap))
$(addprefix $(TOOLS), docprint$(PRG): $(addsuffix $(O), documentation doclexer docparser docprinter))
$(addprefix $(TOOLS), doccheck$(PRG): $(addsuffix $(O), documentation doclexer docparser docchecker))
$(addprefix $(TOOLS), cdcheck$(PRG): $(addsuffix $(O), object code cdchecker assembly asmlexer asmparser asmchecker))
$(addprefix $(TOOLS), cdopt$(PRG): $(addsuffix $(O), object code cdchecker cdoptimizer cdgenerator assembly asmlexer asmparser asmchecker))
$(addprefix $(TOOLS), cdrun$(PRG): $(addsuffix $(O), object code cdchecker cdinterpreter assembly asmlexer asmparser asmchecker))
$(addprefix $(TOOLS), cppprep$(PRG): $(addsuffix $(O), cpplexer cpppreprocessor))
$(addprefix $(TOOLS), cppprint$(PRG): $(addsuffix $(O), cpp cpplexer cpppreprocessor cppparser cppprinter cppchecker cppinterpreter))
$(addprefix $(TOOLS), cppcheck$(PRG): $(addsuffix $(O), cpp cpplexer cpppreprocessor cppparser cppprinter cppchecker cppinterpreter))
$(addprefix $(TOOLS), cppdump$(PRG): $(addsuffix $(O), cpp cpplexer cpppreprocessor cppparser cppprinter cppchecker cppinterpreter cppserializer))
$(addprefix $(TOOLS), cpprun$(PRG): $(addsuffix $(O), cpp cpplexer cpppreprocessor cppparser cppprinter cppchecker cppinterpreter))
$(addprefix $(TOOLS), falprint$(PRG): $(addsuffix $(O), false fallexer falparser falprinter))
$(addprefix $(TOOLS), falcheck$(PRG): $(addsuffix $(O), false fallexer falparser))
$(addprefix $(TOOLS), faldump$(PRG): $(addsuffix $(O), false fallexer falparser falserializer))
$(addprefix $(TOOLS), falrun$(PRG): $(addsuffix $(O), false fallexer falparser falinterpreter))
$(addprefix $(TOOLS), falcpp$(PRG): $(addsuffix $(O), false fallexer falparser faltranspiler))
$(addprefix $(TOOLS), obprint$(PRG): $(addsuffix $(O), oberon oblexer obparser obprinter))
$(addprefix $(TOOLS), obcheck$(PRG): $(addsuffix $(O), oberon oblexer obparser obprinter obchecker obinterpreter))
$(addprefix $(TOOLS), obdump$(PRG): $(addsuffix $(O), oberon oblexer obparser obprinter obchecker obinterpreter obserializer))
$(addprefix $(TOOLS), obrun$(PRG): $(addsuffix $(O), oberon oblexer obparser obprinter obchecker obinterpreter))
$(addprefix $(TOOLS), obcpp$(PRG): $(addsuffix $(O), oberon oblexer obparser obprinter obchecker obinterpreter obtranspiler))
$(addprefix $(TOOLS), asmprint$(PRG): $(addsuffix $(O), object assembly asmlexer asmparser asmprinter))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(SERIALIZERS)): $(addsuffix $(O), xml xmlprinter xmlserializer))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter cpp%, $(GENERATORS))): $(addsuffix $(O), cpp cpplexer cpppreprocessor cppparser cppprinter cppchecker cppinterpreter cppextractor docextractor))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter ob%, $(GENERATORS))): $(addsuffix $(O), oberon oblexer obparser obprinter obchecker obinterpreter obextractor docextractor))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %doc, $(GENERATORS))): $(addsuffix $(O), docprinter))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %html, $(GENERATORS))): $(addsuffix $(O), dochtmlformatter))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %latex, $(GENERATORS))): $(addsuffix $(O), doclatexformatter))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(GENERATORS)): $(addsuffix $(O), documentation doclexer docparser docchecker))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter cd%, $(COMPILERS))): $(addsuffix $(O), cdchecker))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter cpp%, $(COMPILERS))): $(addsuffix $(O), cpp cpplexer cpppreprocessor cppparser cppprinter cppchecker cppinterpreter cppemitter cdemitter))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter fa%, $(COMPILERS))): $(addsuffix $(O), false fallexer falparser falemitter cdemitter))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter ob%, $(COMPILERS))): $(addsuffix $(O), oberon oblexer obparser obprinter obchecker obinterpreter obemitter cdemitter))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %code, $(COMPILERS))): $(addsuffix $(O), cdgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %amd16 %amd32 %amd64, $(COMPILERS))): $(addsuffix $(O), amd64 amd64assembler amd64generator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %arma32, $(COMPILERS))): $(addsuffix $(O), arm arma32 arma32assembler armgenerator arma32generator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %arma64, $(COMPILERS))): $(addsuffix $(O), arm arma32 arma32assembler arma64 arma64assembler arma64generator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %armt32 %armt32fpe, $(COMPILERS))): $(addsuffix $(O), arm arma32 arma32assembler armt32 armt32assembler armgenerator armt32generator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %avr, $(COMPILERS))): $(addsuffix $(O), avr avrassembler avrgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %avr32, $(COMPILERS))): $(addsuffix $(O), avr32 avr32assembler avr32generator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %m68k, $(COMPILERS))): $(addsuffix $(O), m68k m68kassembler m68kgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %mibl, $(COMPILERS))): $(addsuffix $(O), mibl miblassembler miblgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %mips32 %mips64, $(COMPILERS))): $(addsuffix $(O), mips mipsassembler mipsgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %mmix, $(COMPILERS))): $(addsuffix $(O), mmix mmixassembler mmixgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %or1k, $(COMPILERS))): $(addsuffix $(O), or1k or1kassembler or1kgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %ppc32 %ppc64, $(COMPILERS))): $(addsuffix $(O), ppc ppcassembler ppcgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %risc, $(COMPILERS))): $(addsuffix $(O), risc riscassembler riscgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %wasm, $(COMPILERS))): $(addsuffix $(O), wasm wasmassembler wasmgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %xtensa, $(COMPILERS))): $(addsuffix $(O), xtensa xtensaassembler xtensagenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter-out %code, $(COMPILERS))): $(addsuffix $(O), asmprinter asmassembler asmgenerator))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(COMPILERS)): $(addsuffix $(O), object debugging code cdchecker assembly asmlexer asmparser asmchecker))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(filter %dwarf, $(CONVERTERS))): $(addsuffix $(O), dbgdwarfconverter))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(CONVERTERS)): $(addsuffix $(O), object debugging dbgconverter asmlexer))
$(addprefix $(TOOLS), $(addsuffix $(PRG), amd16asm amd32asm amd64asm): $(addsuffix $(O), amd64 amd64assembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), arma32asm): $(addsuffix $(O), arm arma32 arma32assembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), arma64asm): $(addsuffix $(O), arm arma32 arma32assembler arma64 arma64assembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), armt32asm): $(addsuffix $(O), arm arma32 arma32assembler armt32 armt32assembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), avrasm): $(addsuffix $(O), avr avrassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), avr32asm): $(addsuffix $(O), avr32 avr32assembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), m68kasm): $(addsuffix $(O), m68k m68kassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), miblasm): $(addsuffix $(O), mibl miblassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), mips32asm mips64asm): $(addsuffix $(O), mips mipsassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), mmixasm): $(addsuffix $(O), mmix mmixassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), or1kasm): $(addsuffix $(O), or1k or1kassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), ppc32asm ppc64asm): $(addsuffix $(O), ppc ppcassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), riscasm): $(addsuffix $(O), risc riscassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), wasmasm): $(addsuffix $(O), wasm wasmassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), xtensaasm): $(addsuffix $(O), xtensa xtensaassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(ASSEMBLERS)): $(addsuffix $(O), object assembly asmlexer asmparser asmchecker asmassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), amd16dism amd32dism amd64dism): $(addsuffix $(O), amd64 amd64disassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), arma32dism): $(addsuffix $(O), arm arma32 arma32disassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), arma64dism): $(addsuffix $(O), arm arma32 arma64 arma64disassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), armt32dism): $(addsuffix $(O), arm arma32 armt32 armt32disassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), avrdism): $(addsuffix $(O), avr avrdisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), avr32dism): $(addsuffix $(O), avr32 avr32disassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), m68kdism): $(addsuffix $(O), m68k m68kdisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), mibldism): $(addsuffix $(O), mibl mibldisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), mips32dism mips64dism): $(addsuffix $(O), mips mipsdisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), mmixdism): $(addsuffix $(O), mmix mmixdisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), or1kdism): $(addsuffix $(O), or1k or1kdisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), ppc32dism ppc64dism): $(addsuffix $(O), ppc ppcdisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), riscdism): $(addsuffix $(O), risc riscdisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), wasmdism): $(addsuffix $(O), wasm wasmdisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), xtensadism): $(addsuffix $(O), xtensa xtensadisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(DISASSEMBLERS)): $(addsuffix $(O), object asmlexer asmdisassembler))
$(addprefix $(TOOLS), $(addsuffix $(PRG), $(LINKERS)): $(addsuffix $(O), object objmap objlinker))
$(addprefix $(UTILITIES), $(addsuffix $(PRG), ecsd hexdump regtest): $(addsuffix $(O), $(basename $(ENVIRONMENT))))
$(addprefix $(TOOLS), $(addsuffix .drv, $(PREPROCESSORS)): preprocessor.cpp)
@echo // $(basename $(notdir $@)) preprocessor driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, LANGUAGE)>> $@
@echo $(call ESC, #)include $(call ESC, ")preprocessor.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(PRINTERS)): printer.cpp)
@echo // $(basename $(notdir $@)) pretty printer driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, LANGUAGE)>> $@
@echo $(call ESC, #)include $(call ESC, ")printer.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(CHECKERS)): checker.cpp)
@echo // $(basename $(notdir $@)) semantic checker driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, LANGUAGE)>> $@
@echo $(call ESC, #)include $(call ESC, ")checker.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(SERIALIZERS)): serializer.cpp)
@echo // $(basename $(notdir $@)) serializer driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, LANGUAGE)>> $@
@echo $(call ESC, #)include $(call ESC, ")serializer.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(INTERPRETERS)): interpreter.cpp)
@echo // $(basename $(notdir $@)) interpreter driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, LANGUAGE)>> $@
@echo $(call ESC, #)include $(call ESC, ")interpreter.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(TRANSPILERS)): transpiler.cpp)
@echo // $(basename $(notdir $@)) transpiler driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, LANGUAGE)>> $@
@echo $(call ESC, #)include $(call ESC, ")transpiler.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(GENERATORS)): generator.cpp)
@echo // $(basename $(notdir $@)) documentation generator driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, EXTRACTOR)>> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, FORMATTER)>> $@
@echo $(call ESC, #)include $(call ESC, ")generator.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(COMPILERS)): compiler.cpp)
@echo // $(basename $(notdir $@)) compiler driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, FRONTEND)>> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, BACKEND)>> $@
@echo $(call ESC, #)$(if $(filter $(TOOLSP)%.drv, $@),undef,define) CODEOPTIMIZER>> $@
@echo $(call ESC, #)$(if $(filter $(TOOLS)fal%.drv $(TOOLSP)%code.drv, $@),undef,define) ASSEMBLYLISTING>> $@
@echo $(call ESC, #)$(if $(filter $(TOOLS)fal%.drv $(TOOLSP)%code.drv, $@),undef,define) DEBUGGINGINFORMATION>> $@
@echo $(call ESC, #)include $(call ESC, ")compiler.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(CONVERTERS)): converter.cpp)
@echo // $(basename $(notdir $@)) converter driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, DEBUGFILEFORMAT)>> $@
@echo $(call ESC, #)include $(call ESC, ")converter.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(ASSEMBLERS)): assembler.cpp)
@echo // $(basename $(notdir $@)) assembler driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, ARCHITECTURE)>> $@
@echo $(call ESC, #)include $(call ESC, ")assembler.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(DISASSEMBLERS)): disassembler.cpp)
@echo // $(basename $(notdir $@)) disassembler driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, ARCHITECTURE)>> $@
@echo $(call ESC, #)include $(call ESC, ")disassembler.cpp$(call ESC, ")>> $@
$(addprefix $(TOOLS), $(addsuffix .drv, $(LINKERS)): linker.cpp)
@echo // $(basename $(notdir $@)) linker driver> $@
@echo $(call ESC, #)define $(call CREATEMACRO, $@, LINKFILEFORMAT)>> $@
@echo $(call ESC, #)include $(call ESC, ")linker.cpp$(call ESC, ")>> $@
$(SRC:.cpp=$(O)): %$(O): %.cpp
@cd $(dir $<) && $(CC) $(CFLAGS) $(notdir $<)
$(DRV:.drv=$(O)): %$(O): %.drv
@cd $(dir $<) && $(CC) $(CFLAGS) $(notdir $<)
$(BIN): %$(PRG): %$(O)
@cd $(dir $<) && $(LD) $(LFLAGS) $(notdir $^)
tools: $(filter $(TOOLSP)%, $(BIN))
utilities: $(filter $(UTILITIESP)%, $(BIN))
# runtime
CURR := $(call DIR,./)
PREV := $(call DIR,../)
RUNTIME := $(call DIR,runtime/)
RUNTIMEP := $(call DIRP,runtime/)
CPPLIBRARY := $(call DIR,libraries/cpp/)
APILIBRARY := $(call DIR,libraries/api/)
OBLIBRARY := $(call DIR,libraries/oberon/)
export ECSINCLUDE := $(call DIR,$(abspath $(CPPLIBRARY))/)
ASM := $(addprefix $(RUNTIME), amd32linuxrun.asm amd64linuxrun.asm arma32linuxrun.asm arma64linuxrun.asm armt32linuxrun.asm armt32fpelinuxrun.asm at32uc3a3run.asm atmega32run.asm atmega328run.asm atmega8515run.asm avrremote.asm bios16run.asm bios32run.asm bios64run.asm dosrun.asm efi32run.asm efi64run.asm mips32linuxrun.asm mmixsimrun.asm or1ksimrun.asm osx32run.asm osx64run.asm riscdiskrun.asm rpi2brun.asm tosapi.asm tosrun.asm webassemblyrun.asm win32run.asm win64run.asm xtensalinuxrun.asm)
OBF := $(ASM:.asm=.obf) $(addprefix $(RUNTIME), $(addsuffix run.obf, $(BACKENDS)) $(foreach TARGET, amd32 amd64 arma32 arma64 armt32 armt32fpe mips32, $(TARGET)libdl.obf $(TARGET)libpthread.obf $(TARGET)libsdl.obf) $(foreach TARGET, 32 64, win$(TARGET)api.obf win$(TARGET)sdl.obf))
LIB := $(addprefix $(RUNTIME), $(addsuffix run.lib, $(addprefix cpp, $(BACKENDS)) $(addprefix ob, $(BACKENDS))))
CPP := $(addprefix $(CPPLIBRARY), cassert.cpp cctype.cpp cmath.cpp csetjmp.cpp cstdio.cpp cstdlib.cpp cstring.cpp ctime.cpp exception.cpp)
HDR := $(addprefix $(CPPLIBRARY), algorithm any array assert.h atomic barrier bit bitset cassert cctype cerrno cfenv cfloat charconv chrono cinttypes climits clocale cmath codecvt compare complex complex.h concepts condition_variable coroutine csetjmp csignal cstdarg cstddef cstdint cstdio cstdlib cstring ctime ctype.h cuchar cwchar cwctype deque errno.h exception execution expected fenv.h filesystem flat_map flat_set float.h format forward_list fstream functional future generator initializer_list inttypes.h iomanip ios iosfwd iostream iso646.h istream iterator latch limits limits.h list locale locale.h map math.h mdspan memory memory_resource mutex new numbers numeric optional ostream print queue random ranges ratio rcu regex scoped_allocator semaphore set setjmp.h shared_mutex signal.h source_location span spanstream sstream stack stacktrace stdalign.h stdarg.h stdatomic.h stdbool.h stddef.h stdexcept stdfloat stdint.h stdio.h stdlib.h stop_token streambuf string string.h string_view strstream syncstream system_error text_encoding tgmath.h thread time.h tuple type_traits typeindex typeinfo uchar.h unordered_map unordered_set utility valarray variant vector version wchar.h wctype.h)
RUN := $(addprefix $(CPPLIBRARY), cctype cmath cstdio cstring)
API := $(addprefix $(APILIBRARY), dlfcn.h SDL.h tos.h windows.h)
OBL := $(addprefix $(OBLIBRARY), obl.arguments.mod obl.hashes.mod obl.basictypes.mod obl.booleans.mod obl.characters.mod obl.devices.mod obl.exceptions.mod obl.files.mod obl.iostreams.mod obl.streams.mod obl.iterators.mod obl.arrays.mod obl.coroutines.mod obl.dynamicarrays.mod obl.generators.mod obl.lists.mod obl.pairs.mod obl.hashmaps.mod obl.functions.mod obl.in.mod obl.math.mod obl.out.mod obl.random.mod obl.sets.mod obl.strings.mod)
EXT := $(addprefix $(OBLIBRARY), api.linux.mod api.pthread.mod api.sdl.mod api.windows.mod)
OAK := $(addprefix $(OBLIBRARY), coroutines.mod in.mod math.mod mathc.mod mathl.mod mathlc.mod out.mod strings.mod xyplane.mod)
MOD := $(OBL) $(EXT) $(OAK)
SYM := $(MOD:.mod=.sym)
$(addprefix $(RUNTIME), arma32linuxrun.obf rpi2brun.obf): $(TOOLS)arma32asm$(PRG)
$(addprefix $(RUNTIME), arma64linuxrun.obf): $(TOOLS)arma64asm$(PRG)
$(addprefix $(RUNTIME), armt32linuxrun.obf armt32fpelinuxrun.obf): $(TOOLS)armt32asm$(PRG)
$(addprefix $(RUNTIME), at32uc3a3run.obf): $(TOOLS)avr32asm$(PRG)
$(addprefix $(RUNTIME), atmega32run.obf atmega328run.obf atmega8515run.obf avrremote.obf): $(TOOLS)avrasm$(PRG)
$(addprefix $(RUNTIME), bios16run.obf dosrun.obf): $(TOOLS)amd16asm$(PRG)
$(addprefix $(RUNTIME), bios32run.obf efi32run.obf osx32run.obf win32run.obf amd32linuxrun.obf): $(TOOLS)amd32asm$(PRG)
$(addprefix $(RUNTIME), bios64run.obf efi64run.obf osx64run.obf win64run.obf amd64linuxrun.obf): $(TOOLS)amd64asm$(PRG)
$(addprefix $(RUNTIME), mips32linuxrun.obf): $(TOOLS)mips32asm$(PRG)
$(addprefix $(RUNTIME), mmixsimrun.obf): $(TOOLS)mmixasm$(PRG)
$(addprefix $(RUNTIME), or1ksimrun.obf): $(TOOLS)or1kasm$(PRG)
$(addprefix $(RUNTIME), riscdiskrun.obf): $(TOOLS)riscasm$(PRG)
$(addprefix $(RUNTIME), tosapi.obf tosrun.obf): $(TOOLS)m68kasm$(PRG)
$(addprefix $(RUNTIME), webassemblyrun.obf): $(TOOLS)wasmasm$(PRG)
$(addprefix $(RUNTIME), xtensalinuxrun.obf): $(TOOLS)xtensaasm$(PRG)
$(ASM:.asm=.obf): %.obf: %.asm
@cd $(RUNTIME) && $(PREV)$(lastword $^) $(notdir $<)
$(RUNTIME)coderun.obf: $(TOOLS)cppcode$(PRG) $(TOOLS)asmprint$(PRG) $(RUNTIME)runtime.cpp $(RUN)
@cd $(RUNTIME) && $(PREV)$< runtime.cpp
@$(TOOLS)asmprint$(PRG) $(RUNTIME)runtime.cod > $@
@$(RM) $(RUNTIME)runtime.cod
$(TARGETS:%=$(RUNTIMEP)%run.obf): $(RUNTIMEP)%run.obf: $(TOOLS)cpp%$(PRG) $(RUNTIME)runtime.cpp $(RUN)
@$(CP) $(RUNTIME)runtime.cpp $(@:.obf=.tmp)
@cd $(RUNTIME) && $(PREV)$< $(notdir $(@:.obf=.tmp))
@$(RM) $(@:.obf=.tmp) $(@:.obf=.lst) $(@:.obf=.dbg)
$(filter $(RUNTIMEP)%libdl.obf, $(OBF)): $(RUNTIMEP)%libdl.obf: $(TOOLS)cpp%$(PRG) $(RUNTIME)libdl.cpp $(RUNTIME)linuxlib.hpp
@$(CP) $(RUNTIME)libdl.cpp $(@:.obf=.tmp)
@cd $(RUNTIME) && $(PREV)$< $(notdir $(@:.obf=.tmp))
@$(RM) $(@:.obf=.tmp) $(@:.obf=.lst) $(@:.obf=.dbg)
$(filter $(RUNTIMEP)%libpthread.obf, $(OBF)): $(RUNTIMEP)%libpthread.obf: $(TOOLS)cpp%$(PRG) $(RUNTIME)libpthread.cpp $(RUNTIME)linuxlib.hpp
@$(CP) $(RUNTIME)libpthread.cpp $(@:.obf=.tmp)
@cd $(RUNTIME) && $(PREV)$< $(notdir $(@:.obf=.tmp))
@$(RM) $(@:.obf=.tmp) $(@:.obf=.lst) $(@:.obf=.dbg)
$(filter $(RUNTIMEP)%libsdl.obf, $(OBF)): $(RUNTIMEP)%libsdl.obf: $(TOOLS)cpp%$(PRG) $(RUNTIME)libsdl.cpp $(RUNTIME)linuxlib.hpp $(RUNTIME)sdl.cpp
@$(CP) $(RUNTIME)libsdl.cpp $(@:.obf=.tmp)
@cd $(RUNTIME) && $(PREV)$< $(notdir $(@:.obf=.tmp))
@$(RM) $(@:.obf=.tmp) $(@:.obf=.lst) $(@:.obf=.dbg)
$(RUNTIME)win32api.obf $(RUNTIME)win64api.obf: $(RUNTIME)win%api.obf: $(TOOLS)cppamd%$(PRG) $(RUNTIME)winapi.cpp $(RUNTIME)winlib.hpp
@$(CP) $(RUNTIME)winapi.cpp $(@:.obf=.tmp)
@cd $(RUNTIME) && $(PREV)$< $(notdir $(@:.obf=.tmp))
@$(RM) $(@:.obf=.tmp) $(@:.obf=.lst) $(@:.obf=.dbg)
$(RUNTIME)win32sdl.obf $(RUNTIME)win64sdl.obf: $(RUNTIME)win%sdl.obf: $(TOOLS)cppamd%$(PRG) $(RUNTIME)winsdl.cpp $(RUNTIME)winlib.hpp $(RUNTIME)sdl.cpp
@$(CP) $(RUNTIME)winsdl.cpp $(@:.obf=.tmp)
@cd $(RUNTIME) && $(PREV)$< $(notdir $(@:.obf=.tmp))
@$(RM) $(@:.obf=.tmp) $(@:.obf=.lst) $(@:.obf=.dbg)
$(RUNTIME)cppcoderun.lib: $(TOOLS)cppcode$(PRG) $(TOOLS)asmprint$(PRG) $(CPP) $(HDR)
@cd $(CPPLIBRARY) && $(PREV)$(PREV)$(TOOLS)cppcode$(PRG) $(notdir $(CPP))
@$(TOOLS)asmprint$(PRG) $(CPP:.cpp=.cod) > $@
@$(RM) $(CPP:.cpp=.cod)
$(TARGETS:%=$(RUNTIME)cpp%run.lib): $(RUNTIME)cpp%run.lib: $(TOOLS)cpp%$(PRG) $(TOOLS)linklib$(PRG) $(CPP) $(HDR)
@cd $(CPPLIBRARY) && $(PREV)$(PREV)$< $(notdir $(CPP))
-@$(RM) $@
@$(TC) $@
@cd $(RUNTIME) && $(PREV)$(TOOLS)linklib$(PRG) $(notdir $@) $(addprefix $(PREV), $(CPP:.cpp=.obf))
@$(RM) $(CPP:.cpp=.lst) $(CPP:.cpp=.dbg) $(CPP:.cpp=.obf)
$(RUNTIME)obcoderun.lib: $(TOOLS)obcode$(PRG) $(TOOLS)asmprint$(PRG) $(MOD)
@cd $(OBLIBRARY) && $(PREV)$(PREV)$(TOOLS)obcode$(PRG) $(notdir $(MOD))
@$(TOOLS)asmprint$(PRG) $(MOD:.mod=.cod) > $@
@$(RM) $(MOD:.mod=.cod)
$(TARGETS:%=$(RUNTIME)ob%run.lib): $(RUNTIME)ob%run.lib: $(TOOLS)ob%$(PRG) $(TOOLS)linklib$(PRG) $(MOD)
@cd $(OBLIBRARY) && $(PREV)$(PREV)$< $(notdir $(MOD))
-@$(RM) $@
@$(TC) $@
@cd $(RUNTIME) && $(PREV)$(TOOLS)linklib$(PRG) $(notdir $@) $(addprefix $(PREV), $(MOD:.mod=.obf))
@$(RM) $(MOD:.mod=.lst) $(MOD:.mod=.dbg) $(MOD:.mod=.obf)
ifeq "$(filter %target install $(RUNTIME)cpp%run.lib $(RUNTIME)ob%run.lib,$(MAKECMDGOALS))" ""
$(foreach TARGET, $(TARGETS), $(eval $(TARGET:%=$(RUNTIME)cpp%run.lib): | $(word $(call FINDMATCH, $(TARGETS), $(TARGET)), $(RUNTIME)cppcoderun.lib $(TARGETS:%=$(RUNTIME)cpp%run.lib))))
$(foreach TARGET, $(TARGETS), $(eval $(TARGET:%=$(RUNTIME)ob%run.lib): | $(word $(call FINDMATCH, $(TARGETS), $(TARGET)), $(RUNTIME)obcoderun.lib $(TARGETS:%=$(RUNTIME)ob%run.lib))))
else
.NOTPARALLEL:
endif
$(SYM): %.sym: %.mod $(TOOLS)obcheck$(PRG)
@cd $(OBLIBRARY) && $(PREV)$(PREV)$(TOOLS)obcheck$(PRG) $(notdir $<)
$(addprefix $(OBLIBRARY), coroutines.sym: obl.coroutines.sym)
$(addprefix $(OBLIBRARY), math.sym mathc.sym mathl.sym mathlc.sym: obl.math.sym)
$(addprefix $(OBLIBRARY), obl.arrays.sym: obl.iterators.sym)
$(addprefix $(OBLIBRARY), obl.basictypes.sym: obl.hashes.sym)
$(addprefix $(OBLIBRARY), obl.coroutines.sym: obl.exceptions.sym)
$(addprefix $(OBLIBRARY), obl.dynamicarrays.sym: obl.arrays.sym obl.exceptions.sym obl.iterators.sym)
$(addprefix $(OBLIBRARY), obl.files.sym: obl.devices.sym)
$(addprefix $(OBLIBRARY), obl.functions.sym: obl.generators.sym obl.iterators.sym)
$(addprefix $(OBLIBRARY), obl.generators.sym: obl.coroutines.sym)
$(addprefix $(OBLIBRARY), obl.hashmaps.sym: obl.exceptions.sym obl.iterators.sym obl.pairs.sym obl.lists.sym)
$(addprefix $(OBLIBRARY), obl.iostreams.sym: obl.devices.sym obl.files.sym)
$(addprefix $(OBLIBRARY), obl.lists.sym: obl.exceptions.sym obl.iterators.sym)
$(addprefix $(OBLIBRARY), obl.out.sym: obl.math.sym)
$(addprefix $(OBLIBRARY), xyplane.sym: api.sdl.sym)
runtime: $(OBF) $(LIB) $(SYM)
# documentation
DOCUMENTATION := $(call DIR,documentation/)
DOCUMENTATIONP := $(call DIRP,documentation/)
TEX := $(addprefix $(DOCUMENTATION), manual.tex guide.tex cpp.tex false.tex oberon.tex assembly.tex amd64.tex arm.tex avr.tex avr32.tex m68k.tex mibl.tex mips.tex mmix.tex or1k.tex ppc.tex risc.tex wasm.tex xtensa.tex documentation.tex debugging.tex code.tex object.tex material.tex overview.tex implementation.tex)
SET := $(addprefix $(DOCUMENTATION), amd64.set arm.set arma32.set arma64.set avr.set avr32.set m68k.set mibl.set mips.set mmix.set or1k.set ppc.set risc.set wasm.set xtensa.set code.set)
DOC := $(addprefix $(DOCUMENTATION), cpplibrary.doc oblibrary.doc oaklibrary.doc)
PDF := $(TEX:.tex=.pdf)
$(DOCUMENTATION)cpplibrary.doc: $(TOOLS)cpplatex$(PRG) $(CPP)
@cd $(CPPLIBRARY) && $(PREV)$(PREV)$(TOOLS)cpplatex$(PRG) $(notdir $(CPP))
@$(CP) $(firstword $(CPP:.cpp=.tex)) $@
@$(RM) $(firstword $(CPP:.cpp=.tex))
$(DOCUMENTATION)oblibrary.doc: $(TOOLS)obcheck$(PRG) $(TOOLS)oblatex$(PRG) $(OBL)
@cd $(OBLIBRARY) && $(PREV)$(PREV)$(TOOLS)obcheck$(PRG) $(notdir $(OBL))
@cd $(OBLIBRARY) && $(PREV)$(PREV)$(TOOLS)oblatex$(PRG) $(sort $(notdir $(OBL)))
@$(CP) $(firstword $(sort $(OBL:.mod=.tex))) $@
@$(RM) $(firstword $(sort $(OBL:.mod=.tex)))
$(DOCUMENTATION)oaklibrary.doc: $(TOOLS)obcheck$(PRG) $(TOOLS)oblatex$(PRG) $(EXT) $(OAK)
@cd $(OBLIBRARY) && $(PREV)$(PREV)$(TOOLS)obcheck$(PRG) $(notdir $(EXT) $(OAK))
@cd $(OBLIBRARY) && $(PREV)$(PREV)$(TOOLS)oblatex$(PRG) $(sort $(notdir $(OAK)))
@$(CP) $(firstword $(sort $(OAK:.mod=.tex))) $@
@$(RM) $(firstword $(sort $(OAK:.mod=.tex)))
$(SET): $(DOCUMENTATIONP)%.set: $(DOCUMENTATIONP)%.tab $(TOOLSP)%.def $(TOOLS)cppprep$(PRG)
@$(TOOLS)cppprep$(PRG) $< > $@
$(PDF): $(DOCUMENTATIONP)%.pdf: $(DOCUMENTATIONP)%.tex $(DOCUMENTATION)utilities.tex $(DOCUMENTATION)references.bib
@cd $(DOCUMENTATION) && pdflatex -interaction batchmode -no-shell-escape -file-line-error -halt-on-error -draftmode $(basename $(notdir $<)) > $(NUL)
@$(if $(filter $(basename $(notdir $<)), manual), cd $(DOCUMENTATION) && makeindex -q $(basename $(notdir $<)) && makeindex -q tools && makeindex -q library && makeindex -q runtime && makeindex -q environment)
@cd $(DOCUMENTATION) && bibtex $(basename $(notdir $<)) > $(NUL)
@cd $(DOCUMENTATION) && pdflatex -interaction batchmode -no-shell-escape -file-line-error -halt-on-error -draftmode $(basename $(notdir $<)) > $(NUL)
@cd $(DOCUMENTATION) && pdflatex -interaction batchmode -no-shell-escape -file-line-error -halt-on-error $(basename $(notdir $<)) > $(NUL)
@cd $(DOCUMENTATION) && $(RM) $(addprefix $(basename $(notdir $<)), .aux .bbl .blg .idx .ilg .ind .lof .log .lot .nav .out .snm .tmb .toc .upa .upb .vrb)
@$(if $(filter $(basename $(notdir $<)), manual), cd $(DOCUMENTATION) && $(RM) $(addprefix tools, .idx .ilg .ind) $(addprefix library, .idx .ilg .ind) $(addprefix runtime, .idx .ilg .ind) $(addprefix environment, .idx .ilg .ind))
$(filter $(SET:.set=.pdf), $(PDF)): %.pdf: %.set
$(addprefix $(DOCUMENTATION), cpp.pdf): $(DOCUMENTATION)cpplibrary.doc
$(addprefix $(DOCUMENTATION), oberon.pdf): $(DOCUMENTATION)oblibrary.doc $(DOCUMENTATION)oaklibrary.doc
$(addprefix $(DOCUMENTATION), assembly.pdf): $(SET)
$(addprefix $(DOCUMENTATION), arm.pdf): $(addprefix $(DOCUMENTATION), arma32.set arma64.set)
$(addprefix $(DOCUMENTATION), manual.pdf material.pdf): $(addprefix $(DOCUMENTATION), overview.pdf implementation.pdf)
$(addprefix $(DOCUMENTATION), manual.pdf): $(DOC) $(SET) $(TEX) $(addprefix $(DOCUMENTATION), introduction.tex interface.tex tools.tex extensions.tex faq.tex gpl.tex rse.tex fdl.tex)
documentation: $(PDF)
# tests
TESTS := $(call DIR,tests/)
TST := $(addprefix $(TESTS), linklib linkbin doccheck docprintcheck \
amd64asm amd64printasm arma32asm arma32printasm arma64asm arma64printasm armt32asm armt32printasm avrasm avrprintasm avr32asm avr32printasm m68kasm m68kprintasm miblasm miblprintasm mips64asm mips64printasm mmixasm mmixprintasm or1kasm or1kprintasm ppc64asm ppc64printasm riscasm riscprintasm wasmasm wasmprintasm xtensaasm xtensaprintasm \
cdcheck cdprintcheck cdrun cdprintrun cdamd32linux cdamd64linux cdarma32linux cdarma64linux cdarmt32linux cdarmt32fpelinux cdatmega32 cdatmega8515 cddos cdmips32linux cdmmixsim cdor1ksim cdosx32 cdosx64 cdqemuamd32 cdqemuamd64 cdqemuarma32 cdqemuarma64 cdqemuarmt32 cdqemuarmt32fpe cdqemumips32 cdqemuxtensa cdwebassembly cdwin32 cdwin64 \
cppcheck cppprintcheck cppdump cppcppcheck cpprun cppprintrun cppcpprun cppcode cppamd32linux cppamd64linux cpparma32linux cpparma64linux cpparmt32linux cpparmt32fpelinux cppatmega32 cppatmega8515 cppdos cppmips32linux cppmmixsim cppor1ksim cpposx32 cpposx64 cppqemuamd32 cppqemuamd64 cppqemuarma32 cppqemuarma64 cppqemuarmt32 cppqemuarmt32fpe cppqemumips32 cppqemuxtensa cppwebassembly cppwin32 cppwin64 \
falcheck falprintcheck faldump falrun falprintrun falcppcheck falcpprun falcode falamd32linux falamd64linux falarma32linux falarma64linux falarmt32linux falarmt32fpelinux falatmega32 falatmega8515 faldos falmips32linux falmmixsim falor1ksim falosx32 falosx64 falqemuamd32 falqemuamd64 falqemuarma32 falqemuarma64 falqemuarmt32 falqemuarmt32fpe falqemumips32 falqemuxtensa falwebassembly falwin32 falwin64 \
obcheck obprintcheck obdump obrun obprintrun obcppcheck obcpprun obcode obamd32linux obamd64linux obarma32linux obarma64linux obarmt32linux obarmt32fpelinux obatmega32 obdos obmips32linux obmmixsim obor1ksim obosx32 obosx64 obqemuamd32 obqemuamd64 obqemuarma32 obqemuarma64 obqemuarmt32 obqemuarmt32fpe obqemumips32 obqemuxtensa obwebassembly obwin32 obwin64)
RES := $(TST:=.res)
export ECSIMPORT := $(call DIR,$(abspath $(TESTS))/)
.PHONY: linktests
linktests: $(addprefix $(TESTS), linklib linkbin)
$(TESTS)linklib: $(UTILITIES)regtest$(PRG) $(TESTS)linklib.tst $(TOOLS)linklib$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)linklib$(PRG)) linklib.tmp" linklib.tst linklib.tmp linklib.res
@$(TC) $@
$(TESTS)linkbin: $(UTILITIES)regtest$(PRG) $(TESTS)linkbin.tst $(TOOLS)linkbin$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)linkbin$(PRG)) linkbin.tmp" linkbin.tst linkbin.tmp linkbin.res
@$(TC) $@
.PHONY: doctests
doctests: $(addprefix $(TESTS), doccheck docprintcheck)
$(TESTS)doccheck: $(UTILITIES)regtest$(PRG) $(TESTS)doccheck.tst $(TOOLS)doccheck$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)doccheck$(PRG)) doccheck.tmp" doccheck.tst doccheck.tmp doccheck.res
@$(TC) $@
$(TESTS)docprintcheck: $(UTILITIES)regtest$(PRG) $(TESTS)doccheck.tst $(TOOLS)docprint$(PRG) $(TOOLS)doccheck$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)docprint$(PRG)) docprintcheck.tmp > docprintcheck.doc && $(abspath $(TOOLS)doccheck$(PRG)) docprintcheck.doc" doccheck.tst docprintcheck.tmp docprintcheck.res
@$(TC) $@
.PHONY: cdtests
cdtests: $(addprefix $(TESTS), cdcheck cdprintcheck cdrun cdprintrun $(foreach ENVIRONMENT, $(HOSTENVIRONMENTS), cd$(ENVIRONMENT)))
.PHONY: opttests
opttests: $(addprefix $(TESTS), cdoptrun cppoptcode faloptcode oboptcode)
$(TESTS)cdcheck: $(UTILITIES)regtest$(PRG) $(TESTS)cdcheck.tst $(TOOLS)cdcheck$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cdcheck$(PRG)) cdcheck.tmp" cdcheck.tst cdcheck.tmp cdcheck.res
@$(TC) $@
$(TESTS)cdprintcheck: $(UTILITIES)regtest$(PRG) $(TESTS)cdcheck.tst $(TOOLS)asmprint$(PRG) $(TOOLS)cdcheck$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)asmprint$(PRG)) cdprintcheck.tmp > cdprintcheck.cod && $(abspath $(TOOLS)cdcheck$(PRG)) cdprintcheck.cod" cdcheck.tst cdprintcheck.tmp cdprintcheck.res
@$(TC) $@
$(TESTS)cdrun: $(UTILITIES)regtest$(PRG) $(TESTS)cdrun.tst $(TOOLS)cdrun$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cdrun$(PRG)) cdrun.tmp" cdrun.tst cdrun.tmp cdrun.res
@$(TC) $@
$(TESTS)cdprintrun: $(UTILITIES)regtest$(PRG) $(TESTS)cdrun.tst $(TOOLS)asmprint$(PRG) $(TOOLS)cdrun$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)asmprint$(PRG)) cdprintrun.tmp > cdprintrun.cod && $(abspath $(TOOLS)cdrun$(PRG)) cdprintrun.cod" cdrun.tst cdprintrun.tmp cdprintrun.res
@$(TC) $@
$(TESTS)cdoptrun: $(UTILITIES)regtest$(PRG) $(TESTS)cdrun.tst $(TOOLS)cdopt$(PRG) $(TOOLS)cdrun$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cdopt$(PRG)) cdoptrun.tmp > cdoptrun.opt && $(abspath $(TOOLS)cdrun$(PRG)) cdoptrun.opt" cdrun.tst cdoptrun.tmp cdoptrun.res
@$(TC) $@
.PHONY: cpptests
cpptests: $(addprefix $(TESTS), cppcheck cppprintcheck cpprun cppprintrun cppcode $(foreach ENVIRONMENT, $(HOSTENVIRONMENTS), cpp$(ENVIRONMENT)))
$(TESTS)cppcheck: $(UTILITIES)regtest$(PRG) $(TESTS)stdcppcheck.tst $(TESTS)extcppcheck.tst $(TOOLS)cppcheck$(PRG) $(HDR)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cppcheck$(PRG)) cppcheck.tmp" stdcppcheck.tst cppcheck.tmp stdcppcheck.res
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cppcheck$(PRG)) cppcheck.tmp" extcppcheck.tst cppcheck.tmp extcppcheck.res
@$(TC) $@
$(TESTS)cppprintcheck: $(UTILITIES)regtest$(PRG) $(TESTS)stdcppcheck.tst $(TESTS)extcppcheck.tst $(TOOLS)cppprint$(PRG) $(TOOLS)cppcheck$(PRG) $(HDR)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cppprint$(PRG)) cppprintcheck.tmp > cppprintcheck.cpp && $(abspath $(TOOLS)cppcheck$(PRG)) cppprintcheck.cpp" stdcppcheck.tst cppprintcheck.tmp stdcppprintcheck.res
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cppprint$(PRG)) cppprintcheck.tmp > cppprintcheck.cpp && $(abspath $(TOOLS)cppcheck$(PRG)) cppprintcheck.cpp" extcppcheck.tst cppprintcheck.tmp extcppprintcheck.res
@$(TC) $@
$(TESTS)cppcppcheck: $(UTILITIES)regtest$(PRG) $(TESTS)stdcppcheck.tst
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(CC) $(CCHECKFLAGS) cppcppcheck.cpp" stdcppcheck.tst cppcppcheck.cpp cppcppcheck.res
@$(TC) $@
$(TESTS)cpprun: $(UTILITIES)regtest$(PRG) $(TESTS)stdcpprun.tst $(TESTS)extcpprun.tst $(TOOLS)cpprun$(PRG) $(CPP) $(HDR) $(RUNTIME)cpprunrun.cpp $(RUNTIME)runtime.cpp
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cpprun$(PRG)) cpprun.tmp $(abspath $(RUNTIME)cpprunrun.cpp)" stdcpprun.tst cpprun.tmp stdcpprun.res
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cpprun$(PRG)) cpprun.tmp $(abspath $(RUNTIME)cpprunrun.cpp)" extcpprun.tst cpprun.tmp extcpprun.res
@$(TC) $@
$(TESTS)cppprintrun: $(UTILITIES)regtest$(PRG) $(TESTS)stdcpprun.tst $(TESTS)extcpprun.tst $(TOOLS)cppprint$(PRG) $(TOOLS)cpprun$(PRG) $(CPP) $(HDR) $(RUNTIME)cpprunrun.cpp $(RUNTIME)runtime.cpp
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cppprint$(PRG)) cppprintrun.tmp > cppprintrun.cpp && $(abspath $(TOOLS)cpprun$(PRG)) cppprintrun.cpp $(abspath $(RUNTIME)cpprunrun.cpp)" stdcpprun.tst cppprintrun.tmp stdcppprintrun.res
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cppprint$(PRG)) cppprintrun.tmp > cppprintrun.cpp && $(abspath $(TOOLS)cpprun$(PRG)) cppprintrun.cpp $(abspath $(RUNTIME)cpprunrun.cpp)" extcpprun.tst cppprintrun.tmp extcppprintrun.res
@$(TC) $@
$(TESTS)cppcpprun: $(UTILITIES)regtest$(PRG) $(TESTS)stdcpprun.tst
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(CC) $(CRUNFLAGS) cppcpprun.cpp && $(LD) $(LRUNFLAGS)cppcpprun$(PRG) cppcpprun$(O) && $(CURR)cppcpprun$(PRG)" stdcpprun.tst cppcpprun.cpp cppcpprun.res
@$(TC) $@
$(TESTS)cppcode: $(UTILITIES)regtest$(PRG) $(TESTS)stdcpprun.tst $(TESTS)extcpprun.tst $(TOOLS)cppcode$(PRG) $(TOOLS)cdrun$(PRG) $(RUNTIME)coderun.obf $(RUNTIME)cppcoderun.lib
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cppcode$(PRG)) cppcode.tmp && $(abspath $(TOOLS)cdrun$(PRG)) cppcode.cod $(abspath $(RUNTIME)coderun.obf $(RUNTIME)cppcoderun.lib)" stdcpprun.tst cppcode.tmp stdcppcode.res
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cppcode$(PRG)) cppcode.tmp && $(abspath $(TOOLS)cdrun$(PRG)) cppcode.cod $(abspath $(RUNTIME)coderun.obf $(RUNTIME)cppcoderun.lib)" extcpprun.tst cppcode.tmp extcppcode.res
@$(TC) $@
$(TESTS)cppoptcode: $(UTILITIES)regtest$(PRG) $(TESTS)stdcpprun.tst $(TESTS)extcpprun.tst $(TOOLS)cppcode$(PRG) $(TOOLS)cdopt$(PRG) $(TOOLS)cdrun$(PRG) $(RUNTIME)coderun.obf $(RUNTIME)cppcoderun.lib
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cppcode$(PRG)) cppoptcode.tmp && $(abspath $(TOOLS)cdopt$(PRG)) cppoptcode.cod > cppoptcode.opt && $(abspath $(TOOLS)cdrun$(PRG)) cppoptcode.opt $(abspath $(RUNTIME)coderun.obf $(RUNTIME)cppcoderun.lib)" stdcpprun.tst cppoptcode.tmp stdcppoptcode.res
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)cppcode$(PRG)) cppoptcode.tmp && $(abspath $(TOOLS)cdopt$(PRG)) cppoptcode.cod > cppoptcode.opt && $(abspath $(TOOLS)cdrun$(PRG)) cppoptcode.opt $(abspath $(RUNTIME)coderun.obf $(RUNTIME)cppcoderun.lib)" extcpprun.tst cppoptcode.tmp extcppoptcode.res
@$(TC) $@
.PHONY: faltests
faltests: $(addprefix $(TESTS), falcheck falprintcheck falrun falprintrun falcode $(foreach ENVIRONMENT, $(HOSTENVIRONMENTS), fal$(ENVIRONMENT)))
$(TESTS)falcheck: $(UTILITIES)regtest$(PRG) $(TESTS)falcheck.tst $(TOOLS)falcheck$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)falcheck$(PRG)) falcheck.tmp" falcheck.tst falcheck.tmp falcheck.res
@$(TC) $@
$(TESTS)falprintcheck: $(UTILITIES)regtest$(PRG) $(TESTS)falcheck.tst $(TOOLS)falprint$(PRG) $(TOOLS)falcheck$(PRG)
@cd $(TESTS) && $(PREV)$(UTILITIES)regtest$(PRG) "$(abspath $(TOOLS)falprint$(PRG)) falprintcheck.tmp > falprintcheck.fal && $(abspath $(TOOLS)falcheck$(PRG)) falprintcheck.fal" falcheck.tst falprintcheck.tmp falprintcheck.res
@$(TC) $@
$(TESTS)falrun: $(UTILITIES)regtest$(PRG) $(TESTS)falrun.tst $(TOOLS)falrun$(PRG)