-
Notifications
You must be signed in to change notification settings - Fork 15
/
makefile.am64x
8165 lines (6264 loc) · 560 KB
/
makefile.am64x
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
all:
$(MAKE) -f makefile.am64x libs
$(MAKE) -f makefile.am64x sbl
$(MAKE) -f makefile.am64x examples
clean: libs-clean sbl-clean examples-clean
scrub: libs-scrub sbl-scrub examples-scrub
help:
@echo Notes,
@echo - Use -j to invoke parallel builds
@echo - Use PROFILE=debug or PROFILE=release [default] to build in debug or release profile
@echo .
@echo Overall build targets,
@echo ======================
@echo $(MAKE) -s -f makefile.am64x help
@echo .
@echo $(MAKE) -s -f makefile.am64x all
@echo $(MAKE) -s -f makefile.am64x clean # delete's tmp files for current profile
@echo $(MAKE) -s -f makefile.am64x scrub # delete's all tmp files and folders for all profiles
@echo .
@echo $(MAKE) -s -f makefile.am64x libs
@echo $(MAKE) -s -f makefile.am64x libs-clean # delete's tmp files for current profile
@echo $(MAKE) -s -f makefile.am64x libs-scrub # delete's all tmp files and folders for all profiles
@echo .
@echo $(MAKE) -s -f makefile.am64x examples
@echo $(MAKE) -s -f makefile.am64x examples-clean # delete's tmp files for current profile
@echo $(MAKE) -s -f makefile.am64x examples-scrub # delete's all tmp files and folders for all profiles
@echo .
@echo Library build targets,
@echo ======================
@echo $(MAKE) -s -f makefile.am64x board_r5f.ti-arm-clang board_m4f.ti-arm-clang board_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x cmsis_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x dhrystone_benchmark_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x drivers_r5f.ti-arm-clang drivers_m4f.ti-arm-clang drivers_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x freertos_fat_r5f.ti-arm-clang freertos_fat_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x littlefs_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x middleware_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x nortos_r5f.ti-arm-clang nortos_m4f.ti-arm-clang nortos_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x freertos_r5f.ti-arm-clang freertos_m4f.ti-arm-clang freertos_a53.gcc-aarch64 freertos_a53-smp.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x mathlib_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x pru_ipc_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x sdl_m4f.ti-arm-clang sdl_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x security_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x usbd_cdn_nortos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x usbd_cdn_freertos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_cdc_nortos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_cdc_freertos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_dfu_nortos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_dfu_freertos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_ncm_nortos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_ncm_freertos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_rndis_nortos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_rndis_freertos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x enet-cpsw_r5f.ti-arm-clang enet-cpsw_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x lwipif-cpsw-freertos_r5f.ti-arm-clang lwipif-cpsw-freertos_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x lwipif-cpsw-nortos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x enet-icssg_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x lwipif-icssg-freertos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x lwipif-ic-freertos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x lwipif-icssg-nortos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x icss_emac_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x icss_emac_lwip_if_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x icss_timesync_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x lwip-freertos_r5f.ti-arm-clang lwip-freertos_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x lwip-nortos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x lwip-contrib-freertos_r5f.ti-arm-clang lwip-contrib-freertos_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x lwip-contrib-nortos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x mbedtls_r5f.ti-arm-clang mbedtls_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x tsn_gptp-freertos_r5f.ti-arm-clang tsn_gptp-freertos_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x tsn_icssg_gptp-freertos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x tsn_icssg_combase-freertos_r5f.ti-arm-clang
@echo $(MAKE) -s -f makefile.am64x tsn_combase-freertos_r5f.ti-arm-clang tsn_combase-freertos_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x tsn_uniconf-freertos_r5f.ti-arm-clang tsn_uniconf-freertos_a53.gcc-aarch64
@echo $(MAKE) -s -f makefile.am64x tsn_unibase-freertos_r5f.ti-arm-clang tsn_unibase-freertos_a53.gcc-aarch64
@echo .
@echo Library clean targets,
@echo ======================
@echo $(MAKE) -s -f makefile.am64x board_r5f.ti-arm-clang_clean board_m4f.ti-arm-clang_clean board_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x cmsis_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x dhrystone_benchmark_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x drivers_r5f.ti-arm-clang_clean drivers_m4f.ti-arm-clang_clean drivers_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x freertos_fat_r5f.ti-arm-clang_clean freertos_fat_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x littlefs_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x middleware_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x nortos_r5f.ti-arm-clang_clean nortos_m4f.ti-arm-clang_clean nortos_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x freertos_r5f.ti-arm-clang_clean freertos_m4f.ti-arm-clang_clean freertos_a53.gcc-aarch64_clean freertos_a53-smp.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x mathlib_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x pru_ipc_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x sdl_m4f.ti-arm-clang_clean sdl_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x security_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x usbd_cdn_nortos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x usbd_cdn_freertos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_cdc_nortos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_cdc_freertos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_dfu_nortos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_dfu_freertos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_ncm_nortos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_ncm_freertos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_rndis_nortos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x usbd_tusb_rndis_freertos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x enet-cpsw_r5f.ti-arm-clang_clean enet-cpsw_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x lwipif-cpsw-freertos_r5f.ti-arm-clang_clean lwipif-cpsw-freertos_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x lwipif-cpsw-nortos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x enet-icssg_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x lwipif-icssg-freertos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x lwipif-ic-freertos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x lwipif-icssg-nortos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x icss_emac_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x icss_emac_lwip_if_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x icss_timesync_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x lwip-freertos_r5f.ti-arm-clang_clean lwip-freertos_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x lwip-nortos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x lwip-contrib-freertos_r5f.ti-arm-clang_clean lwip-contrib-freertos_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x lwip-contrib-nortos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x mbedtls_r5f.ti-arm-clang_clean mbedtls_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x tsn_gptp-freertos_r5f.ti-arm-clang_clean tsn_gptp-freertos_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x tsn_icssg_gptp-freertos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x tsn_icssg_combase-freertos_r5f.ti-arm-clang_clean
@echo $(MAKE) -s -f makefile.am64x tsn_combase-freertos_r5f.ti-arm-clang_clean tsn_combase-freertos_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x tsn_uniconf-freertos_r5f.ti-arm-clang_clean tsn_uniconf-freertos_a53.gcc-aarch64_clean
@echo $(MAKE) -s -f makefile.am64x tsn_unibase-freertos_r5f.ti-arm-clang_clean tsn_unibase-freertos_a53.gcc-aarch64_clean
@echo .
@echo Example build targets,
@echo ======================
@echo $(MAKE) -s -C examples/benchmarks/coremark_benchmark/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/benchmarks/dhrystone_benchmark/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/adc/adc_singleshot/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/adc/adc_singleshot/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/adc/adc_singleshot/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/adc/adc_singleshot/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_emmc/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_emmc_linux/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_jtag_uniflash/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_null/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_null/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_ospi/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_ospi/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_ospi_linux/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_ospi_multi_partition/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_ospi_multi_partition/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_pcie/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_pcie_host/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_sd/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_sd/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_uart/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_uart/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_uart_uniflash/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_uart_uniflash/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_dfu_uniflash/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/boot/sbl_dfu/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/crc/crc_full_cpu/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/crc/crc_full_cpu/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ddr/ddr_ecc_test_main_esm/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ddr/ddr_ecc_test_main_esm/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ecap/ecap_apwm_mode/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ecap/ecap_apwm_mode/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ecap/ecap_apwm_mode/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ecap/ecap_apwm_mode/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ecap/ecap_epwm_loopback/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ecap/ecap_epwm_loopback/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ecap/ecap_epwm_loopback/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ecap/ecap_epwm_loopback/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/epwm/epwm_duty_cycle/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/epwm/epwm_duty_cycle/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/epwm/epwm_duty_cycle/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/epwm/epwm_duty_cycle/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/epwm/epwm_duty_cycle_sync/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/epwm/epwm_duty_cycle_sync/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/epwm/epwm_duty_cycle_sync/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/eqep/eqep_capture/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/eqep/eqep_capture/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/eqep/eqep_capture/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/eqep/eqep_capture/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/fsi/fsi_loopback_interrupt/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/fsi/fsi_loopback_interrupt/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/fsi/fsi_loopback_polling/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/fsi/fsi_loopback_polling/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_free_run/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_free_run/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_free_run/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_free_run/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_overflow_callback/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_overflow_callback/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_overflow_callback/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_overflow_callback/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_compare_match_callback/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_compare_match_callback/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_compare_match_callback/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gp_timer/gp_timer_compare_match_callback/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_input_interrupt/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_input_interrupt/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_input_interrupt/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_input_interrupt/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_input_interrupt/am64x-evm/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_led_blink/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_led_blink/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_led_blink/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_led_blink/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_led_blink/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_led_blink/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_led_blink/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_led_blink/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_led_blink/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpio/gpio_led_blink/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpmc/gpmc_flash_io/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpmc/gpmc_flash_io/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpmc/gpmc_flash_io/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpmc/gpmc_psram_io/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/gpmc/gpmc_psram_io/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_read/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_read/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_read/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_read/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_read/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_read/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_read/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_read/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_temperature/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_temperature/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_temperature/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_temperature/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink_polling_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink_polling_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink_interrupt_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_blink_interrupt_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_read_write_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_led_read_write_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read_polling_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read_polling_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read_interrupt_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_memory_read_interrupt_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_temperature_polling_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_temperature_polling_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_temperature_interrupt_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/i2c/i2c_temperature_interrupt_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_dma/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_dma/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_interrupt/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_interrupt/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_interrupt/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_interrupt/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_interrupt/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_polling/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_polling/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_polling/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_polling/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_loopback_polling/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/canfd_loopback_polling/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/canfd_loopback_polling/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/canfd_loopback_interrupt/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/canfd_loopback_interrupt/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/canfd_loopback_dma/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/canfd_loopback_dma/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_dma/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_dma/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_dma/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_dma/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_dma/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_polling_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_polling_lld/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_polling_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_polling_lld/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_interrupt_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_interrupt_lld/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_interrupt_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_interrupt_lld/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_dma_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_dma_lld/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_dma_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_dma_lld/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_multi_instances_multi_channels_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_multi_instances_multi_channels_lld/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_8bit/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_8bit/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_8bit/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_8bit/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_8bit/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_8bit/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_8bit/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_32bit/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_32bit/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_32bit/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_32bit/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_32bit/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_32bit/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_performance_32bit/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_file_io/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_file_io/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_file_io/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_file_io/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_file_io/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io_sd_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io_sd_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io_sd_intr_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io_sd_intr_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io_emmc_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io_emmc_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io_emmc_intr_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mmcsd/mmcsd_raw_io_emmc_intr_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_diag/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_diag/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_diag_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_diag_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_dma/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_dma/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_dma/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_dma/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_file_io/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_file_io/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_file_io/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_file_io/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_io/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_io/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_io/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_io/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_xip/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_xip/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_xip/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_xip/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_interrupt/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_interrupt/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_interrupt_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_interrupt_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_dma_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ospi/ospi_flash_dma_lld/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_benchmark/pcie_benchmark_ep/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_benchmark/pcie_benchmark_rc/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_buf_transfer/pcie_buf_transfer_ep/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_buf_transfer/pcie_buf_transfer_rc/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_enumerate_ep/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_legacy_irq/pcie_legacy_irq_ep/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_legacy_irq/pcie_legacy_irq_rc/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_msi_irq/pcie_msi_irq_ep/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_msi_irq/pcie_msi_irq_rc/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_msix_irq/pcie_msix_irq_ep/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pcie/pcie_msix_irq/pcie_msix_irq_rc/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pmu/pmu_multievent/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pmu/pmu_multievent/am64x-evm/r5fss0-1_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pmu/pmu_multievent/am64x-evm/r5fss1-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pmu/pmu_multievent/am64x-evm/r5fss1-1_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pmu/pmu_multievent/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pmu/pmu_multievent/am64x-sk/r5fss0-1_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pmu/pmu_multievent/am64x-sk/r5fss1-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/pmu/pmu_multievent/am64x-sk/r5fss1-1_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-evm/r5fss0-1_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-evm/r5fss1-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-evm/r5fss1-1_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-sk/r5fss0-1_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-sk/r5fss1-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-sk/r5fss1-1_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-evm/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_get_version/am64x-sk/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_ccs_init/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/sciclient/sciclient_ccs_init/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_callback/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_dma/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_dma/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_dma/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_dma/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_dma_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_dma_lld/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_interrupt_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_interrupt_lld/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_low_latency_interrupt/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_low_latency_interrupt/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_low_latency_interrupt/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_low_latency_interrupt/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_low_latency_polling/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_low_latency_polling/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_low_latency_polling/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_low_latency_polling/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_polling_lld/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/uart/uart_echo_polling_lld/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_adc_read/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_adc_read/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_chaining/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_chaining/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_chaining/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_chaining/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_chaining/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_chaining/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_chaining/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_chaining/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-evm/r5fss0-1_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-evm/r5fss1-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-evm/r5fss1-1_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-sk/r5fss0-1_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-sk/r5fss1-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-sk/r5fss1-1_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_interrupt/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_polling/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_polling/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_polling/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_polling/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_polling/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_polling/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_polling/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_polling/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_polling/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_memcpy_polling/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_sw_trigger/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_sw_trigger/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_sw_trigger/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_sw_trigger/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_sw_trigger/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_sw_trigger/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_sw_trigger/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/udma/udma_sw_trigger/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/watchdog/watchdog_interrupt/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/watchdog/watchdog_interrupt/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/watchdog/watchdog_interrupt/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/watchdog/watchdog_interrupt/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_turbo_mode/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_turbo_mode/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcspi/mcspi_loopback_turbo_mode/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/empty/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/empty/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/empty/am64x-evm/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/empty/am64x-sk/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-evm/m4fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-sk/m4fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-evm/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world/am64x-sk/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world_cpp/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world_cpp/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world_cpp/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world_cpp/am64x-evm/m4fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world_cpp/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world_cpp/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world_cpp/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/hello_world_cpp/am64x-sk/m4fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-evm/m4fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-evm/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-sk/m4fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-sk/a53ss0-0_nortos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-evm/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/dpl_demo/am64x-sk/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/dhrystone_benchmark/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/dhrystone_benchmark/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/interrupt_profiling/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/posix_demo/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/posix_demo/am64x-evm/m4fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/posix_demo/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/posix_demo/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/posix_demo/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/posix_demo/am64x-sk/m4fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/posix_demo/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/posix_demo/am64x-sk/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/task_switch/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/task_switch/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/task_switch/am64x-evm/m4fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/task_switch/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/task_switch/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/task_switch/am64x-sk/m4fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/task_switch/am64x-evm/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/task_switch/am64x-sk/a53ss0-1_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/freertos/smp_task_switch/am64x-evm/a53ss0-0_freertos-smp/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/mathlib/benchmark/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/otp/runtime_swrev/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/otp/runtime_keyrev/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_aes/crypto_aes_cbc_256/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_aes/crypto_aes_cbc_128/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_aes/crypto_aes_ecb_256/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_aes/crypto_aes_ecb_128/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_aes/crypto_aes_cmac_128/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_aes/crypto_aes_cmac_256/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_sha/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_hmac_sha/crypto_hmac_sha1/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_hmac_sha/crypto_hmac_sha256/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_hmac_sha/crypto_hmac_sha512/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_hmac_sha/crypto_hmac_sha256_multishot/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_rng/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_pka/rsa_encryption_decryption/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_pka/rsa_signing_verification/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/security/crypto/sa2ul_pka/ecdsa_signing_verification/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/usb/device/dfu/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/usb/device/ncm/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/usb/device/rndis/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_loopback/enet_cpsw_loopback/loopback_mac_end/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_loopback/enet_cpsw_loopback/loopback_mac_end/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_loopback/enet_cpsw_loopback/loopback_mac_end/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_loopback/enet_cpsw_loopback/loopback_mac_end/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_loopback/enet_cpsw_loopback/loopback_phy_end/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_loopback/enet_cpsw_loopback/loopback_phy_end/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_loopback/enet_cpsw_loopback/loopback_phy_end/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_loopback/enet_cpsw_loopback/loopback_phy_end/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/cpsw_lwip_https/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/cpsw_lwip_https/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/cpsw_lwip_mqtt/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_lwip_cpsw/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_lwip_cpsw/am64x-evm/r5fss0-1_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_lwip_cpsw/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_lwip_cpsw/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_lwip_cpsw/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_tcpserver/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_tcpserver/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_rawhttpserver/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_udpclient/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_udpclient/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_udp_igmp/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_udp_igmp/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_tcpclient/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_tcpclient/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_socket/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_cpsw_socket/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_cpsw/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_cpsw/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_cpsw/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_cpsw/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_multi_channel/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_multi_channel/am64x-evm/r5fss0-1_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_cpsw_switch/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_cpsw_switch/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_cpsw_switch/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_cpsw_switch/am64x-sk/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_cpsw_est/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_cpsw_est/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/tsn/est_cpsw_app/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/tsn/est_cpsw_app/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/tsn/gptp_cpsw_app/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/tsn/gptp_cpsw_app/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/tsn/gptp_cpsw_app/am64x-sk/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/tsn/gptp_icssg_app/gptp_icssg_dualmac/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/tsn/gptp_icssg_app/gptp_icssg_switch/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/tsn/gptp_lwip_cpsw/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/tsn/gptp_lwip_cpsw/am64x-evm/a53ss0-0_freertos/gcc-aarch64 [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/tsn/gptp_lwip_icssg/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_loopback/enet_icssg_loopback/loopback_phy_end/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_icssg_tas/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_icssg/icssg_layer2_dualmac/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_layer2_icssg/icssg_layer2_switch/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/enet_vlan_icssg/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_icssg_tcpserver/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_lwip_icssg/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/pru_io/empty/am64x-evm/r5fss0-0_freertos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/pru_io/empty/firmware/am64x-evm/icss_g0_pru0_fw/ti-pru-cgt [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/pru_io/empty/firmware/am64x-evm/icss_g0_pru1_fw/ti-pru-cgt [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/pru_io/empty/firmware/am64x-evm/icss_g0_rtu_pru0_fw/ti-pru-cgt [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/pru_io/empty/firmware/am64x-evm/icss_g0_rtu_pru1_fw/ti-pru-cgt [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/pru_io/empty/firmware/am64x-evm/icss_g0_tx_pru0_fw/ti-pru-cgt [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/pru_io/empty/firmware/am64x-evm/icss_g0_tx_pru1_fw/ti-pru-cgt [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/otp/ext_otp/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/mcrc/mcrc_full_cpu/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/mcrc/mcrc_full_cpu/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/stog/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/dcc/dcc_modes/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/dcc/dcc_modes/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/pbist/pbist_mpu/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/pbist/pbist_mpu/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/esm/mcu_esm0/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/esm/mcu_esm0/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/pok/pok_mcu/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/pok/pok_mcu/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/rom_checksum/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/rti/UC1/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/rti/UC1/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/rti/UC2/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/rti/UC2/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/rti/UC3/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/rti/UC3/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/rti/UC4/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/rti/UC4/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/mtog/mtog_example/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/ecc/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/ecc/am64x-sk/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/ecc/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/ecc/am64x-sk/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/vtm/vtm_uc/am64x-evm/m4fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/vtm/vtm_uc/am64x-evm/r5fss0-0_nortos/ti-arm-clang [all clean syscfg-gui syscfg]
@echo .
@echo System Example build targets,
@echo =============================
@echo $(MAKE) -s -C examples/benchmarks/benchmark_demo/am64x-evm/system_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ddr/ddr_ecc_test_mcu_esm/am64x-evm/system_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ddr/ddr_ecc_test_mcu_esm/am64x-sk/system_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ipc/ipc_notify_echo/am64x-evm/system_freertos_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ipc/ipc_notify_echo/am64x-sk/system_freertos_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ipc/ipc_rpmsg_echo/am64x-evm/system_freertos_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ipc/ipc_rpmsg_echo/am64x-sk/system_freertos_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ipc/ipc_rpmsg_echo_linux/am64x-evm/system_freertos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ipc/ipc_safeipc_echo/am64x-evm/system_freertos_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/ipc/ipc_spinlock_sharedmem/am64x-evm/system_freertos_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_external_loopback_interrupt/am64x-evm/system_freertos_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/mcan/mcan_external_loopback_interrupt2/am64x-evm/system_freertos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/safety/reset_isolation/am64x-evm/system_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/safety/reset_isolation_ipc/am64x-evm/system_freertos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/drivers/spinlock/spinlock_example/am64x-evm/system_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/empty/am64x-evm/system_freertos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/empty/am64x-sk/system_freertos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/empty/am64x-evm/system_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/empty/am64x-sk/system_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/xip_benchmark/am64x-evm/system_freertos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/dpl/xip_benchmark/am64x-sk/system_freertos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/kernel/nortos/wfi_standby_demo/am64x-evm/system_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/usb/device/cdc_echo/am64x-evm/system_nortos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/usb/device/cdc_echo/am64x-evm/system_freertos [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C source/networking/enet/core/examples/lwip/enet_intercore_icssg/am64x-evm/system_enet_intercore_icssg [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/pru_io/adc/ads85x8/am64x-evm/system_freertos_prufw [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/pru_io/adc/ads127/am64x-evm/system_freertos_prufw [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/pru_io/adc/ads131/am64x-evm/system_freertos_prufw [all clean syscfg-gui syscfg]
@echo $(MAKE) -s -C examples/sdl/stog_r5f/am64x-evm/system_nortos [all clean syscfg-gui syscfg]
@echo .
# Various Component Targets
BUILD_COMBO_board = board_r5f.ti-arm-clang board_m4f.ti-arm-clang board_a53.gcc-aarch64
BUILD_COMBO_cmsis = cmsis_r5f.ti-arm-clang
BUILD_COMBO_dhrystone_benchmark = dhrystone_benchmark_a53.gcc-aarch64
BUILD_COMBO_drivers = drivers_r5f.ti-arm-clang drivers_m4f.ti-arm-clang drivers_a53.gcc-aarch64
BUILD_COMBO_freertos_fat = freertos_fat_r5f.ti-arm-clang freertos_fat_a53.gcc-aarch64
BUILD_COMBO_littlefs = littlefs_r5f.ti-arm-clang
BUILD_COMBO_middleware = middleware_r5f.ti-arm-clang
BUILD_COMBO_nortos = nortos_r5f.ti-arm-clang nortos_m4f.ti-arm-clang nortos_a53.gcc-aarch64
BUILD_COMBO_freertos = freertos_r5f.ti-arm-clang freertos_m4f.ti-arm-clang freertos_a53.gcc-aarch64 freertos_a53-smp.gcc-aarch64
BUILD_COMBO_mathlib = mathlib_r5f.ti-arm-clang
BUILD_COMBO_pru_ipc = pru_ipc_r5f.ti-arm-clang
BUILD_COMBO_sdl = sdl_m4f.ti-arm-clang sdl_r5f.ti-arm-clang
BUILD_COMBO_security = security_r5f.ti-arm-clang
BUILD_COMBO_usbd_cdn_nortos = usbd_cdn_nortos_r5f.ti-arm-clang
BUILD_COMBO_usbd_cdn_freertos = usbd_cdn_freertos_r5f.ti-arm-clang
BUILD_COMBO_usbd_tusb_cdc_nortos = usbd_tusb_cdc_nortos_r5f.ti-arm-clang
BUILD_COMBO_usbd_tusb_cdc_freertos = usbd_tusb_cdc_freertos_r5f.ti-arm-clang
BUILD_COMBO_usbd_tusb_dfu_nortos = usbd_tusb_dfu_nortos_r5f.ti-arm-clang
BUILD_COMBO_usbd_tusb_dfu_freertos = usbd_tusb_dfu_freertos_r5f.ti-arm-clang
BUILD_COMBO_usbd_tusb_ncm_nortos = usbd_tusb_ncm_nortos_r5f.ti-arm-clang
BUILD_COMBO_usbd_tusb_ncm_freertos = usbd_tusb_ncm_freertos_r5f.ti-arm-clang
BUILD_COMBO_usbd_tusb_rndis_nortos = usbd_tusb_rndis_nortos_r5f.ti-arm-clang
BUILD_COMBO_usbd_tusb_rndis_freertos = usbd_tusb_rndis_freertos_r5f.ti-arm-clang
BUILD_COMBO_enet-cpsw = enet-cpsw_r5f.ti-arm-clang enet-cpsw_a53.gcc-aarch64
BUILD_COMBO_lwipif-cpsw-freertos = lwipif-cpsw-freertos_r5f.ti-arm-clang lwipif-cpsw-freertos_a53.gcc-aarch64
BUILD_COMBO_lwipif-cpsw-nortos = lwipif-cpsw-nortos_r5f.ti-arm-clang
BUILD_COMBO_enet-icssg = enet-icssg_r5f.ti-arm-clang
BUILD_COMBO_lwipif-icssg-freertos = lwipif-icssg-freertos_r5f.ti-arm-clang
BUILD_COMBO_lwipif-ic-freertos = lwipif-ic-freertos_r5f.ti-arm-clang
BUILD_COMBO_lwipif-icssg-nortos = lwipif-icssg-nortos_r5f.ti-arm-clang
BUILD_COMBO_icss_emac = icss_emac_r5f.ti-arm-clang
BUILD_COMBO_icss_emac_lwip_if = icss_emac_lwip_if_r5f.ti-arm-clang
BUILD_COMBO_icss_timesync = icss_timesync_r5f.ti-arm-clang
BUILD_COMBO_lwip-freertos = lwip-freertos_r5f.ti-arm-clang lwip-freertos_a53.gcc-aarch64
BUILD_COMBO_lwip-nortos = lwip-nortos_r5f.ti-arm-clang
BUILD_COMBO_lwip-contrib-freertos = lwip-contrib-freertos_r5f.ti-arm-clang lwip-contrib-freertos_a53.gcc-aarch64
BUILD_COMBO_lwip-contrib-nortos = lwip-contrib-nortos_r5f.ti-arm-clang
BUILD_COMBO_mbedtls = mbedtls_r5f.ti-arm-clang mbedtls_a53.gcc-aarch64
BUILD_COMBO_tsn_gptp-freertos = tsn_gptp-freertos_r5f.ti-arm-clang tsn_gptp-freertos_a53.gcc-aarch64
BUILD_COMBO_tsn_icssg_gptp-freertos = tsn_icssg_gptp-freertos_r5f.ti-arm-clang
BUILD_COMBO_tsn_icssg_combase-freertos = tsn_icssg_combase-freertos_r5f.ti-arm-clang
BUILD_COMBO_tsn_combase-freertos = tsn_combase-freertos_r5f.ti-arm-clang tsn_combase-freertos_a53.gcc-aarch64
BUILD_COMBO_tsn_uniconf-freertos = tsn_uniconf-freertos_r5f.ti-arm-clang tsn_uniconf-freertos_a53.gcc-aarch64
BUILD_COMBO_tsn_unibase-freertos = tsn_unibase-freertos_r5f.ti-arm-clang tsn_unibase-freertos_a53.gcc-aarch64
# Combine all Components
BUILD_COMBO_ALL = $(BUILD_COMBO_board) $(BUILD_COMBO_dhrystone_benchmark) $(BUILD_COMBO_drivers) $(BUILD_COMBO_freertos_fat) $(BUILD_COMBO_littlefs) $(BUILD_COMBO_middleware) $(BUILD_COMBO_nortos) $(BUILD_COMBO_freertos) $(BUILD_COMBO_mathlib) $(BUILD_COMBO_pru_ipc) $(BUILD_COMBO_sdl) $(BUILD_COMBO_security) $(BUILD_COMBO_usbd_cdn_nortos) $(BUILD_COMBO_usbd_cdn_freertos) $(BUILD_COMBO_usbd_tusb_cdc_nortos) $(BUILD_COMBO_usbd_tusb_cdc_freertos) $(BUILD_COMBO_usbd_tusb_dfu_nortos) $(BUILD_COMBO_usbd_tusb_dfu_freertos) $(BUILD_COMBO_usbd_tusb_ncm_nortos) $(BUILD_COMBO_usbd_tusb_ncm_freertos) $(BUILD_COMBO_usbd_tusb_rndis_nortos) $(BUILD_COMBO_usbd_tusb_rndis_freertos) $(BUILD_COMBO_enet-cpsw) $(BUILD_COMBO_lwipif-cpsw-freertos) $(BUILD_COMBO_lwipif-cpsw-nortos) $(BUILD_COMBO_enet-icssg) $(BUILD_COMBO_lwipif-icssg-freertos) $(BUILD_COMBO_lwipif-ic-freertos) $(BUILD_COMBO_lwipif-icssg-nortos) $(BUILD_COMBO_icss_emac) $(BUILD_COMBO_icss_emac_lwip_if) $(BUILD_COMBO_icss_timesync) $(BUILD_COMBO_lwip-freertos) $(BUILD_COMBO_lwip-nortos) $(BUILD_COMBO_lwip-contrib-freertos) $(BUILD_COMBO_lwip-contrib-nortos) $(BUILD_COMBO_mbedtls) $(BUILD_COMBO_tsn_gptp-freertos) $(BUILD_COMBO_tsn_icssg_gptp-freertos) $(BUILD_COMBO_tsn_icssg_combase-freertos) $(BUILD_COMBO_tsn_combase-freertos) $(BUILD_COMBO_tsn_uniconf-freertos) $(BUILD_COMBO_tsn_unibase-freertos)
# Combine all Pre-built Components
BUILD_COMBO_PREBUILT_ALL = $(BUILD_COMBO_cmsis)
# Combine all Private Components
BUILD_COMBO_PRIVATE_ALL =
libs: $(BUILD_COMBO_ALL)
libs-prebuilt: $(BUILD_COMBO_PREBUILT_ALL)
libs-private: $(BUILD_COMBO_PRIVATE_ALL)
$(BUILD_COMBO_board):
$(MAKE) -C source/board -f makefile.am64x.$(subst board_,,$@) all
$(BUILD_COMBO_cmsis):
$(MAKE) -C source/cmsis -f makefile.am64x.$(subst cmsis_,,$@) all
$(BUILD_COMBO_dhrystone_benchmark):
$(MAKE) -C source/dhrystone_benchmark -f makefile.am64x.$(subst dhrystone_benchmark_,,$@) all
$(BUILD_COMBO_drivers):
$(MAKE) -C source/drivers -f makefile.am64x.$(subst drivers_,,$@) all
$(BUILD_COMBO_freertos_fat):
$(MAKE) -C source/fs/freertos_fat -f makefile.am64x.$(subst freertos_fat_,,$@) all
$(BUILD_COMBO_littlefs):
$(MAKE) -C source/fs/littlefs -f makefile.am64x.$(subst littlefs_,,$@) all
$(BUILD_COMBO_middleware):
$(MAKE) -C source/middleware -f makefile.am64x.$(subst middleware_,,$@) all
$(BUILD_COMBO_nortos):
$(MAKE) -C source/kernel/nortos -f makefile.am64x.$(subst nortos_,,$@) all
$(BUILD_COMBO_freertos):
$(MAKE) -C source/kernel/freertos -f makefile.am64x.$(subst freertos_,,$@) all
$(BUILD_COMBO_mathlib):
$(MAKE) -C source/mathlib -f makefile.am64x.$(subst mathlib_,,$@) all
$(BUILD_COMBO_pru_ipc):
$(MAKE) -C source/pru_io -f makefile.am64x.$(subst pru_ipc_,,$@) all
$(BUILD_COMBO_sdl):
$(MAKE) -C source/sdl -f makefile.am64x.$(subst sdl_,,$@) all
$(BUILD_COMBO_security):
$(MAKE) -C source/security -f makefile.am64x.$(subst security_,,$@) all
$(BUILD_COMBO_usbd_cdn_nortos):
$(MAKE) -C source/usb/cdn -f makefile.nortos.am64x.$(subst usbd_cdn_nortos_,,$@) all
$(BUILD_COMBO_usbd_cdn_freertos):
$(MAKE) -C source/usb/cdn -f makefile.freertos.am64x.$(subst usbd_cdn_freertos_,,$@) all
$(BUILD_COMBO_usbd_tusb_cdc_nortos):
$(MAKE) -C source/usb/tinyusb -f makefile.cdc_nortos.am64x.$(subst usbd_tusb_cdc_nortos_,,$@) all
$(BUILD_COMBO_usbd_tusb_cdc_freertos):
$(MAKE) -C source/usb/tinyusb -f makefile.cdc_freertos.am64x.$(subst usbd_tusb_cdc_freertos_,,$@) all
$(BUILD_COMBO_usbd_tusb_dfu_nortos):
$(MAKE) -C source/usb/tinyusb -f makefile.dfu_nortos.am64x.$(subst usbd_tusb_dfu_nortos_,,$@) all
$(BUILD_COMBO_usbd_tusb_dfu_freertos):
$(MAKE) -C source/usb/tinyusb -f makefile.dfu_freertos.am64x.$(subst usbd_tusb_dfu_freertos_,,$@) all
$(BUILD_COMBO_usbd_tusb_ncm_nortos):
$(MAKE) -C source/usb/tinyusb -f makefile.ncm_nortos.am64x.$(subst usbd_tusb_ncm_nortos_,,$@) all
$(BUILD_COMBO_usbd_tusb_ncm_freertos):
$(MAKE) -C source/usb/tinyusb -f makefile.ncm_freertos.am64x.$(subst usbd_tusb_ncm_freertos_,,$@) all
$(BUILD_COMBO_usbd_tusb_rndis_nortos):
$(MAKE) -C source/usb/tinyusb -f makefile.rndis_nortos.am64x.$(subst usbd_tusb_rndis_nortos_,,$@) all
$(BUILD_COMBO_usbd_tusb_rndis_freertos):
$(MAKE) -C source/usb/tinyusb -f makefile.rndis_freertos.am64x.$(subst usbd_tusb_rndis_freertos_,,$@) all
$(BUILD_COMBO_enet-cpsw):
$(MAKE) -C source/networking/enet -f makefile.cpsw.am64x.$(subst enet-cpsw_,,$@) all
$(BUILD_COMBO_lwipif-cpsw-freertos):
$(MAKE) -C source/networking/enet -f makefile.lwipif-cpsw-freertos.am64x.$(subst lwipif-cpsw-freertos_,,$@) all
$(BUILD_COMBO_lwipif-cpsw-nortos):
$(MAKE) -C source/networking/enet -f makefile.lwipif-cpsw-nortos.am64x.$(subst lwipif-cpsw-nortos_,,$@) all
$(BUILD_COMBO_enet-icssg):
$(MAKE) -C source/networking/enet -f makefile.icssg.am64x.$(subst enet-icssg_,,$@) all
$(BUILD_COMBO_lwipif-icssg-freertos):
$(MAKE) -C source/networking/enet -f makefile.lwipif-icssg-freertos.am64x.$(subst lwipif-icssg-freertos_,,$@) all
$(BUILD_COMBO_lwipif-ic-freertos):
$(MAKE) -C source/networking/enet -f makefile.lwipif-ic-freertos.am64x.$(subst lwipif-ic-freertos_,,$@) all
$(BUILD_COMBO_lwipif-icssg-nortos):
$(MAKE) -C source/networking/enet -f makefile.lwipif-icssg-nortos.am64x.$(subst lwipif-icssg-nortos_,,$@) all
$(BUILD_COMBO_icss_emac):
$(MAKE) -C source/networking/icss_emac -f makefile.am64x.$(subst icss_emac_,,$@) all
$(BUILD_COMBO_icss_emac_lwip_if):
$(MAKE) -C source/networking/icss_emac/lwipif -f makefile.am64x.$(subst icss_emac_lwip_if_,,$@) all
$(BUILD_COMBO_icss_timesync):
$(MAKE) -C source/networking/icss_timesync -f makefile.am64x.$(subst icss_timesync_,,$@) all
$(BUILD_COMBO_lwip-freertos):
$(MAKE) -C source/networking/lwip -f makefile.stack_freertos.am64x.$(subst lwip-freertos_,,$@) all
$(BUILD_COMBO_lwip-nortos):
$(MAKE) -C source/networking/lwip -f makefile.stack_nortos.am64x.$(subst lwip-nortos_,,$@) all
$(BUILD_COMBO_lwip-contrib-freertos):
$(MAKE) -C source/networking/lwip -f makefile.contrib-freertos.am64x.$(subst lwip-contrib-freertos_,,$@) all
$(BUILD_COMBO_lwip-contrib-nortos):
$(MAKE) -C source/networking/lwip -f makefile.contrib-nortos.am64x.$(subst lwip-contrib-nortos_,,$@) all
$(BUILD_COMBO_mbedtls):
$(MAKE) -C source/networking/mbedtls_library -f makefile.am64x.$(subst mbedtls_,,$@) all
$(BUILD_COMBO_tsn_gptp-freertos):
$(MAKE) -C source/networking/tsn -f makefile.tsn_gptp_freertos.am64x.$(subst tsn_gptp-freertos_,,$@) all
$(BUILD_COMBO_tsn_icssg_gptp-freertos):
$(MAKE) -C source/networking/tsn -f makefile.tsn_icssg_gptp_freertos.am64x.$(subst tsn_icssg_gptp-freertos_,,$@) all
$(BUILD_COMBO_tsn_icssg_combase-freertos):
$(MAKE) -C source/networking/tsn -f makefile.tsn_icssg_combase_freertos.am64x.$(subst tsn_icssg_combase-freertos_,,$@) all
$(BUILD_COMBO_tsn_combase-freertos):
$(MAKE) -C source/networking/tsn -f makefile.tsn_combase_freertos.am64x.$(subst tsn_combase-freertos_,,$@) all
$(BUILD_COMBO_tsn_uniconf-freertos):
$(MAKE) -C source/networking/tsn -f makefile.tsn_uniconf_freertos.am64x.$(subst tsn_uniconf-freertos_,,$@) all
$(BUILD_COMBO_tsn_unibase-freertos):
$(MAKE) -C source/networking/tsn -f makefile.tsn_unibase_freertos.am64x.$(subst tsn_unibase-freertos_,,$@) all
# Various Component Clean Targets
BUILD_COMBO_CLEAN_board = board_r5f.ti-arm-clang_clean board_m4f.ti-arm-clang_clean board_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_cmsis = cmsis_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_dhrystone_benchmark = dhrystone_benchmark_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_drivers = drivers_r5f.ti-arm-clang_clean drivers_m4f.ti-arm-clang_clean drivers_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_freertos_fat = freertos_fat_r5f.ti-arm-clang_clean freertos_fat_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_littlefs = littlefs_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_middleware = middleware_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_nortos = nortos_r5f.ti-arm-clang_clean nortos_m4f.ti-arm-clang_clean nortos_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_freertos = freertos_r5f.ti-arm-clang_clean freertos_m4f.ti-arm-clang_clean freertos_a53.gcc-aarch64_clean freertos_a53-smp.gcc-aarch64_clean
BUILD_COMBO_CLEAN_mathlib = mathlib_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_pru_ipc = pru_ipc_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_sdl = sdl_m4f.ti-arm-clang_clean sdl_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_security = security_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_usbd_cdn_nortos = usbd_cdn_nortos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_usbd_cdn_freertos = usbd_cdn_freertos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_usbd_tusb_cdc_nortos = usbd_tusb_cdc_nortos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_usbd_tusb_cdc_freertos = usbd_tusb_cdc_freertos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_usbd_tusb_dfu_nortos = usbd_tusb_dfu_nortos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_usbd_tusb_dfu_freertos = usbd_tusb_dfu_freertos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_usbd_tusb_ncm_nortos = usbd_tusb_ncm_nortos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_usbd_tusb_ncm_freertos = usbd_tusb_ncm_freertos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_usbd_tusb_rndis_nortos = usbd_tusb_rndis_nortos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_usbd_tusb_rndis_freertos = usbd_tusb_rndis_freertos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_enet-cpsw = enet-cpsw_r5f.ti-arm-clang_clean enet-cpsw_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_lwipif-cpsw-freertos = lwipif-cpsw-freertos_r5f.ti-arm-clang_clean lwipif-cpsw-freertos_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_lwipif-cpsw-nortos = lwipif-cpsw-nortos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_enet-icssg = enet-icssg_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_lwipif-icssg-freertos = lwipif-icssg-freertos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_lwipif-ic-freertos = lwipif-ic-freertos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_lwipif-icssg-nortos = lwipif-icssg-nortos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_icss_emac = icss_emac_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_icss_emac_lwip_if = icss_emac_lwip_if_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_icss_timesync = icss_timesync_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_lwip-freertos = lwip-freertos_r5f.ti-arm-clang_clean lwip-freertos_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_lwip-nortos = lwip-nortos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_lwip-contrib-freertos = lwip-contrib-freertos_r5f.ti-arm-clang_clean lwip-contrib-freertos_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_lwip-contrib-nortos = lwip-contrib-nortos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_mbedtls = mbedtls_r5f.ti-arm-clang_clean mbedtls_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_tsn_gptp-freertos = tsn_gptp-freertos_r5f.ti-arm-clang_clean tsn_gptp-freertos_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_tsn_icssg_gptp-freertos = tsn_icssg_gptp-freertos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_tsn_icssg_combase-freertos = tsn_icssg_combase-freertos_r5f.ti-arm-clang_clean
BUILD_COMBO_CLEAN_tsn_combase-freertos = tsn_combase-freertos_r5f.ti-arm-clang_clean tsn_combase-freertos_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_tsn_uniconf-freertos = tsn_uniconf-freertos_r5f.ti-arm-clang_clean tsn_uniconf-freertos_a53.gcc-aarch64_clean
BUILD_COMBO_CLEAN_tsn_unibase-freertos = tsn_unibase-freertos_r5f.ti-arm-clang_clean tsn_unibase-freertos_a53.gcc-aarch64_clean
# Combine all Components Clean
BUILD_COMBO_CLEAN_ALL = $(BUILD_COMBO_CLEAN_board) $(BUILD_COMBO_CLEAN_dhrystone_benchmark) $(BUILD_COMBO_CLEAN_drivers) $(BUILD_COMBO_CLEAN_freertos_fat) $(BUILD_COMBO_CLEAN_littlefs) $(BUILD_COMBO_CLEAN_middleware) $(BUILD_COMBO_CLEAN_nortos) $(BUILD_COMBO_CLEAN_freertos) $(BUILD_COMBO_CLEAN_mathlib) $(BUILD_COMBO_CLEAN_pru_ipc) $(BUILD_COMBO_CLEAN_sdl) $(BUILD_COMBO_CLEAN_security) $(BUILD_COMBO_CLEAN_usbd_cdn_nortos) $(BUILD_COMBO_CLEAN_usbd_cdn_freertos) $(BUILD_COMBO_CLEAN_usbd_tusb_cdc_nortos) $(BUILD_COMBO_CLEAN_usbd_tusb_cdc_freertos) $(BUILD_COMBO_CLEAN_usbd_tusb_dfu_nortos) $(BUILD_COMBO_CLEAN_usbd_tusb_dfu_freertos) $(BUILD_COMBO_CLEAN_usbd_tusb_ncm_nortos) $(BUILD_COMBO_CLEAN_usbd_tusb_ncm_freertos) $(BUILD_COMBO_CLEAN_usbd_tusb_rndis_nortos) $(BUILD_COMBO_CLEAN_usbd_tusb_rndis_freertos) $(BUILD_COMBO_CLEAN_enet-cpsw) $(BUILD_COMBO_CLEAN_lwipif-cpsw-freertos) $(BUILD_COMBO_CLEAN_lwipif-cpsw-nortos) $(BUILD_COMBO_CLEAN_enet-icssg) $(BUILD_COMBO_CLEAN_lwipif-icssg-freertos) $(BUILD_COMBO_CLEAN_lwipif-ic-freertos) $(BUILD_COMBO_CLEAN_lwipif-icssg-nortos) $(BUILD_COMBO_CLEAN_icss_emac) $(BUILD_COMBO_CLEAN_icss_emac_lwip_if) $(BUILD_COMBO_CLEAN_icss_timesync) $(BUILD_COMBO_CLEAN_lwip-freertos) $(BUILD_COMBO_CLEAN_lwip-nortos) $(BUILD_COMBO_CLEAN_lwip-contrib-freertos) $(BUILD_COMBO_CLEAN_lwip-contrib-nortos) $(BUILD_COMBO_CLEAN_mbedtls) $(BUILD_COMBO_CLEAN_tsn_gptp-freertos) $(BUILD_COMBO_CLEAN_tsn_icssg_gptp-freertos) $(BUILD_COMBO_CLEAN_tsn_icssg_combase-freertos) $(BUILD_COMBO_CLEAN_tsn_combase-freertos) $(BUILD_COMBO_CLEAN_tsn_uniconf-freertos) $(BUILD_COMBO_CLEAN_tsn_unibase-freertos)
# Combine all Pre-built Components Clean
BUILD_COMBO_PREBUILT_CLEAN_ALL = $(BUILD_COMBO_CLEAN_cmsis)
libs-clean: $(BUILD_COMBO_CLEAN_ALL)
libs-prebuilt-clean: $(BUILD_COMBO_PREBUILT_CLEAN_ALL)
$(BUILD_COMBO_CLEAN_board):
$(MAKE) -C source/board -f makefile.am64x.$(subst board_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_cmsis):
$(MAKE) -C source/cmsis -f makefile.am64x.$(subst cmsis_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_dhrystone_benchmark):
$(MAKE) -C source/dhrystone_benchmark -f makefile.am64x.$(subst dhrystone_benchmark_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_drivers):
$(MAKE) -C source/drivers -f makefile.am64x.$(subst drivers_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_freertos_fat):
$(MAKE) -C source/fs/freertos_fat -f makefile.am64x.$(subst freertos_fat_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_littlefs):
$(MAKE) -C source/fs/littlefs -f makefile.am64x.$(subst littlefs_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_middleware):
$(MAKE) -C source/middleware -f makefile.am64x.$(subst middleware_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_nortos):
$(MAKE) -C source/kernel/nortos -f makefile.am64x.$(subst nortos_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_freertos):
$(MAKE) -C source/kernel/freertos -f makefile.am64x.$(subst freertos_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_mathlib):
$(MAKE) -C source/mathlib -f makefile.am64x.$(subst mathlib_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_pru_ipc):
$(MAKE) -C source/pru_io -f makefile.am64x.$(subst pru_ipc_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_sdl):
$(MAKE) -C source/sdl -f makefile.am64x.$(subst sdl_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_security):
$(MAKE) -C source/security -f makefile.am64x.$(subst security_,,$(subst _clean,,$@)) clean
$(BUILD_COMBO_CLEAN_usbd_cdn_nortos):
$(MAKE) -C source/usb/cdn -f makefile.nortos.am64x.$(subst usbd_cdn_nortos_,,$(subst _clean,,$@)) clean