aboutsummaryrefslogtreecommitdiffstats
path: root/lib/erl_interface/src/depend.mk
blob: af753046e502a3e9a3cfff304f7492d462d04527 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
# Generated dependency rules
$(ST_OBJDIR)/ei_connect.o: connect/ei_connect.c $(TARGET)/config.h \
  misc/eidef.h ../include/ei.h misc/eiext.h misc/ei_portio.h \
  misc/ei_internal.h connect/ei_connect_int.h misc/ei_locking.h \
  connect/eisend.h connect/eirecv.h misc/eimd5.h misc/putget.h \
  connect/ei_resolve.h epmd/ei_epmd.h
$(ST_OBJDIR)/ei_resolve.o: connect/ei_resolve.c $(TARGET)/config.h \
  misc/eidef.h ../include/ei.h connect/ei_resolve.h misc/ei_locking.h
$(ST_OBJDIR)/eirecv.o: connect/eirecv.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eirecv.h misc/ei_portio.h \
  misc/ei_internal.h misc/putget.h misc/ei_trace.h misc/show_msg.h
$(ST_OBJDIR)/send.o: connect/send.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eisend.h misc/putget.h \
  connect/ei_connect_int.h misc/ei_internal.h misc/ei_trace.h \
  misc/show_msg.h
$(ST_OBJDIR)/send_exit.o: connect/send_exit.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/ei_connect_int.h misc/ei_trace.h \
  misc/ei_internal.h misc/putget.h misc/show_msg.h
$(ST_OBJDIR)/send_reg.o: connect/send_reg.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eisend.h misc/putget.h \
  connect/ei_connect_int.h misc/ei_internal.h misc/ei_trace.h \
  misc/show_msg.h
$(ST_OBJDIR)/decode_atom.o: decode/decode_atom.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_big.o: decode/decode_big.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_bignum.o: decode/decode_bignum.c $(TARGET)/config.h
$(ST_OBJDIR)/decode_binary.o: decode/decode_binary.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_boolean.o: decode/decode_boolean.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_char.o: decode/decode_char.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_double.o: decode/decode_double.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_fun.o: decode/decode_fun.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_malloc.h decode/decode_skip.h misc/putget.h
$(ST_OBJDIR)/decode_intlist.o: decode/decode_intlist.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_list_header.o: decode/decode_list_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_long.o: decode/decode_long.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_pid.o: decode/decode_pid.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_port.o: decode/decode_port.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_ref.o: decode/decode_ref.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_skip.o: decode/decode_skip.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  decode/decode_skip.h
$(ST_OBJDIR)/decode_string.o: decode/decode_string.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_trace.o: decode/decode_trace.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/putget.h
$(ST_OBJDIR)/decode_tuple_header.o: decode/decode_tuple_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_ulong.o: decode/decode_ulong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_version.o: decode/decode_version.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_longlong.o: decode/decode_longlong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/decode_ulonglong.o: decode/decode_ulonglong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_atom.o: encode/encode_atom.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_bignum.o: encode/encode_bignum.c $(TARGET)/config.h
$(ST_OBJDIR)/encode_binary.o: encode/encode_binary.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_boolean.o: encode/encode_boolean.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_char.o: encode/encode_char.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_double.o: encode/encode_double.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_fun.o: encode/encode_fun.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_list_header.o: encode/encode_list_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_long.o: encode/encode_long.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_pid.o: encode/encode_pid.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_port.o: encode/encode_port.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_ref.o: encode/encode_ref.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_string.o: encode/encode_string.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_trace.o: encode/encode_trace.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/putget.h
$(ST_OBJDIR)/encode_tuple_header.o: encode/encode_tuple_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_ulong.o: encode/encode_ulong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_version.o: encode/encode_version.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(ST_OBJDIR)/encode_longlong.o: encode/encode_longlong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h
$(ST_OBJDIR)/encode_ulonglong.o: encode/encode_ulonglong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h
$(ST_OBJDIR)/epmd_port.o: epmd/epmd_port.c misc/ei_internal.h epmd/ei_epmd.h \
  misc/putget.h
$(ST_OBJDIR)/epmd_publish.o: epmd/epmd_publish.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_internal.h \
  misc/putget.h ../include/erl_interface.h epmd/ei_epmd.h
$(ST_OBJDIR)/epmd_unpublish.o: epmd/epmd_unpublish.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_internal.h \
  misc/putget.h ../include/erl_interface.h epmd/ei_epmd.h
$(ST_OBJDIR)/ei_decode_term.o: misc/ei_decode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_decode_term.h misc/putget.h
$(ST_OBJDIR)/ei_format.o: misc/ei_format.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/ei_malloc.h misc/ei_format.h
$(ST_OBJDIR)/ei_locking.o: misc/ei_locking.c $(TARGET)/config.h \
  misc/ei_malloc.h misc/ei_locking.h
$(ST_OBJDIR)/ei_malloc.o: misc/ei_malloc.c misc/ei_malloc.h
$(ST_OBJDIR)/ei_portio.o: misc/ei_portio.c misc/ei_portio.h misc/ei_internal.h
$(ST_OBJDIR)/ei_printterm.o: misc/ei_printterm.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_printterm.h misc/ei_malloc.h
$(ST_OBJDIR)/ei_pthreads.o: misc/ei_pthreads.c $(TARGET)/config.h \
  ../include/ei.h misc/ei_locking.h
$(ST_OBJDIR)/ei_trace.o: misc/ei_trace.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/ei_trace.h
$(ST_OBJDIR)/ei_x_encode.o: misc/ei_x_encode.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_x_encode.h \
  misc/ei_malloc.h
$(ST_OBJDIR)/eimd5.o: misc/eimd5.c misc/eimd5.h
$(ST_OBJDIR)/get_type.o: misc/get_type.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h misc/putget.h
$(ST_OBJDIR)/show_msg.o: misc/show_msg.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h misc/putget.h misc/ei_printterm.h \
  misc/ei_internal.h misc/show_msg.h
$(ST_OBJDIR)/ei_compat.o: misc/ei_compat.c ../include/ei.h misc/ei_internal.h
$(ST_OBJDIR)/hash_dohash.o: registry/hash_dohash.c registry/hash.h ../include/ei.h
$(ST_OBJDIR)/hash_foreach.o: registry/hash_foreach.c registry/hash.h ../include/ei.h
$(ST_OBJDIR)/hash_freetab.o: registry/hash_freetab.c registry/hash.h ../include/ei.h
$(ST_OBJDIR)/hash_insert.o: registry/hash_insert.c registry/hash.h ../include/ei.h
$(ST_OBJDIR)/hash_isprime.o: registry/hash_isprime.c registry/hash.h ../include/ei.h
$(ST_OBJDIR)/hash_lookup.o: registry/hash_lookup.c registry/hash.h ../include/ei.h
$(ST_OBJDIR)/hash_newtab.o: registry/hash_newtab.c registry/hash.h ../include/ei.h
$(ST_OBJDIR)/hash_remove.o: registry/hash_remove.c registry/hash.h ../include/ei.h
$(ST_OBJDIR)/hash_resize.o: registry/hash_resize.c registry/hash.h ../include/ei.h
$(ST_OBJDIR)/hash_rlookup.o: registry/hash_rlookup.c registry/hash.h ../include/ei.h
$(ST_OBJDIR)/reg_close.o: registry/reg_close.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_delete.o: registry/reg_delete.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_dirty.o: registry/reg_dirty.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_dump.o: registry/reg_dump.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  registry/reg.h registry/hash.h connect/eisend.h connect/eirecv.h \
  connect/ei_connect_int.h
$(ST_OBJDIR)/reg_free.o: registry/reg_free.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_get.o: registry/reg_get.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_getf.o: registry/reg_getf.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_geti.o: registry/reg_geti.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_getp.o: registry/reg_getp.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_gets.o: registry/reg_gets.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_make.o: registry/reg_make.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_open.o: registry/reg_open.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_purge.o: registry/reg_purge.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_resize.o: registry/reg_resize.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_restore.o: registry/reg_restore.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  registry/reg.h registry/hash.h connect/eisend.h connect/eirecv.h \
  connect/ei_connect_int.h
$(ST_OBJDIR)/reg_set.o: registry/reg_set.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_setf.o: registry/reg_setf.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_seti.o: registry/reg_seti.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_setp.o: registry/reg_setp.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_sets.o: registry/reg_sets.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_stat.o: registry/reg_stat.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/reg_tabstat.o: registry/reg_tabstat.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(ST_OBJDIR)/decode_term.o: legacy/decode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h ../include/erl_interface.h
$(ST_OBJDIR)/encode_term.o: legacy/encode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h ../include/erl_interface.h \
  legacy/erl_marshal.h legacy/erl_eterm.h legacy/portability.h
$(ST_OBJDIR)/erl_connect.o: legacy/erl_connect.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_config.h \
  legacy/erl_connect.h legacy/erl_eterm.h legacy/portability.h \
  legacy/erl_malloc.h misc/putget.h connect/ei_connect_int.h \
  misc/ei_locking.h epmd/ei_epmd.h misc/ei_internal.h
$(ST_OBJDIR)/erl_error.o: legacy/erl_error.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_error.h
$(ST_OBJDIR)/erl_eterm.o: legacy/erl_eterm.c misc/ei_locking.h \
  $(TARGET)/config.h connect/ei_resolve.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_eterm.h \
  legacy/portability.h legacy/erl_malloc.h legacy/erl_marshal.h \
  legacy/erl_error.h legacy/erl_internal.h misc/ei_internal.h
$(ST_OBJDIR)/erl_fix_alloc.o: legacy/erl_fix_alloc.c $(TARGET)/config.h \
  misc/ei_locking.h ../include/erl_interface.h ../include/ei.h \
  legacy/erl_error.h legacy/erl_malloc.h legacy/erl_fix_alloc.h \
  legacy/erl_eterm.h legacy/portability.h
$(ST_OBJDIR)/erl_format.o: legacy/erl_format.c ../include/erl_interface.h \
  ../include/ei.h legacy/erl_eterm.h legacy/portability.h \
  legacy/erl_malloc.h legacy/erl_error.h legacy/erl_internal.h
$(ST_OBJDIR)/erl_malloc.o: legacy/erl_malloc.c ../include/erl_interface.h \
  ../include/ei.h legacy/erl_fix_alloc.h legacy/erl_malloc.h \
  legacy/erl_internal.h legacy/erl_eterm.h legacy/portability.h \
  misc/ei_malloc.h
$(ST_OBJDIR)/erl_marshal.o: legacy/erl_marshal.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_marshal.h \
  legacy/erl_eterm.h legacy/portability.h legacy/erl_malloc.h \
  legacy/erl_error.h legacy/erl_internal.h misc/eiext.h misc/putget.h
$(ST_OBJDIR)/erl_timeout.o: legacy/erl_timeout.c $(TARGET)/config.h \
  legacy/erl_timeout.h
$(ST_OBJDIR)/global_names.o: legacy/global_names.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h
$(ST_OBJDIR)/global_register.o: legacy/global_register.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h ../include/erl_interface.h
$(ST_OBJDIR)/global_unregister.o: legacy/global_unregister.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h
$(ST_OBJDIR)/global_whereis.o: legacy/global_whereis.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h

$(MT_OBJDIR)/ei_connect.o: connect/ei_connect.c $(TARGET)/config.h \
  misc/eidef.h ../include/ei.h misc/eiext.h misc/ei_portio.h \
  misc/ei_internal.h connect/ei_connect_int.h misc/ei_locking.h \
  connect/eisend.h connect/eirecv.h misc/eimd5.h misc/putget.h \
  connect/ei_resolve.h epmd/ei_epmd.h
$(MT_OBJDIR)/ei_resolve.o: connect/ei_resolve.c $(TARGET)/config.h \
  misc/eidef.h ../include/ei.h connect/ei_resolve.h misc/ei_locking.h
$(MT_OBJDIR)/eirecv.o: connect/eirecv.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eirecv.h misc/ei_portio.h \
  misc/ei_internal.h misc/putget.h misc/ei_trace.h misc/show_msg.h
$(MT_OBJDIR)/send.o: connect/send.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eisend.h misc/putget.h \
  connect/ei_connect_int.h misc/ei_internal.h misc/ei_trace.h \
  misc/show_msg.h
$(MT_OBJDIR)/send_exit.o: connect/send_exit.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/ei_connect_int.h misc/ei_trace.h \
  misc/ei_internal.h misc/putget.h misc/show_msg.h
$(MT_OBJDIR)/send_reg.o: connect/send_reg.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eisend.h misc/putget.h \
  connect/ei_connect_int.h misc/ei_internal.h misc/ei_trace.h \
  misc/show_msg.h
$(MT_OBJDIR)/decode_atom.o: decode/decode_atom.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_big.o: decode/decode_big.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_bignum.o: decode/decode_bignum.c $(TARGET)/config.h
$(MT_OBJDIR)/decode_binary.o: decode/decode_binary.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_boolean.o: decode/decode_boolean.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_char.o: decode/decode_char.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_double.o: decode/decode_double.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_fun.o: decode/decode_fun.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_malloc.h decode/decode_skip.h misc/putget.h
$(MT_OBJDIR)/decode_intlist.o: decode/decode_intlist.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_list_header.o: decode/decode_list_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_long.o: decode/decode_long.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_pid.o: decode/decode_pid.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_port.o: decode/decode_port.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_ref.o: decode/decode_ref.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_skip.o: decode/decode_skip.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  decode/decode_skip.h
$(MT_OBJDIR)/decode_string.o: decode/decode_string.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_trace.o: decode/decode_trace.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/putget.h
$(MT_OBJDIR)/decode_tuple_header.o: decode/decode_tuple_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_ulong.o: decode/decode_ulong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_version.o: decode/decode_version.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_longlong.o: decode/decode_longlong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/decode_ulonglong.o: decode/decode_ulonglong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_atom.o: encode/encode_atom.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_bignum.o: encode/encode_bignum.c $(TARGET)/config.h
$(MT_OBJDIR)/encode_binary.o: encode/encode_binary.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_boolean.o: encode/encode_boolean.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_char.o: encode/encode_char.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_double.o: encode/encode_double.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_fun.o: encode/encode_fun.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_list_header.o: encode/encode_list_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_long.o: encode/encode_long.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_pid.o: encode/encode_pid.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_port.o: encode/encode_port.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_ref.o: encode/encode_ref.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_string.o: encode/encode_string.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_trace.o: encode/encode_trace.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/putget.h
$(MT_OBJDIR)/encode_tuple_header.o: encode/encode_tuple_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_ulong.o: encode/encode_ulong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_version.o: encode/encode_version.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MT_OBJDIR)/encode_longlong.o: encode/encode_longlong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h
$(MT_OBJDIR)/encode_ulonglong.o: encode/encode_ulonglong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h
$(MT_OBJDIR)/epmd_port.o: epmd/epmd_port.c misc/ei_internal.h epmd/ei_epmd.h \
  misc/putget.h
$(MT_OBJDIR)/epmd_publish.o: epmd/epmd_publish.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_internal.h \
  misc/putget.h ../include/erl_interface.h epmd/ei_epmd.h
$(MT_OBJDIR)/epmd_unpublish.o: epmd/epmd_unpublish.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_internal.h \
  misc/putget.h ../include/erl_interface.h epmd/ei_epmd.h
$(MT_OBJDIR)/ei_decode_term.o: misc/ei_decode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_decode_term.h misc/putget.h
$(MT_OBJDIR)/ei_format.o: misc/ei_format.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/ei_malloc.h misc/ei_format.h
$(MT_OBJDIR)/ei_locking.o: misc/ei_locking.c $(TARGET)/config.h \
  misc/ei_malloc.h misc/ei_locking.h
$(MT_OBJDIR)/ei_malloc.o: misc/ei_malloc.c misc/ei_malloc.h
$(MT_OBJDIR)/ei_portio.o: misc/ei_portio.c misc/ei_portio.h misc/ei_internal.h
$(MT_OBJDIR)/ei_printterm.o: misc/ei_printterm.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_printterm.h misc/ei_malloc.h
$(MT_OBJDIR)/ei_pthreads.o: misc/ei_pthreads.c $(TARGET)/config.h \
  ../include/ei.h misc/ei_locking.h
$(MT_OBJDIR)/ei_trace.o: misc/ei_trace.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/ei_trace.h
$(MT_OBJDIR)/ei_x_encode.o: misc/ei_x_encode.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_x_encode.h \
  misc/ei_malloc.h
$(MT_OBJDIR)/eimd5.o: misc/eimd5.c misc/eimd5.h
$(MT_OBJDIR)/get_type.o: misc/get_type.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h misc/putget.h
$(MT_OBJDIR)/show_msg.o: misc/show_msg.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h misc/putget.h misc/ei_printterm.h \
  misc/ei_internal.h misc/show_msg.h
$(MT_OBJDIR)/ei_compat.o: misc/ei_compat.c ../include/ei.h misc/ei_internal.h
$(MT_OBJDIR)/hash_dohash.o: registry/hash_dohash.c registry/hash.h ../include/ei.h
$(MT_OBJDIR)/hash_foreach.o: registry/hash_foreach.c registry/hash.h ../include/ei.h
$(MT_OBJDIR)/hash_freetab.o: registry/hash_freetab.c registry/hash.h ../include/ei.h
$(MT_OBJDIR)/hash_insert.o: registry/hash_insert.c registry/hash.h ../include/ei.h
$(MT_OBJDIR)/hash_isprime.o: registry/hash_isprime.c registry/hash.h ../include/ei.h
$(MT_OBJDIR)/hash_lookup.o: registry/hash_lookup.c registry/hash.h ../include/ei.h
$(MT_OBJDIR)/hash_newtab.o: registry/hash_newtab.c registry/hash.h ../include/ei.h
$(MT_OBJDIR)/hash_remove.o: registry/hash_remove.c registry/hash.h ../include/ei.h
$(MT_OBJDIR)/hash_resize.o: registry/hash_resize.c registry/hash.h ../include/ei.h
$(MT_OBJDIR)/hash_rlookup.o: registry/hash_rlookup.c registry/hash.h ../include/ei.h
$(MT_OBJDIR)/reg_close.o: registry/reg_close.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_delete.o: registry/reg_delete.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_dirty.o: registry/reg_dirty.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_dump.o: registry/reg_dump.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  registry/reg.h registry/hash.h connect/eisend.h connect/eirecv.h \
  connect/ei_connect_int.h
$(MT_OBJDIR)/reg_free.o: registry/reg_free.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_get.o: registry/reg_get.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_getf.o: registry/reg_getf.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_geti.o: registry/reg_geti.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_getp.o: registry/reg_getp.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_gets.o: registry/reg_gets.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_make.o: registry/reg_make.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_open.o: registry/reg_open.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_purge.o: registry/reg_purge.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_resize.o: registry/reg_resize.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_restore.o: registry/reg_restore.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  registry/reg.h registry/hash.h connect/eisend.h connect/eirecv.h \
  connect/ei_connect_int.h
$(MT_OBJDIR)/reg_set.o: registry/reg_set.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_setf.o: registry/reg_setf.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_seti.o: registry/reg_seti.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_setp.o: registry/reg_setp.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_sets.o: registry/reg_sets.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_stat.o: registry/reg_stat.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/reg_tabstat.o: registry/reg_tabstat.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MT_OBJDIR)/decode_term.o: legacy/decode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h ../include/erl_interface.h
$(MT_OBJDIR)/encode_term.o: legacy/encode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h ../include/erl_interface.h \
  legacy/erl_marshal.h legacy/erl_eterm.h legacy/portability.h
$(MT_OBJDIR)/erl_connect.o: legacy/erl_connect.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_config.h \
  legacy/erl_connect.h legacy/erl_eterm.h legacy/portability.h \
  legacy/erl_malloc.h misc/putget.h connect/ei_connect_int.h \
  misc/ei_locking.h epmd/ei_epmd.h misc/ei_internal.h
$(MT_OBJDIR)/erl_error.o: legacy/erl_error.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_error.h
$(MT_OBJDIR)/erl_eterm.o: legacy/erl_eterm.c misc/ei_locking.h \
  $(TARGET)/config.h connect/ei_resolve.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_eterm.h \
  legacy/portability.h legacy/erl_malloc.h legacy/erl_marshal.h \
  legacy/erl_error.h legacy/erl_internal.h misc/ei_internal.h
$(MT_OBJDIR)/erl_fix_alloc.o: legacy/erl_fix_alloc.c $(TARGET)/config.h \
  misc/ei_locking.h ../include/erl_interface.h ../include/ei.h \
  legacy/erl_error.h legacy/erl_malloc.h legacy/erl_fix_alloc.h \
  legacy/erl_eterm.h legacy/portability.h
$(MT_OBJDIR)/erl_format.o: legacy/erl_format.c ../include/erl_interface.h \
  ../include/ei.h legacy/erl_eterm.h legacy/portability.h \
  legacy/erl_malloc.h legacy/erl_error.h legacy/erl_internal.h
$(MT_OBJDIR)/erl_malloc.o: legacy/erl_malloc.c ../include/erl_interface.h \
  ../include/ei.h legacy/erl_fix_alloc.h legacy/erl_malloc.h \
  legacy/erl_internal.h legacy/erl_eterm.h legacy/portability.h \
  misc/ei_malloc.h
$(MT_OBJDIR)/erl_marshal.o: legacy/erl_marshal.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_marshal.h \
  legacy/erl_eterm.h legacy/portability.h legacy/erl_malloc.h \
  legacy/erl_error.h legacy/erl_internal.h misc/eiext.h misc/putget.h
$(MT_OBJDIR)/erl_timeout.o: legacy/erl_timeout.c $(TARGET)/config.h \
  legacy/erl_timeout.h
$(MT_OBJDIR)/global_names.o: legacy/global_names.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h
$(MT_OBJDIR)/global_register.o: legacy/global_register.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h ../include/erl_interface.h
$(MT_OBJDIR)/global_unregister.o: legacy/global_unregister.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h
$(MT_OBJDIR)/global_whereis.o: legacy/global_whereis.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h

$(MD_OBJDIR)/ei_connect.o: connect/ei_connect.c $(TARGET)/config.h \
  misc/eidef.h ../include/ei.h misc/eiext.h misc/ei_portio.h \
  misc/ei_internal.h connect/ei_connect_int.h misc/ei_locking.h \
  connect/eisend.h connect/eirecv.h misc/eimd5.h misc/putget.h \
  connect/ei_resolve.h epmd/ei_epmd.h
$(MD_OBJDIR)/ei_resolve.o: connect/ei_resolve.c $(TARGET)/config.h \
  misc/eidef.h ../include/ei.h connect/ei_resolve.h misc/ei_locking.h
$(MD_OBJDIR)/eirecv.o: connect/eirecv.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eirecv.h misc/ei_portio.h \
  misc/ei_internal.h misc/putget.h misc/ei_trace.h misc/show_msg.h
$(MD_OBJDIR)/send.o: connect/send.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eisend.h misc/putget.h \
  connect/ei_connect_int.h misc/ei_internal.h misc/ei_trace.h \
  misc/show_msg.h
$(MD_OBJDIR)/send_exit.o: connect/send_exit.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/ei_connect_int.h misc/ei_trace.h \
  misc/ei_internal.h misc/putget.h misc/show_msg.h
$(MD_OBJDIR)/send_reg.o: connect/send_reg.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eisend.h misc/putget.h \
  connect/ei_connect_int.h misc/ei_internal.h misc/ei_trace.h \
  misc/show_msg.h
$(MD_OBJDIR)/decode_atom.o: decode/decode_atom.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_big.o: decode/decode_big.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_bignum.o: decode/decode_bignum.c $(TARGET)/config.h
$(MD_OBJDIR)/decode_binary.o: decode/decode_binary.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_boolean.o: decode/decode_boolean.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_char.o: decode/decode_char.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_double.o: decode/decode_double.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_fun.o: decode/decode_fun.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_malloc.h decode/decode_skip.h misc/putget.h
$(MD_OBJDIR)/decode_intlist.o: decode/decode_intlist.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_list_header.o: decode/decode_list_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_long.o: decode/decode_long.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_pid.o: decode/decode_pid.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_port.o: decode/decode_port.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_ref.o: decode/decode_ref.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_skip.o: decode/decode_skip.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  decode/decode_skip.h
$(MD_OBJDIR)/decode_string.o: decode/decode_string.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_trace.o: decode/decode_trace.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/putget.h
$(MD_OBJDIR)/decode_tuple_header.o: decode/decode_tuple_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_ulong.o: decode/decode_ulong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_version.o: decode/decode_version.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_longlong.o: decode/decode_longlong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/decode_ulonglong.o: decode/decode_ulonglong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_atom.o: encode/encode_atom.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_bignum.o: encode/encode_bignum.c $(TARGET)/config.h
$(MD_OBJDIR)/encode_binary.o: encode/encode_binary.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_boolean.o: encode/encode_boolean.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_char.o: encode/encode_char.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_double.o: encode/encode_double.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_fun.o: encode/encode_fun.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_list_header.o: encode/encode_list_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_long.o: encode/encode_long.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_pid.o: encode/encode_pid.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_port.o: encode/encode_port.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_ref.o: encode/encode_ref.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_string.o: encode/encode_string.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_trace.o: encode/encode_trace.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/putget.h
$(MD_OBJDIR)/encode_tuple_header.o: encode/encode_tuple_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_ulong.o: encode/encode_ulong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_version.o: encode/encode_version.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MD_OBJDIR)/encode_longlong.o: encode/encode_longlong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h
$(MD_OBJDIR)/encode_ulonglong.o: encode/encode_ulonglong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h
$(MD_OBJDIR)/epmd_port.o: epmd/epmd_port.c misc/ei_internal.h epmd/ei_epmd.h \
  misc/putget.h
$(MD_OBJDIR)/epmd_publish.o: epmd/epmd_publish.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_internal.h \
  misc/putget.h ../include/erl_interface.h epmd/ei_epmd.h
$(MD_OBJDIR)/epmd_unpublish.o: epmd/epmd_unpublish.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_internal.h \
  misc/putget.h ../include/erl_interface.h epmd/ei_epmd.h
$(MD_OBJDIR)/ei_decode_term.o: misc/ei_decode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_decode_term.h misc/putget.h
$(MD_OBJDIR)/ei_format.o: misc/ei_format.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/ei_malloc.h misc/ei_format.h
$(MD_OBJDIR)/ei_locking.o: misc/ei_locking.c $(TARGET)/config.h \
  misc/ei_malloc.h misc/ei_locking.h
$(MD_OBJDIR)/ei_malloc.o: misc/ei_malloc.c misc/ei_malloc.h
$(MD_OBJDIR)/ei_portio.o: misc/ei_portio.c misc/ei_portio.h misc/ei_internal.h
$(MD_OBJDIR)/ei_printterm.o: misc/ei_printterm.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_printterm.h misc/ei_malloc.h
$(MD_OBJDIR)/ei_pthreads.o: misc/ei_pthreads.c $(TARGET)/config.h \
  ../include/ei.h misc/ei_locking.h
$(MD_OBJDIR)/ei_trace.o: misc/ei_trace.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/ei_trace.h
$(MD_OBJDIR)/ei_x_encode.o: misc/ei_x_encode.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_x_encode.h \
  misc/ei_malloc.h
$(MD_OBJDIR)/eimd5.o: misc/eimd5.c misc/eimd5.h
$(MD_OBJDIR)/get_type.o: misc/get_type.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h misc/putget.h
$(MD_OBJDIR)/show_msg.o: misc/show_msg.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h misc/putget.h misc/ei_printterm.h \
  misc/ei_internal.h misc/show_msg.h
$(MD_OBJDIR)/ei_compat.o: misc/ei_compat.c ../include/ei.h misc/ei_internal.h
$(MD_OBJDIR)/hash_dohash.o: registry/hash_dohash.c registry/hash.h ../include/ei.h
$(MD_OBJDIR)/hash_foreach.o: registry/hash_foreach.c registry/hash.h ../include/ei.h
$(MD_OBJDIR)/hash_freetab.o: registry/hash_freetab.c registry/hash.h ../include/ei.h
$(MD_OBJDIR)/hash_insert.o: registry/hash_insert.c registry/hash.h ../include/ei.h
$(MD_OBJDIR)/hash_isprime.o: registry/hash_isprime.c registry/hash.h ../include/ei.h
$(MD_OBJDIR)/hash_lookup.o: registry/hash_lookup.c registry/hash.h ../include/ei.h
$(MD_OBJDIR)/hash_newtab.o: registry/hash_newtab.c registry/hash.h ../include/ei.h
$(MD_OBJDIR)/hash_remove.o: registry/hash_remove.c registry/hash.h ../include/ei.h
$(MD_OBJDIR)/hash_resize.o: registry/hash_resize.c registry/hash.h ../include/ei.h
$(MD_OBJDIR)/hash_rlookup.o: registry/hash_rlookup.c registry/hash.h ../include/ei.h
$(MD_OBJDIR)/reg_close.o: registry/reg_close.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_delete.o: registry/reg_delete.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_dirty.o: registry/reg_dirty.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_dump.o: registry/reg_dump.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  registry/reg.h registry/hash.h connect/eisend.h connect/eirecv.h \
  connect/ei_connect_int.h
$(MD_OBJDIR)/reg_free.o: registry/reg_free.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_get.o: registry/reg_get.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_getf.o: registry/reg_getf.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_geti.o: registry/reg_geti.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_getp.o: registry/reg_getp.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_gets.o: registry/reg_gets.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_make.o: registry/reg_make.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_open.o: registry/reg_open.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_purge.o: registry/reg_purge.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_resize.o: registry/reg_resize.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_restore.o: registry/reg_restore.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  registry/reg.h registry/hash.h connect/eisend.h connect/eirecv.h \
  connect/ei_connect_int.h
$(MD_OBJDIR)/reg_set.o: registry/reg_set.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_setf.o: registry/reg_setf.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_seti.o: registry/reg_seti.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_setp.o: registry/reg_setp.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_sets.o: registry/reg_sets.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_stat.o: registry/reg_stat.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/reg_tabstat.o: registry/reg_tabstat.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MD_OBJDIR)/decode_term.o: legacy/decode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h ../include/erl_interface.h
$(MD_OBJDIR)/encode_term.o: legacy/encode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h ../include/erl_interface.h \
  legacy/erl_marshal.h legacy/erl_eterm.h legacy/portability.h
$(MD_OBJDIR)/erl_connect.o: legacy/erl_connect.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_config.h \
  legacy/erl_connect.h legacy/erl_eterm.h legacy/portability.h \
  legacy/erl_malloc.h misc/putget.h connect/ei_connect_int.h \
  misc/ei_locking.h epmd/ei_epmd.h misc/ei_internal.h
$(MD_OBJDIR)/erl_error.o: legacy/erl_error.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_error.h
$(MD_OBJDIR)/erl_eterm.o: legacy/erl_eterm.c misc/ei_locking.h \
  $(TARGET)/config.h connect/ei_resolve.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_eterm.h \
  legacy/portability.h legacy/erl_malloc.h legacy/erl_marshal.h \
  legacy/erl_error.h legacy/erl_internal.h misc/ei_internal.h
$(MD_OBJDIR)/erl_fix_alloc.o: legacy/erl_fix_alloc.c $(TARGET)/config.h \
  misc/ei_locking.h ../include/erl_interface.h ../include/ei.h \
  legacy/erl_error.h legacy/erl_malloc.h legacy/erl_fix_alloc.h \
  legacy/erl_eterm.h legacy/portability.h
$(MD_OBJDIR)/erl_format.o: legacy/erl_format.c ../include/erl_interface.h \
  ../include/ei.h legacy/erl_eterm.h legacy/portability.h \
  legacy/erl_malloc.h legacy/erl_error.h legacy/erl_internal.h
$(MD_OBJDIR)/erl_malloc.o: legacy/erl_malloc.c ../include/erl_interface.h \
  ../include/ei.h legacy/erl_fix_alloc.h legacy/erl_malloc.h \
  legacy/erl_internal.h legacy/erl_eterm.h legacy/portability.h \
  misc/ei_malloc.h
$(MD_OBJDIR)/erl_marshal.o: legacy/erl_marshal.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_marshal.h \
  legacy/erl_eterm.h legacy/portability.h legacy/erl_malloc.h \
  legacy/erl_error.h legacy/erl_internal.h misc/eiext.h misc/putget.h
$(MD_OBJDIR)/erl_timeout.o: legacy/erl_timeout.c $(TARGET)/config.h \
  legacy/erl_timeout.h
$(MD_OBJDIR)/global_names.o: legacy/global_names.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h
$(MD_OBJDIR)/global_register.o: legacy/global_register.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h ../include/erl_interface.h
$(MD_OBJDIR)/global_unregister.o: legacy/global_unregister.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h
$(MD_OBJDIR)/global_whereis.o: legacy/global_whereis.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h

$(MDD_OBJDIR)/ei_connect.o: connect/ei_connect.c $(TARGET)/config.h \
  misc/eidef.h ../include/ei.h misc/eiext.h misc/ei_portio.h \
  misc/ei_internal.h connect/ei_connect_int.h misc/ei_locking.h \
  connect/eisend.h connect/eirecv.h misc/eimd5.h misc/putget.h \
  connect/ei_resolve.h epmd/ei_epmd.h
$(MDD_OBJDIR)/ei_resolve.o: connect/ei_resolve.c $(TARGET)/config.h \
  misc/eidef.h ../include/ei.h connect/ei_resolve.h misc/ei_locking.h
$(MDD_OBJDIR)/eirecv.o: connect/eirecv.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eirecv.h misc/ei_portio.h \
  misc/ei_internal.h misc/putget.h misc/ei_trace.h misc/show_msg.h
$(MDD_OBJDIR)/send.o: connect/send.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eisend.h misc/putget.h \
  connect/ei_connect_int.h misc/ei_internal.h misc/ei_trace.h \
  misc/show_msg.h
$(MDD_OBJDIR)/send_exit.o: connect/send_exit.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/ei_connect_int.h misc/ei_trace.h \
  misc/ei_internal.h misc/putget.h misc/show_msg.h
$(MDD_OBJDIR)/send_reg.o: connect/send_reg.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h connect/eisend.h misc/putget.h \
  connect/ei_connect_int.h misc/ei_internal.h misc/ei_trace.h \
  misc/show_msg.h
$(MDD_OBJDIR)/decode_atom.o: decode/decode_atom.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_big.o: decode/decode_big.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_bignum.o: decode/decode_bignum.c $(TARGET)/config.h
$(MDD_OBJDIR)/decode_binary.o: decode/decode_binary.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_boolean.o: decode/decode_boolean.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_char.o: decode/decode_char.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_double.o: decode/decode_double.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_fun.o: decode/decode_fun.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_malloc.h decode/decode_skip.h misc/putget.h
$(MDD_OBJDIR)/decode_intlist.o: decode/decode_intlist.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_list_header.o: decode/decode_list_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_long.o: decode/decode_long.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_pid.o: decode/decode_pid.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_port.o: decode/decode_port.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_ref.o: decode/decode_ref.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_skip.o: decode/decode_skip.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  decode/decode_skip.h
$(MDD_OBJDIR)/decode_string.o: decode/decode_string.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_trace.o: decode/decode_trace.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/putget.h
$(MDD_OBJDIR)/decode_tuple_header.o: decode/decode_tuple_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_ulong.o: decode/decode_ulong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_version.o: decode/decode_version.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_longlong.o: decode/decode_longlong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/decode_ulonglong.o: decode/decode_ulonglong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_atom.o: encode/encode_atom.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_bignum.o: encode/encode_bignum.c $(TARGET)/config.h
$(MDD_OBJDIR)/encode_binary.o: encode/encode_binary.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_boolean.o: encode/encode_boolean.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_char.o: encode/encode_char.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_double.o: encode/encode_double.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_fun.o: encode/encode_fun.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_list_header.o: encode/encode_list_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_long.o: encode/encode_long.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_pid.o: encode/encode_pid.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_port.o: encode/encode_port.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_ref.o: encode/encode_ref.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_string.o: encode/encode_string.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_trace.o: encode/encode_trace.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/putget.h
$(MDD_OBJDIR)/encode_tuple_header.o: encode/encode_tuple_header.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_ulong.o: encode/encode_ulong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_version.o: encode/encode_version.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h
$(MDD_OBJDIR)/encode_longlong.o: encode/encode_longlong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h
$(MDD_OBJDIR)/encode_ulonglong.o: encode/encode_ulonglong.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h
$(MDD_OBJDIR)/epmd_port.o: epmd/epmd_port.c misc/ei_internal.h epmd/ei_epmd.h \
  misc/putget.h
$(MDD_OBJDIR)/epmd_publish.o: epmd/epmd_publish.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_internal.h \
  misc/putget.h ../include/erl_interface.h epmd/ei_epmd.h
$(MDD_OBJDIR)/epmd_unpublish.o: epmd/epmd_unpublish.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_internal.h \
  misc/putget.h ../include/erl_interface.h epmd/ei_epmd.h
$(MDD_OBJDIR)/ei_decode_term.o: misc/ei_decode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_decode_term.h misc/putget.h
$(MDD_OBJDIR)/ei_format.o: misc/ei_format.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/ei_malloc.h misc/ei_format.h
$(MDD_OBJDIR)/ei_locking.o: misc/ei_locking.c $(TARGET)/config.h \
  misc/ei_malloc.h misc/ei_locking.h
$(MDD_OBJDIR)/ei_malloc.o: misc/ei_malloc.c misc/ei_malloc.h
$(MDD_OBJDIR)/ei_portio.o: misc/ei_portio.c misc/ei_portio.h misc/ei_internal.h
$(MDD_OBJDIR)/ei_printterm.o: misc/ei_printterm.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/ei_printterm.h misc/ei_malloc.h
$(MDD_OBJDIR)/ei_pthreads.o: misc/ei_pthreads.c $(TARGET)/config.h \
  ../include/ei.h misc/ei_locking.h
$(MDD_OBJDIR)/ei_trace.o: misc/ei_trace.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/ei_trace.h
$(MDD_OBJDIR)/ei_x_encode.o: misc/ei_x_encode.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/ei_x_encode.h \
  misc/ei_malloc.h
$(MDD_OBJDIR)/eimd5.o: misc/eimd5.c misc/eimd5.h
$(MDD_OBJDIR)/get_type.o: misc/get_type.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h misc/putget.h
$(MDD_OBJDIR)/show_msg.o: misc/show_msg.c misc/eidef.h $(TARGET)/config.h \
  ../include/ei.h misc/eiext.h misc/putget.h misc/ei_printterm.h \
  misc/ei_internal.h misc/show_msg.h
$(MDD_OBJDIR)/ei_compat.o: misc/ei_compat.c ../include/ei.h misc/ei_internal.h
$(MDD_OBJDIR)/hash_dohash.o: registry/hash_dohash.c registry/hash.h ../include/ei.h
$(MDD_OBJDIR)/hash_foreach.o: registry/hash_foreach.c registry/hash.h ../include/ei.h
$(MDD_OBJDIR)/hash_freetab.o: registry/hash_freetab.c registry/hash.h ../include/ei.h
$(MDD_OBJDIR)/hash_insert.o: registry/hash_insert.c registry/hash.h ../include/ei.h
$(MDD_OBJDIR)/hash_isprime.o: registry/hash_isprime.c registry/hash.h ../include/ei.h
$(MDD_OBJDIR)/hash_lookup.o: registry/hash_lookup.c registry/hash.h ../include/ei.h
$(MDD_OBJDIR)/hash_newtab.o: registry/hash_newtab.c registry/hash.h ../include/ei.h
$(MDD_OBJDIR)/hash_remove.o: registry/hash_remove.c registry/hash.h ../include/ei.h
$(MDD_OBJDIR)/hash_resize.o: registry/hash_resize.c registry/hash.h ../include/ei.h
$(MDD_OBJDIR)/hash_rlookup.o: registry/hash_rlookup.c registry/hash.h ../include/ei.h
$(MDD_OBJDIR)/reg_close.o: registry/reg_close.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_delete.o: registry/reg_delete.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_dirty.o: registry/reg_dirty.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_dump.o: registry/reg_dump.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  registry/reg.h registry/hash.h connect/eisend.h connect/eirecv.h \
  connect/ei_connect_int.h
$(MDD_OBJDIR)/reg_free.o: registry/reg_free.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_get.o: registry/reg_get.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_getf.o: registry/reg_getf.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_geti.o: registry/reg_geti.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_getp.o: registry/reg_getp.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_gets.o: registry/reg_gets.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_make.o: registry/reg_make.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_open.o: registry/reg_open.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_purge.o: registry/reg_purge.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_resize.o: registry/reg_resize.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_restore.o: registry/reg_restore.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  registry/reg.h registry/hash.h connect/eisend.h connect/eirecv.h \
  connect/ei_connect_int.h
$(MDD_OBJDIR)/reg_set.o: registry/reg_set.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_setf.o: registry/reg_setf.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_seti.o: registry/reg_seti.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_setp.o: registry/reg_setp.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_sets.o: registry/reg_sets.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_stat.o: registry/reg_stat.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/reg_tabstat.o: registry/reg_tabstat.c registry/reg.h ../include/ei.h \
  registry/hash.h
$(MDD_OBJDIR)/decode_term.o: legacy/decode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h ../include/erl_interface.h
$(MDD_OBJDIR)/encode_term.o: legacy/encode_term.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  misc/putget.h misc/ei_x_encode.h ../include/erl_interface.h \
  legacy/erl_marshal.h legacy/erl_eterm.h legacy/portability.h
$(MDD_OBJDIR)/erl_connect.o: legacy/erl_connect.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_config.h \
  legacy/erl_connect.h legacy/erl_eterm.h legacy/portability.h \
  legacy/erl_malloc.h misc/putget.h connect/ei_connect_int.h \
  misc/ei_locking.h epmd/ei_epmd.h misc/ei_internal.h
$(MDD_OBJDIR)/erl_error.o: legacy/erl_error.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_error.h
$(MDD_OBJDIR)/erl_eterm.o: legacy/erl_eterm.c misc/ei_locking.h \
  $(TARGET)/config.h connect/ei_resolve.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_eterm.h \
  legacy/portability.h legacy/erl_malloc.h legacy/erl_marshal.h \
  legacy/erl_error.h legacy/erl_internal.h misc/ei_internal.h
$(MDD_OBJDIR)/erl_fix_alloc.o: legacy/erl_fix_alloc.c $(TARGET)/config.h \
  misc/ei_locking.h ../include/erl_interface.h ../include/ei.h \
  legacy/erl_error.h legacy/erl_malloc.h legacy/erl_fix_alloc.h \
  legacy/erl_eterm.h legacy/portability.h
$(MDD_OBJDIR)/erl_format.o: legacy/erl_format.c ../include/erl_interface.h \
  ../include/ei.h legacy/erl_eterm.h legacy/portability.h \
  legacy/erl_malloc.h legacy/erl_error.h legacy/erl_internal.h
$(MDD_OBJDIR)/erl_malloc.o: legacy/erl_malloc.c ../include/erl_interface.h \
  ../include/ei.h legacy/erl_fix_alloc.h legacy/erl_malloc.h \
  legacy/erl_internal.h legacy/erl_eterm.h legacy/portability.h \
  misc/ei_malloc.h
$(MDD_OBJDIR)/erl_marshal.o: legacy/erl_marshal.c $(TARGET)/config.h \
  ../include/erl_interface.h ../include/ei.h legacy/erl_marshal.h \
  legacy/erl_eterm.h legacy/portability.h legacy/erl_malloc.h \
  legacy/erl_error.h legacy/erl_internal.h misc/eiext.h misc/putget.h
$(MDD_OBJDIR)/erl_timeout.o: legacy/erl_timeout.c $(TARGET)/config.h \
  legacy/erl_timeout.h
$(MDD_OBJDIR)/global_names.o: legacy/global_names.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h
$(MDD_OBJDIR)/global_register.o: legacy/global_register.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h ../include/erl_interface.h
$(MDD_OBJDIR)/global_unregister.o: legacy/global_unregister.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h
$(MDD_OBJDIR)/global_whereis.o: legacy/global_whereis.c misc/eidef.h \
  $(TARGET)/config.h ../include/ei.h misc/eiext.h \
  connect/eisend.h connect/eirecv.h connect/ei_connect_int.h \
  ../include/erl_interface.h legacy/erl_connect.h