From 29506d2cac029aac6d88f68f4ae54d773bfb75a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Frauenschl=C3=A4ger?= Date: Mon, 20 Jul 2026 16:22:51 +0200 Subject: [PATCH] build: distribute IDE project trees per-directory to fix "make dist" The non-recursive automake "distdir" recipe inlines the entire $(DISTFILES) list into a single shell command. Enumerating every IDE integration file individually made that list large enough (~123 KB) that the recipe exceeded the Linux MAX_ARG_STRLEN (128 KB) single-argument exec limit, so "make dist" failed with: /bin/bash: Argument list too long make[2]: *** [distdir-am] Error 127 Replace the per-file EXTRA_DIST enumeration of the IDE directories with one wholesale "EXTRA_DIST += IDE/" entry per directory (automake copies the tree recursively). This collapses ~745 file entries into ~52 directory entries and shrinks the top-level DISTFILES from ~123 KB to ~97 KB, well under the limit. The set of distributed IDE files is unchanged: a before/after "make dist" diff shows no project file added or removed (only the now-unused include.am build fragments are gone). Three directories that intentionally omit some tracked files (apple-universal, MPLABX16, Renesas - private IDE configs, .gitkeep placeholders, helper scripts) stay enumerated file-by-file. --- IDE/ARDUINO/include.am | 33 ----- IDE/AURIX/include.am | 8 - IDE/Android/include.am | 8 - IDE/CRYPTOCELL/include.am | 8 - IDE/CSBENCH/include.am | 8 - IDE/ECLIPSE/DEOS/include.am | 13 -- IDE/ECLIPSE/MICRIUM/include.am | 12 -- IDE/ECLIPSE/RTTHREAD/include.am | 8 - IDE/ECLIPSE/SIFIVE/include.am | 6 - IDE/Espressif/include.am | 205 -------------------------- IDE/GCC-ARM/include.am | 22 --- IDE/Gaisler-BCC/include.am | 4 - IDE/HEXAGON/include.am | 14 -- IDE/IAR-MSP430/include.am | 9 -- IDE/INTIME-RTOS/include.am | 16 -- IDE/Infineon/include.am | 7 - IDE/KDS/include.am | 7 - IDE/LINUX-SGX/include.am | 8 - IDE/M68K/include.am | 11 -- IDE/MCUEXPRESSO/include.am | 28 ---- IDE/MDK5-ARM/include.am | 9 -- IDE/MQX/include.am | 11 -- IDE/MSVS-2019-AZSPHERE/include.am | 25 ---- IDE/NETOS/include.am | 11 -- IDE/PlatformIO/include.am | 41 ------ IDE/QNX/include.am | 23 --- IDE/RISCV/SIFIVE-HIFIVE1/include.am | 9 -- IDE/RISCV/SIFIVE-UNLEASHED/include.am | 5 - IDE/RISCV/include.am | 6 - IDE/ROWLEY-CROSSWORKS-ARM/include.am | 15 -- IDE/STARCORE/include.am | 13 -- IDE/STM32Cube/include.am | 10 -- IDE/SimplicityStudio/include.am | 7 - IDE/TRUESTUDIO/include.am | 12 -- IDE/VS-ARM/include.am | 8 - IDE/VS-AZURE-SPHERE/include.am | 19 --- IDE/VisualDSP/include.am | 6 - IDE/WICED-STUDIO/include.am | 6 - IDE/WIN-SGX/include.am | 9 -- IDE/WIN-SRTP-KDF-140-3/include.am | 11 -- IDE/WIN/include.am | 10 -- IDE/WIN10/include.am | 11 -- IDE/WINCE/include.am | 7 - IDE/WORKBENCH/include.am | 5 - IDE/XCODE-FIPSv2/include.am | 13 -- IDE/XCODE-FIPSv5/include.am | 9 -- IDE/XCODE-FIPSv6/include.am | 9 -- IDE/XCODE/Benchmark/include.am | 14 -- IDE/XCODE/include.am | 13 -- IDE/XilinxSDK/include.am | 33 ----- IDE/include.am | 126 +++++++++------- IDE/iotsafe/include.am | 17 --- IDE/mynewt/include.am | 10 -- IDE/zephyr/include.am | 5 - 54 files changed, 69 insertions(+), 904 deletions(-) delete mode 100644 IDE/ARDUINO/include.am delete mode 100644 IDE/AURIX/include.am delete mode 100644 IDE/Android/include.am delete mode 100644 IDE/CRYPTOCELL/include.am delete mode 100644 IDE/CSBENCH/include.am delete mode 100644 IDE/ECLIPSE/DEOS/include.am delete mode 100644 IDE/ECLIPSE/MICRIUM/include.am delete mode 100644 IDE/ECLIPSE/RTTHREAD/include.am delete mode 100644 IDE/ECLIPSE/SIFIVE/include.am delete mode 100644 IDE/Espressif/include.am delete mode 100644 IDE/GCC-ARM/include.am delete mode 100644 IDE/Gaisler-BCC/include.am delete mode 100644 IDE/HEXAGON/include.am delete mode 100644 IDE/IAR-MSP430/include.am delete mode 100644 IDE/INTIME-RTOS/include.am delete mode 100644 IDE/Infineon/include.am delete mode 100644 IDE/KDS/include.am delete mode 100644 IDE/LINUX-SGX/include.am delete mode 100644 IDE/M68K/include.am delete mode 100644 IDE/MCUEXPRESSO/include.am delete mode 100644 IDE/MDK5-ARM/include.am delete mode 100644 IDE/MQX/include.am delete mode 100644 IDE/MSVS-2019-AZSPHERE/include.am delete mode 100644 IDE/NETOS/include.am delete mode 100644 IDE/PlatformIO/include.am delete mode 100644 IDE/QNX/include.am delete mode 100644 IDE/RISCV/SIFIVE-HIFIVE1/include.am delete mode 100644 IDE/RISCV/SIFIVE-UNLEASHED/include.am delete mode 100644 IDE/RISCV/include.am delete mode 100644 IDE/ROWLEY-CROSSWORKS-ARM/include.am delete mode 100644 IDE/STARCORE/include.am delete mode 100644 IDE/STM32Cube/include.am delete mode 100644 IDE/SimplicityStudio/include.am delete mode 100644 IDE/TRUESTUDIO/include.am delete mode 100644 IDE/VS-ARM/include.am delete mode 100644 IDE/VS-AZURE-SPHERE/include.am delete mode 100644 IDE/VisualDSP/include.am delete mode 100644 IDE/WICED-STUDIO/include.am delete mode 100644 IDE/WIN-SGX/include.am delete mode 100644 IDE/WIN-SRTP-KDF-140-3/include.am delete mode 100644 IDE/WIN/include.am delete mode 100644 IDE/WIN10/include.am delete mode 100644 IDE/WINCE/include.am delete mode 100644 IDE/WORKBENCH/include.am delete mode 100644 IDE/XCODE-FIPSv2/include.am delete mode 100644 IDE/XCODE-FIPSv5/include.am delete mode 100644 IDE/XCODE-FIPSv6/include.am delete mode 100644 IDE/XCODE/Benchmark/include.am delete mode 100644 IDE/XCODE/include.am delete mode 100644 IDE/XilinxSDK/include.am delete mode 100644 IDE/iotsafe/include.am delete mode 100644 IDE/mynewt/include.am delete mode 100644 IDE/zephyr/include.am diff --git a/IDE/ARDUINO/include.am b/IDE/ARDUINO/include.am deleted file mode 100644 index cf1695fabb..0000000000 --- a/IDE/ARDUINO/include.am +++ /dev/null @@ -1,33 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -# Library files: -EXTRA_DIST+= IDE/ARDUINO/README.md - -# There's an Arduino-specific Arduino_README_prepend.md that will be prepended to wolfSSL README.md -# Not to be confused with the interim PREPENDED_README.md that is created by script. -EXTRA_DIST+= IDE/ARDUINO/Arduino_README_prepend.md - -# Core library files -EXTRA_DIST+= IDE/ARDUINO/wolfssl.h -EXTRA_DIST+= IDE/ARDUINO/wolfssl.h -EXTRA_DIST+= IDE/ARDUINO/wolfssl-arduino.cpp - -EXTRA_DIST+= IDE/ARDUINO/keywords.txt -EXTRA_DIST+= IDE/ARDUINO/library.properties.template - -# Sketch Examples -EXTRA_DIST+= IDE/ARDUINO/sketches/README.md - -# wolfssl_client example sketch -EXTRA_DIST+= IDE/ARDUINO/sketches/wolfssl_client/README.md - -# wolfssl_server example sketch -EXTRA_DIST+= IDE/ARDUINO/sketches/wolfssl_server/README.md - -# wolfssl_version example sketch -EXTRA_DIST+= IDE/ARDUINO/sketches/wolfssl_version/README.md - -# Publishing script, either local install or to github.com/wolfSSL/Arduino-wolfSSL clone directory. -EXTRA_DIST+= IDE/ARDUINO/wolfssl-arduino.sh diff --git a/IDE/AURIX/include.am b/IDE/AURIX/include.am deleted file mode 100644 index f07505150e..0000000000 --- a/IDE/AURIX/include.am +++ /dev/null @@ -1,8 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/AURIX/Cpu0_Main.c -EXTRA_DIST+= IDE/AURIX/README.md -EXTRA_DIST+= IDE/AURIX/user_settings.h -EXTRA_DIST+= IDE/AURIX/wolf_main.c diff --git a/IDE/Android/include.am b/IDE/Android/include.am deleted file mode 100644 index 961d9e054b..0000000000 --- a/IDE/Android/include.am +++ /dev/null @@ -1,8 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST += \ - IDE/Android/Android.bp \ - IDE/Android/README.md \ - IDE/Android/user_settings.h diff --git a/IDE/CRYPTOCELL/include.am b/IDE/CRYPTOCELL/include.am deleted file mode 100644 index 1ec1702990..0000000000 --- a/IDE/CRYPTOCELL/include.am +++ /dev/null @@ -1,8 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST += \ - IDE/CRYPTOCELL/README.md \ - IDE/CRYPTOCELL/main.c \ - IDE/CRYPTOCELL/user_settings.h diff --git a/IDE/CSBENCH/include.am b/IDE/CSBENCH/include.am deleted file mode 100644 index 2f9241596c..0000000000 --- a/IDE/CSBENCH/include.am +++ /dev/null @@ -1,8 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/CSBENCH/.project -EXTRA_DIST+= IDE/CSBENCH/.cproject -EXTRA_DIST+= IDE/CSBENCH/user_settings.h - diff --git a/IDE/ECLIPSE/DEOS/include.am b/IDE/ECLIPSE/DEOS/include.am deleted file mode 100644 index 88dc9a3ffd..0000000000 --- a/IDE/ECLIPSE/DEOS/include.am +++ /dev/null @@ -1,13 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST += \ - IDE/ECLIPSE/DEOS/README.md \ - IDE/ECLIPSE/DEOS/user_settings.h \ - IDE/ECLIPSE/DEOS/tls_wolfssl.h \ - IDE/ECLIPSE/DEOS/tls_wolfssl.c \ - IDE/ECLIPSE/DEOS/deos_malloc.c \ - IDE/ECLIPSE/DEOS/deos_wolfssl/.cproject \ - IDE/ECLIPSE/DEOS/deos_wolfssl/.options \ - IDE/ECLIPSE/DEOS/deos_wolfssl/.project diff --git a/IDE/ECLIPSE/MICRIUM/include.am b/IDE/ECLIPSE/MICRIUM/include.am deleted file mode 100644 index be7b1dfa53..0000000000 --- a/IDE/ECLIPSE/MICRIUM/include.am +++ /dev/null @@ -1,12 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST += \ - IDE/ECLIPSE/MICRIUM/README.md \ - IDE/ECLIPSE/MICRIUM/user_settings.h \ - IDE/ECLIPSE/MICRIUM/client_wolfssl.h \ - IDE/ECLIPSE/MICRIUM/server_wolfssl.h \ - IDE/ECLIPSE/MICRIUM/client_wolfssl.c \ - IDE/ECLIPSE/MICRIUM/server_wolfssl.c \ - IDE/ECLIPSE/MICRIUM/wolfsslRunTests.c diff --git a/IDE/ECLIPSE/RTTHREAD/include.am b/IDE/ECLIPSE/RTTHREAD/include.am deleted file mode 100644 index 13b8657e7f..0000000000 --- a/IDE/ECLIPSE/RTTHREAD/include.am +++ /dev/null @@ -1,8 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST += \ - IDE/ECLIPSE/RTTHREAD/README.md \ - IDE/ECLIPSE/RTTHREAD/user_settings.h \ - IDE/ECLIPSE/RTTHREAD/wolfssl_test.c diff --git a/IDE/ECLIPSE/SIFIVE/include.am b/IDE/ECLIPSE/SIFIVE/include.am deleted file mode 100644 index 448ca0de13..0000000000 --- a/IDE/ECLIPSE/SIFIVE/include.am +++ /dev/null @@ -1,6 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST += \ - IDE/ECLIPSE/SIFIVE/README.md diff --git a/IDE/Espressif/include.am b/IDE/Espressif/include.am deleted file mode 100644 index 3d356b7671..0000000000 --- a/IDE/Espressif/include.am +++ /dev/null @@ -1,205 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root -# -# NOTE: append_wolfssl_git_version.sh is not included as the -# distribution file set will not contain GitHub info -# -# see: https://github.com/wolfSSL/wolfssl/pull/5955 -# -# Don't list any config.h files here - -EXTRA_DIST+= IDE/Espressif/ESP-IDF/compileAllExamples.sh -EXTRA_DIST+= IDE/Espressif/ESP-IDF/dummy_config_h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/dummy_test_paths.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/README_32se.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/setup.sh -EXTRA_DIST+= IDE/Espressif/ESP-IDF/setup_win.bat -EXTRA_DIST+= IDE/Espressif/ESP-IDF/UPDATE.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/user_settings.h - -# Template -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/components -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/components/wolfssl -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/components/wolfssl/Kconfig -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/components/wolfssl/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/components/wolfssl/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/components/wolfssl/Kconfig -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/components/wolfssl/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/components/wolfssl/include -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/components/wolfssl/include/user_settings.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/Makefile -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/main/main.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/main/Kconfig.projbuild -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/main/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/main/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/main/include -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/main/include/main.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/partitions_singleapp_large.csv -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/sdkconfig.defaults -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/sdkconfig.defaults.esp8266 -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/VisualGDB - -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/template/VisualGDB/wolfssl_template_IDF_v5.1_ESP32.vgdbproj - -# Benchmark -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/components -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/components/wolfssl -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/components/wolfssl/Kconfig -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/components/wolfssl/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/components/wolfssl/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/components/wolfssl/Kconfig -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/components/wolfssl/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/components/wolfssl/include -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/components/wolfssl/include/user_settings.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/main -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/main/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/main/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/main/include -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/main/Kconfig.projbuild -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/main/main.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/main/include/main.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/Makefile -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/partitions_singleapp_large.csv -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/sdkconfig.defaults -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/sdkconfig.defaults.esp8266 -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/VisualGDB -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/VisualGDB/wolfssl_benchmark_IDF_v4.4_ESP32.sln -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/VisualGDB/wolfssl_benchmark_IDF_v5_ESP32.sln -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/VisualGDB/wolfssl_benchmark_IDF_v5_ESP32C3.sln -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/VisualGDB/wolfssl_benchmark_IDF_v5_ESP32S3.sln -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/VisualGDB/wolfssl_benchmark_IDF_v4.4_ESP32.vgdbproj -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/VisualGDB/wolfssl_benchmark_IDF_v5_ESP32.vgdbproj -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/VisualGDB/wolfssl_benchmark_IDF_v5_ESP32C3.vgdbproj -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_benchmark/VisualGDB/wolfssl_benchmark_IDF_v5_ESP32S3.vgdbproj - -# TLS Client -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/components -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/components/wolfssl -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/components/wolfssl/Kconfig -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/components/wolfssl/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/components/wolfssl/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/components/wolfssl/Kconfig -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/components/wolfssl/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/components/wolfssl/include -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/components/wolfssl/include/user_settings.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/sdkconfig.defaults -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/sdkconfig.defaults.esp32c2 -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/sdkconfig.defaults.esp8266 -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/client-tls.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/include -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/Kconfig.projbuild -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/main.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/time_helper.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/wifi_connect.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/include/client-tls.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/include/main.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/include/time_helper.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/main/include/wifi_connect.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/Makefile -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/partitions_singleapp_large.csv -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/README_server_sm.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/VisualGDB/README.md - -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/wolfssl_client_ESP8266.vgdbproj -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/VisualGDB/wolfssl_client_IDF_v5_ESP32.sln -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_client/VisualGDB/wolfssl_client_IDF_v5_ESP32.vgdbproj - -# TLS Server - -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/components -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/components/wolfssl -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/components/wolfssl/Kconfig -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/components/wolfssl/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/components/wolfssl/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/components/wolfssl/Kconfig -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/components/wolfssl/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/components/wolfssl/include -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/components/wolfssl/include/user_settings.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/include -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/Kconfig.projbuild -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/main.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/server-tls.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/time_helper.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/wifi_connect.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/include/main.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/include/server-tls.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/include/time_helper.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/main/include/wifi_connect.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/Makefile -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/partitions_singleapp_large.csv -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/README_server_sm.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/sdkconfig.defaults -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/sdkconfig.defaults.esp32c2 -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/sdkconfig.defaults.esp8266 - -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/wolfssl_server_ESP8266.vgdbproj -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/VisualGDB -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/VisualGDB/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/VisualGDB/wolfssl_server_IDF_v5_ESP32.sln -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_server/VisualGDB/wolfssl_server_IDF_v5_ESP32.vgdbproj - -# wolfSSL Test -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/testAll.sh -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/testMonitor.sh - -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/components/wolfssl -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/components/wolfssl/Kconfig -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/components/wolfssl/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/components/wolfssl/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/components/wolfssl/Kconfig -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/components/wolfssl/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/components/wolfssl/include -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/components/wolfssl/include/user_settings.h - -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/main -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/main/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/main/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/main/include -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/main/Kconfig.projbuild -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/main/main.c -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/main/include/main.h -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/Makefile -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/partitions_singleapp_large.csv -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/sdkconfig.defaults -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/sdkconfig.defaults.esp8266 -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/VisualGDB - -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/wolfssl_test_ESP8266.vgdbproj -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/VisualGDB/wolfssl_test-IDF_v5_ESP32.sln -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/VisualGDB/wolfssl_test-IDF_v5_ESP32C3.sln -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/VisualGDB/wolfssl_test-IDF_v5_ESP32C6.sln -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/VisualGDB/wolfssl_test_IDF_v5_ESP32S3.sln -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/VisualGDB/wolfssl_test-IDF_v5_ESP32.vgdbproj -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/VisualGDB/wolfssl_test-IDF_v5_ESP32C3.vgdbproj -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/VisualGDB/wolfssl_test-IDF_v5_ESP32C6.vgdbproj -EXTRA_DIST+= IDE/Espressif/ESP-IDF/examples/wolfssl_test/VisualGDB/wolfssl_test_IDF_v5_ESP32S3.vgdbproj - -# lib files -EXTRA_DIST+= IDE/Espressif/ESP-IDF/libs/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/libs/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/libs/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/libs/tigard.cfg - -# Other test for wolfSSL installed in the ESP-IDF -EXTRA_DIST+= IDE/Espressif/ESP-IDF/test/CMakeLists.txt -EXTRA_DIST+= IDE/Espressif/ESP-IDF/test/component.mk -EXTRA_DIST+= IDE/Espressif/ESP-IDF/test/README.md -EXTRA_DIST+= IDE/Espressif/ESP-IDF/test/test_wolfssl.c diff --git a/IDE/GCC-ARM/include.am b/IDE/GCC-ARM/include.am deleted file mode 100644 index 61d6eeb19a..0000000000 --- a/IDE/GCC-ARM/include.am +++ /dev/null @@ -1,22 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/GCC-ARM/Header/user_settings.h -EXTRA_DIST+= IDE/GCC-ARM/Source/armtarget.c -EXTRA_DIST+= IDE/GCC-ARM/Source/wolf_main.c -EXTRA_DIST+= IDE/GCC-ARM/Source/benchmark_main.c -EXTRA_DIST+= IDE/GCC-ARM/Source/test_main.c -EXTRA_DIST+= IDE/GCC-ARM/Source/tls_client.c -EXTRA_DIST+= IDE/GCC-ARM/Source/tls_server.c -EXTRA_DIST+= IDE/GCC-ARM/linker.ld -EXTRA_DIST+= IDE/GCC-ARM/linker_large.ld -EXTRA_DIST+= IDE/GCC-ARM/linker_fips.ld -EXTRA_DIST+= IDE/GCC-ARM/Makefile -EXTRA_DIST+= IDE/GCC-ARM/Makefile.bench -EXTRA_DIST+= IDE/GCC-ARM/Makefile.client -EXTRA_DIST+= IDE/GCC-ARM/Makefile.server -EXTRA_DIST+= IDE/GCC-ARM/Makefile.common -EXTRA_DIST+= IDE/GCC-ARM/Makefile.test -EXTRA_DIST+= IDE/GCC-ARM/Makefile.static -EXTRA_DIST+= IDE/GCC-ARM/README.md diff --git a/IDE/Gaisler-BCC/include.am b/IDE/Gaisler-BCC/include.am deleted file mode 100644 index 3aaaa45f1f..0000000000 --- a/IDE/Gaisler-BCC/include.am +++ /dev/null @@ -1,4 +0,0 @@ -# vim:ft=automake -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/Gaisler-BCC/README.md diff --git a/IDE/HEXAGON/include.am b/IDE/HEXAGON/include.am deleted file mode 100644 index 88a064824d..0000000000 --- a/IDE/HEXAGON/include.am +++ /dev/null @@ -1,14 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/HEXAGON/Makefile -EXTRA_DIST+= IDE/HEXAGON/user_settings.h -EXTRA_DIST+= IDE/HEXAGON/README.md -EXTRA_DIST+= IDE/HEXAGON/build.sh -EXTRA_DIST+= IDE/HEXAGON/ecc-verify.c -EXTRA_DIST+= IDE/HEXAGON/ecc-verify-benchmark.c - -EXTRA_DIST+= IDE/HEXAGON/DSP/Makefile -EXTRA_DIST+= IDE/HEXAGON/DSP/wolfssl_dsp.idl - diff --git a/IDE/IAR-MSP430/include.am b/IDE/IAR-MSP430/include.am deleted file mode 100644 index 2c459e419d..0000000000 --- a/IDE/IAR-MSP430/include.am +++ /dev/null @@ -1,9 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/IAR-MSP430/Makefile -EXTRA_DIST+= IDE/IAR-MSP430/README.md -EXTRA_DIST+= IDE/IAR-MSP430/main.c -EXTRA_DIST+= IDE/IAR-MSP430/user_settings.h - diff --git a/IDE/INTIME-RTOS/include.am b/IDE/INTIME-RTOS/include.am deleted file mode 100644 index 7c12883843..0000000000 --- a/IDE/INTIME-RTOS/include.am +++ /dev/null @@ -1,16 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST += \ - IDE/INTIME-RTOS/README.md \ - IDE/INTIME-RTOS/user_settings.h \ - IDE/INTIME-RTOS/libwolfssl.c \ - IDE/INTIME-RTOS/libwolfssl.vcxproj \ - IDE/INTIME-RTOS/wolfExamples.c \ - IDE/INTIME-RTOS/wolfExamples.h \ - IDE/INTIME-RTOS/wolfExamples.vcxproj \ - IDE/INTIME-RTOS/wolfExamples.sln \ - IDE/INTIME-RTOS/wolfssl-lib.sln \ - IDE/INTIME-RTOS/wolfssl-lib.vcxproj \ - IDE/INTIME-RTOS/Makefile diff --git a/IDE/Infineon/include.am b/IDE/Infineon/include.am deleted file mode 100644 index cc240b696b..0000000000 --- a/IDE/Infineon/include.am +++ /dev/null @@ -1,7 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST += \ - IDE/Infineon/README.md \ - IDE/Infineon/user_settings.h diff --git a/IDE/KDS/include.am b/IDE/KDS/include.am deleted file mode 100644 index 9884facb05..0000000000 --- a/IDE/KDS/include.am +++ /dev/null @@ -1,7 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/KDS/.cproject -EXTRA_DIST+= IDE/KDS/.project -EXTRA_DIST+= IDE/KDS/config/user_settings.h diff --git a/IDE/LINUX-SGX/include.am b/IDE/LINUX-SGX/include.am deleted file mode 100644 index 06f950436f..0000000000 --- a/IDE/LINUX-SGX/include.am +++ /dev/null @@ -1,8 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/LINUX-SGX/README.md -EXTRA_DIST+= IDE/LINUX-SGX/sgx_t_static.mk -EXTRA_DIST+= IDE/LINUX-SGX/build.sh -EXTRA_DIST+= IDE/LINUX-SGX/clean.sh diff --git a/IDE/M68K/include.am b/IDE/M68K/include.am deleted file mode 100644 index 031ed86ab0..0000000000 --- a/IDE/M68K/include.am +++ /dev/null @@ -1,11 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/M68K/README.md -EXTRA_DIST+= IDE/M68K/Makefile -EXTRA_DIST+= IDE/M68K/user_settings.h -EXTRA_DIST+= IDE/M68K/testwolfcrypt/main.cpp -EXTRA_DIST+= IDE/M68K/testwolfcrypt/Makefile -EXTRA_DIST+= IDE/M68K/benchmark/main.cpp -EXTRA_DIST+= IDE/M68K/benchmark/Makefile diff --git a/IDE/MCUEXPRESSO/include.am b/IDE/MCUEXPRESSO/include.am deleted file mode 100644 index bc2cc15ae2..0000000000 --- a/IDE/MCUEXPRESSO/include.am +++ /dev/null @@ -1,28 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST += IDE/MCUEXPRESSO/wolfssl/.cproject -EXTRA_DIST += IDE/MCUEXPRESSO/wolfssl/.project -EXTRA_DIST += IDE/MCUEXPRESSO/wolfssl/.settings -EXTRA_DIST += IDE/MCUEXPRESSO/wolfssl/liblinks.xml - -EXTRA_DIST += IDE/MCUEXPRESSO/wolfcrypt_test/.cproject -EXTRA_DIST += IDE/MCUEXPRESSO/wolfcrypt_test/.project -EXTRA_DIST += IDE/MCUEXPRESSO/wolfcrypt_test.c - -EXTRA_DIST += IDE/MCUEXPRESSO/benchmark/.cproject -EXTRA_DIST += IDE/MCUEXPRESSO/benchmark/.project -EXTRA_DIST += IDE/MCUEXPRESSO/benchmark/source/run_benchmark.c - -EXTRA_DIST += IDE/MCUEXPRESSO/README.md -EXTRA_DIST += IDE/MCUEXPRESSO/user_settings.h - -EXTRA_DIST += IDE/MCUEXPRESSO/RT1170/user_settings.h -EXTRA_DIST += IDE/MCUEXPRESSO/RT1170/wolfssl_cm7/.cproject -EXTRA_DIST += IDE/MCUEXPRESSO/RT1170/wolfssl_cm7/.project -EXTRA_DIST += IDE/MCUEXPRESSO/RT1170/wolfcrypt_test_cm7/.cproject -EXTRA_DIST += IDE/MCUEXPRESSO/RT1170/wolfcrypt_test_cm7/.project -EXTRA_DIST += IDE/MCUEXPRESSO/RT1170/fsl_caam_h.patch -EXTRA_DIST += IDE/MCUEXPRESSO/RT1170/fsl_caam_c.patch - diff --git a/IDE/MDK5-ARM/include.am b/IDE/MDK5-ARM/include.am deleted file mode 100644 index ffd0d42e75..0000000000 --- a/IDE/MDK5-ARM/include.am +++ /dev/null @@ -1,9 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/MDK5-ARM/README.md -EXTRA_DIST+= IDE/MDK5-ARM/Conf/user_settings.h -EXTRA_DIST+= IDE/MDK5-ARM/Inc/wolfssl_MDK_ARM.h -EXTRA_DIST+= IDE/MDK5-ARM/Projects -EXTRA_DIST+= IDE/MDK5-ARM/Src/ssl-dummy.c diff --git a/IDE/MQX/include.am b/IDE/MQX/include.am deleted file mode 100644 index deb5ebc765..0000000000 --- a/IDE/MQX/include.am +++ /dev/null @@ -1,11 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/MQX/client-tls.c -EXTRA_DIST+= IDE/MQX/Makefile -EXTRA_DIST+= IDE/MQX/README-jp.md -EXTRA_DIST+= IDE/MQX/README.md -EXTRA_DIST+= IDE/MQX/server-tls.c -EXTRA_DIST+= IDE/MQX/user_config.h -EXTRA_DIST+= IDE/MQX/user_settings.h diff --git a/IDE/MSVS-2019-AZSPHERE/include.am b/IDE/MSVS-2019-AZSPHERE/include.am deleted file mode 100644 index fc24e53ee1..0000000000 --- a/IDE/MSVS-2019-AZSPHERE/include.am +++ /dev/null @@ -1,25 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/client/client.c -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/client/client.h -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/server/server.c -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/server/server.h -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/shared/util.h -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/user_settings.h -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/.gitignore -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/CMakeLists.txt -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/CMakeSettings.json -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/HardwareDefinitions/avnet_mt3620_sk/inc/hw/template_appliance.h -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/HardwareDefinitions/avnet_mt3620_sk/template_appliance.json -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/HardwareDefinitions/mt3620_rdb/inc/hw/template_appliance.h -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/HardwareDefinitions/mt3620_rdb/template_appliance.json -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/HardwareDefinitions/seeed_mt3620_mdb/inc/hw/template_appliance.h -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/HardwareDefinitions/seeed_mt3620_mdb/template_appliance.json -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/app_manifest.json -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/applibs_versions.h -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/launch.vs.json -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/wolfssl_new_azsphere/main.c -EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE/README.md - diff --git a/IDE/NETOS/include.am b/IDE/NETOS/include.am deleted file mode 100644 index fcb1e64aa9..0000000000 --- a/IDE/NETOS/include.am +++ /dev/null @@ -1,11 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/NETOS/Makefile.wolfcrypt.inc -EXTRA_DIST+= IDE/NETOS/user_settings.h -EXTRA_DIST+= IDE/NETOS/user_settings.h-cert3389 -EXTRA_DIST+= IDE/NETOS/user_settings.h-cert2425 -EXTRA_DIST+= IDE/NETOS/wolfssl_netos_custom.c -EXTRA_DIST+= IDE/NETOS/README.md - diff --git a/IDE/PlatformIO/include.am b/IDE/PlatformIO/include.am deleted file mode 100644 index 6a92d89919..0000000000 --- a/IDE/PlatformIO/include.am +++ /dev/null @@ -1,41 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root -# -# NOTE: append_wolfssl_git_version.sh is not included as the -# distribution file set will not contain GitHub info -# -# see: https://github.com/wolfSSL/wolfssl/pull/5955 -# -# Don't list any config.h files here - -EXTRA_DIST+= IDE/PlatformIO/README.md - -EXTRA_DIST+= IDE/PlatformIO/examples/README.md -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_platformio.code-workspace - -# wolfssl_benchmark example -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/CMakeLists.txt -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/platformio.ini -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/README.md -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/sdkconfig.defaults -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/wolfssl_benchmark.code-workspace -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/include/main.h -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/include/README -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/lib/README -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/src/CMakeLists.txt -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/src/main.c -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_benchmark/test/README - -# wolfssl_test example -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/CMakeLists.txt -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/platformio.ini -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/README.md -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/sdkconfig.defaults -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/wolfssl_test.code-workspace -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/include/main.h -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/include/README -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/lib/README -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/src/CMakeLists.txt -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/src/main.c -EXTRA_DIST+= IDE/PlatformIO/examples/wolfssl_test/test/README diff --git a/IDE/QNX/include.am b/IDE/QNX/include.am deleted file mode 100644 index 16dd7e160a..0000000000 --- a/IDE/QNX/include.am +++ /dev/null @@ -1,23 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/QNX/README.md -EXTRA_DIST+= IDE/QNX/CAAM-DRIVER/.cproject -EXTRA_DIST+= IDE/QNX/CAAM-DRIVER/.project -EXTRA_DIST+= IDE/QNX/CAAM-DRIVER/Makefile -EXTRA_DIST+= IDE/QNX/wolfssl/.cproject -EXTRA_DIST+= IDE/QNX/wolfssl/.project -EXTRA_DIST+= IDE/QNX/wolfssl/Makefile -EXTRA_DIST+= IDE/QNX/wolfssl/user_settings.h -EXTRA_DIST+= IDE/QNX/testwolfcrypt/.cproject -EXTRA_DIST+= IDE/QNX/testwolfcrypt/.project -EXTRA_DIST+= IDE/QNX/testwolfcrypt/Makefile - - -EXTRA_DIST+= IDE/QNX/example-server/Makefile -EXTRA_DIST+= IDE/QNX/example-server/server-tls.c -EXTRA_DIST+= IDE/QNX/example-client/Makefile -EXTRA_DIST+= IDE/QNX/example-client/client-tls.c -EXTRA_DIST+= IDE/QNX/example-cmac/Makefile -EXTRA_DIST+= IDE/QNX/example-cmac/cmac-test.c diff --git a/IDE/RISCV/SIFIVE-HIFIVE1/include.am b/IDE/RISCV/SIFIVE-HIFIVE1/include.am deleted file mode 100644 index 4e90b624e5..0000000000 --- a/IDE/RISCV/SIFIVE-HIFIVE1/include.am +++ /dev/null @@ -1,9 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST += \ - IDE/RISCV/SIFIVE-HIFIVE1/README.md \ - IDE/RISCV/SIFIVE-HIFIVE1/main.c \ - IDE/RISCV/SIFIVE-HIFIVE1/Makefile\ - IDE/RISCV/SIFIVE-HIFIVE1/user_settings.h diff --git a/IDE/RISCV/SIFIVE-UNLEASHED/include.am b/IDE/RISCV/SIFIVE-UNLEASHED/include.am deleted file mode 100644 index 047847c714..0000000000 --- a/IDE/RISCV/SIFIVE-UNLEASHED/include.am +++ /dev/null @@ -1,5 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/RISCV/SIFIVE-UNLEASHED/README.md diff --git a/IDE/RISCV/include.am b/IDE/RISCV/include.am deleted file mode 100644 index b9deeab062..0000000000 --- a/IDE/RISCV/include.am +++ /dev/null @@ -1,6 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -include IDE/RISCV/SIFIVE-HIFIVE1/include.am -include IDE/RISCV/SIFIVE-UNLEASHED/include.am diff --git a/IDE/ROWLEY-CROSSWORKS-ARM/include.am b/IDE/ROWLEY-CROSSWORKS-ARM/include.am deleted file mode 100644 index c58c76192c..0000000000 --- a/IDE/ROWLEY-CROSSWORKS-ARM/include.am +++ /dev/null @@ -1,15 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/arm_startup.c -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/benchmark_main.c -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/hw.h -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/kinetis_hw.c -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/Kinetis_FlashPlacement.xml -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/README.md -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/test_main.c -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/retarget.c -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/user_settings.h -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/wolfssl.hzp -EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM/wolfssl_ltc.hzp diff --git a/IDE/STARCORE/include.am b/IDE/STARCORE/include.am deleted file mode 100644 index 7120d5bfdb..0000000000 --- a/IDE/STARCORE/include.am +++ /dev/null @@ -1,13 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root -# -# NOTE: append_wolfssl_git_version.sh is not included as the -# distribution file set will not contain GitHub info -# -# - -EXTRA_DIST+= IDE/STARCORE/README.txt -EXTRA_DIST+= IDE/STARCORE/starcore_test.c -EXTRA_DIST+= IDE/STARCORE/user_settings.h - diff --git a/IDE/STM32Cube/include.am b/IDE/STM32Cube/include.am deleted file mode 100644 index f0d0a43942..0000000000 --- a/IDE/STM32Cube/include.am +++ /dev/null @@ -1,10 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/STM32Cube/README.md -EXTRA_DIST+= IDE/STM32Cube/main.c -EXTRA_DIST+= IDE/STM32Cube/wolfssl_example.c -EXTRA_DIST+= IDE/STM32Cube/wolfssl_example.h -EXTRA_DIST+= IDE/STM32Cube/STM32_Benchmarks.md -EXTRA_DIST+= IDE/STM32Cube/default_conf.ftl diff --git a/IDE/SimplicityStudio/include.am b/IDE/SimplicityStudio/include.am deleted file mode 100644 index 0b010c36ad..0000000000 --- a/IDE/SimplicityStudio/include.am +++ /dev/null @@ -1,7 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/SimplicityStudio/README.md -EXTRA_DIST+= IDE/SimplicityStudio/test_wolf.c -EXTRA_DIST+= IDE/SimplicityStudio/user_settings.h diff --git a/IDE/TRUESTUDIO/include.am b/IDE/TRUESTUDIO/include.am deleted file mode 100644 index bd5b8769d9..0000000000 --- a/IDE/TRUESTUDIO/include.am +++ /dev/null @@ -1,12 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/TRUESTUDIO/README -EXTRA_DIST+= IDE/TRUESTUDIO/wolfssl/.cproject -EXTRA_DIST+= IDE/TRUESTUDIO/wolfssl/.project -EXTRA_DIST+= IDE/TRUESTUDIO/wolfssl/.settings/com.atollic.truestudio.debug.hardware_device.prefs -EXTRA_DIST+= IDE/TRUESTUDIO/wolfssl/.settings/language.settings.xml -EXTRA_DIST+= IDE/TRUESTUDIO/wolfssl/.settings/org.eclipse.cdt.managedbuilder.core.prefs -EXTRA_DIST+= IDE/TRUESTUDIO/wolfssl/user_settings.h - diff --git a/IDE/VS-ARM/include.am b/IDE/VS-ARM/include.am deleted file mode 100644 index aa54c617e0..0000000000 --- a/IDE/VS-ARM/include.am +++ /dev/null @@ -1,8 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/VS-ARM/README.md -EXTRA_DIST+= IDE/VS-ARM/wolfssl.sln -EXTRA_DIST+= IDE/VS-ARM/wolfssl.vcxproj -EXTRA_DIST+= IDE/VS-ARM/user_settings.h diff --git a/IDE/VS-AZURE-SPHERE/include.am b/IDE/VS-AZURE-SPHERE/include.am deleted file mode 100644 index a7f57d2219..0000000000 --- a/IDE/VS-AZURE-SPHERE/include.am +++ /dev/null @@ -1,19 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/README.md -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/user_settings.h -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/wolfssl.sln -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/wolfssl.vcxproj -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/client/app_manifest.json -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/client/client.c -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/client/client.h -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/client/client.vcxproj -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/server/app_manifest.json -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/server/server.c -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/server/server.h -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/server/server.vcxproj -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/wolfcrypt_test/app_manifest.json -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/wolfcrypt_test/wolfcrypt_test.vcxproj -EXTRA_DIST+= IDE/VS-AZURE-SPHERE/shared/util.h diff --git a/IDE/VisualDSP/include.am b/IDE/VisualDSP/include.am deleted file mode 100644 index a2d6f62e2e..0000000000 --- a/IDE/VisualDSP/include.am +++ /dev/null @@ -1,6 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/VisualDSP/user_settings.h -EXTRA_DIST+= IDE/VisualDSP/wolf_tasks.c diff --git a/IDE/WICED-STUDIO/include.am b/IDE/WICED-STUDIO/include.am deleted file mode 100644 index 45fd7e75ae..0000000000 --- a/IDE/WICED-STUDIO/include.am +++ /dev/null @@ -1,6 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/WICED-STUDIO/README -EXTRA_DIST+= IDE/WICED-STUDIO/user_settings.h diff --git a/IDE/WIN-SGX/include.am b/IDE/WIN-SGX/include.am deleted file mode 100644 index f7ef78fbc7..0000000000 --- a/IDE/WIN-SGX/include.am +++ /dev/null @@ -1,9 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/WIN-SGX/ReadMe.txt -EXTRA_DIST+= IDE/WIN-SGX/wolfSSL_SGX.edl -EXTRA_DIST+= IDE/WIN-SGX/wolfSSL_SGX.sln -EXTRA_DIST+= IDE/WIN-SGX/wolfSSL_SGX.vcxproj -EXTRA_DIST+= IDE/WIN-SGX/wolfSSL_SGX.vcxproj.filters diff --git a/IDE/WIN-SRTP-KDF-140-3/include.am b/IDE/WIN-SRTP-KDF-140-3/include.am deleted file mode 100644 index c85379e90e..0000000000 --- a/IDE/WIN-SRTP-KDF-140-3/include.am +++ /dev/null @@ -1,11 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/WIN-SRTP-KDF-140-3/README.txt -EXTRA_DIST+= IDE/WIN-SRTP-KDF-140-3/test.vcxproj -EXTRA_DIST+= IDE/WIN-SRTP-KDF-140-3/wolfssl-fips.sln -EXTRA_DIST+= IDE/WIN-SRTP-KDF-140-3/wolfssl-fips.vcxproj -EXTRA_DIST+= IDE/WIN-SRTP-KDF-140-3/user_settings.h -EXTRA_DIST+= IDE/WIN-SRTP-KDF-140-3/resource.h -EXTRA_DIST+= IDE/WIN-SRTP-KDF-140-3/wolfssl-fips.rc diff --git a/IDE/WIN/include.am b/IDE/WIN/include.am deleted file mode 100644 index a7a1b9a7ec..0000000000 --- a/IDE/WIN/include.am +++ /dev/null @@ -1,10 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/WIN/README.txt -EXTRA_DIST+= IDE/WIN/test.vcxproj -EXTRA_DIST+= IDE/WIN/wolfssl-fips.sln -EXTRA_DIST+= IDE/WIN/wolfssl-fips.vcxproj -EXTRA_DIST+= IDE/WIN/user_settings.h -EXTRA_DIST+= IDE/WIN/user_settings_dtls.h diff --git a/IDE/WIN10/include.am b/IDE/WIN10/include.am deleted file mode 100644 index c6b281bab2..0000000000 --- a/IDE/WIN10/include.am +++ /dev/null @@ -1,11 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/WIN10/README.txt -EXTRA_DIST+= IDE/WIN10/test.vcxproj -EXTRA_DIST+= IDE/WIN10/wolfssl-fips.sln -EXTRA_DIST+= IDE/WIN10/wolfssl-fips.vcxproj -EXTRA_DIST+= IDE/WIN10/user_settings.h -EXTRA_DIST+= IDE/WIN10/resource.h -EXTRA_DIST+= IDE/WIN10/wolfssl-fips.rc diff --git a/IDE/WINCE/include.am b/IDE/WINCE/include.am deleted file mode 100644 index 10212c74d8..0000000000 --- a/IDE/WINCE/include.am +++ /dev/null @@ -1,7 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/WINCE/user_settings.h -EXTRA_DIST+= IDE/WINCE/README.md -EXTRA_DIST+= IDE/WINCE/user_settings.h.140-2-deprecated diff --git a/IDE/WORKBENCH/include.am b/IDE/WORKBENCH/include.am deleted file mode 100644 index 58c00922a5..0000000000 --- a/IDE/WORKBENCH/include.am +++ /dev/null @@ -1,5 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/WORKBENCH/README.md diff --git a/IDE/XCODE-FIPSv2/include.am b/IDE/XCODE-FIPSv2/include.am deleted file mode 100644 index 7f9870e666..0000000000 --- a/IDE/XCODE-FIPSv2/include.am +++ /dev/null @@ -1,13 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -# TODO: The following will be added by the end of the project -# EXTRA_DIST+= IDE/XCODE-FIPSv2/README.md - -# NOTE: The app will be stored in wolfssl/fips repository and copied -# into the proper release bundles when packaging the release. - -EXTRA_DIST+= IDE/XCODE-FIPSv2/user_settings.h -EXTRA_DIST+= IDE/XCODE-FIPSv2/macOS-C++/M1/user_settings.h -EXTRA_DIST+= IDE/XCODE-FIPSv2/macOS-C++/Intel/user_settings.h diff --git a/IDE/XCODE-FIPSv5/include.am b/IDE/XCODE-FIPSv5/include.am deleted file mode 100644 index 0cfd4da9b2..0000000000 --- a/IDE/XCODE-FIPSv5/include.am +++ /dev/null @@ -1,9 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -# NOTE: The app will be stored in wolfssl/fips repository and copied -# into the proper release bundles when packaging the release. - -EXTRA_DIST+= IDE/XCODE-FIPSv5/user_settings.h -EXTRA_DIST+= IDE/XCODE-FIPSv5/README diff --git a/IDE/XCODE-FIPSv6/include.am b/IDE/XCODE-FIPSv6/include.am deleted file mode 100644 index 7f045b2da4..0000000000 --- a/IDE/XCODE-FIPSv6/include.am +++ /dev/null @@ -1,9 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -# NOTE: The app will be stored in wolfssl/fips repository and copied -# into the proper release bundles when packaging the release. - -EXTRA_DIST+= IDE/XCODE-FIPSv6/user_settings.h -EXTRA_DIST+= IDE/XCODE-FIPSv6/README diff --git a/IDE/XCODE/Benchmark/include.am b/IDE/XCODE/Benchmark/include.am deleted file mode 100644 index 9ca817069c..0000000000 --- a/IDE/XCODE/Benchmark/include.am +++ /dev/null @@ -1,14 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/XCODE/Benchmark/wolfBench.xcodeproj/project.pbxproj -EXTRA_DIST+= IDE/XCODE/Benchmark/wolfBench/AppDelegate.h -EXTRA_DIST+= IDE/XCODE/Benchmark/wolfBench/AppDelegate.m -EXTRA_DIST+= IDE/XCODE/Benchmark/wolfBench/Info.plist -EXTRA_DIST+= IDE/XCODE/Benchmark/wolfBench/main.m -EXTRA_DIST+= IDE/XCODE/Benchmark/wolfBench/ViewController.h -EXTRA_DIST+= IDE/XCODE/Benchmark/wolfBench/ViewController.m -EXTRA_DIST+= IDE/XCODE/Benchmark/wolfBench/Assets.xcassets/AppIcon.appiconset/Contents.json -EXTRA_DIST+= IDE/XCODE/Benchmark/wolfBench/Base.lproj/LaunchScreen.storyboard -EXTRA_DIST+= IDE/XCODE/Benchmark/wolfBench/Base.lproj/Main.storyboard diff --git a/IDE/XCODE/include.am b/IDE/XCODE/include.am deleted file mode 100644 index bd9b5ee828..0000000000 --- a/IDE/XCODE/include.am +++ /dev/null @@ -1,13 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/XCODE/README.md -EXTRA_DIST+= IDE/XCODE/wolfssl-FIPS.xcodeproj/project.pbxproj -EXTRA_DIST+= IDE/XCODE/wolfssl.xcodeproj/project.pbxproj -EXTRA_DIST+= IDE/XCODE/wolfssl.xcworkspace -EXTRA_DIST+= IDE/XCODE/wolfssl_testsuite.xcodeproj -EXTRA_DIST+= IDE/XCODE/user_settings.h -EXTRA_DIST+= IDE/XCODE/build-for-i386.sh - -include IDE/XCODE/Benchmark/include.am diff --git a/IDE/XilinxSDK/include.am b/IDE/XilinxSDK/include.am deleted file mode 100644 index 8757e15e9c..0000000000 --- a/IDE/XilinxSDK/include.am +++ /dev/null @@ -1,33 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/XilinxSDK/README.md -EXTRA_DIST+= IDE/XilinxSDK/bench.sh -EXTRA_DIST+= IDE/XilinxSDK/combine.sh -EXTRA_DIST+= IDE/XilinxSDK/eclipse_formatter_profile.xml -EXTRA_DIST+= IDE/XilinxSDK/graph.sh -EXTRA_DIST+= IDE/XilinxSDK/user_settings.h -EXTRA_DIST+= IDE/XilinxSDK/wolfssl_example.c -EXTRA_DIST+= IDE/XilinxSDK/2018_2/lscript.ld -EXTRA_DIST+= IDE/XilinxSDK/2018_2/.cproject -EXTRA_DIST+= IDE/XilinxSDK/2018_2/.project -EXTRA_DIST+= IDE/XilinxSDK/2019_2/wolfCrypt_example/.cproject -EXTRA_DIST+= IDE/XilinxSDK/2019_2/wolfCrypt_example/.project -EXTRA_DIST+= IDE/XilinxSDK/2019_2/wolfCrypt_example/src/lscript.ld -EXTRA_DIST+= IDE/XilinxSDK/2019_2/wolfCrypt_example_system/.cproject -EXTRA_DIST+= IDE/XilinxSDK/2019_2/wolfCrypt_example_system/.project -EXTRA_DIST+= IDE/XilinxSDK/2019_2/wolfCrypt_example_system/wolfCrypt_example_system.sprj -EXTRA_DIST+= IDE/XilinxSDK/2022_1/.gitignore -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_example/.cproject -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_example/.project -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_example/wolfCrypt_example.prj -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_example_system/.cproject -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_example_system/.project -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_example_system/wolfCrypt_example_system.sprj -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_FreeRTOS_example/.cproject -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_FreeRTOS_example/.project -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_FreeRTOS_example/wolfCrypt_FreeRTOS_example.prj -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_FreeRTOS_example_system/.cproject -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_FreeRTOS_example_system/.project -EXTRA_DIST+= IDE/XilinxSDK/2022_1/wolfCrypt_FreeRTOS_example_system/wolfCrypt_FreeRTOS_example_system.sprj diff --git a/IDE/include.am b/IDE/include.am index 9e6ca721f7..e70c06fb5a 100644 --- a/IDE/include.am +++ b/IDE/include.am @@ -1,39 +1,75 @@ # vim:ft=automake # included from Top Level Makefile.am # All paths should be given relative to the root +# +# IDE integration project trees are distributed one directory at a time +# (a single EXTRA_DIST entry per directory, which automake copies +# recursively) rather than by enumerating every file. Enumerating them +# made the top-level DISTFILES large enough that automake's non-recursive +# "distdir" recipe - which inlines the whole file list into a single shell +# argument - exceeded the Linux MAX_ARG_STRLEN (128 KB) exec limit, so +# "make dist" failed with "Argument list too long". -include IDE/Android/include.am +EXTRA_DIST+= IDE/Android +EXTRA_DIST+= IDE/ARDUINO +EXTRA_DIST+= IDE/AURIX +EXTRA_DIST+= IDE/CRYPTOCELL +EXTRA_DIST+= IDE/CSBENCH +EXTRA_DIST+= IDE/ECLIPSE +EXTRA_DIST+= IDE/Espressif +EXTRA_DIST+= IDE/Gaisler-BCC +EXTRA_DIST+= IDE/GCC-ARM +EXTRA_DIST+= IDE/HEXAGON +EXTRA_DIST+= IDE/HEXIWEAR +EXTRA_DIST+= IDE/IAR-EWARM +EXTRA_DIST+= IDE/IAR-MSP430 +EXTRA_DIST+= IDE/Infineon +EXTRA_DIST+= IDE/INTIME-RTOS +EXTRA_DIST+= IDE/iotsafe +EXTRA_DIST+= IDE/KDS +EXTRA_DIST+= IDE/LINUX-SGX +EXTRA_DIST+= IDE/LPCXPRESSO +EXTRA_DIST+= IDE/M68K +EXTRA_DIST+= IDE/MCUEXPRESSO +EXTRA_DIST+= IDE/MDK-ARM +EXTRA_DIST+= IDE/MDK5-ARM +EXTRA_DIST+= IDE/MQX +EXTRA_DIST+= IDE/MSVS-2019-AZSPHERE +EXTRA_DIST+= IDE/mynewt +EXTRA_DIST+= IDE/MYSQL +EXTRA_DIST+= IDE/NETOS +EXTRA_DIST+= IDE/PlatformIO +EXTRA_DIST+= IDE/QNX +EXTRA_DIST+= IDE/RISCV +EXTRA_DIST+= IDE/ROWLEY-CROSSWORKS-ARM +EXTRA_DIST+= IDE/SimplicityStudio +EXTRA_DIST+= IDE/STARCORE +EXTRA_DIST+= IDE/STM32Cube +EXTRA_DIST+= IDE/TRUESTUDIO +EXTRA_DIST+= IDE/VisualDSP +EXTRA_DIST+= IDE/VS-ARM +EXTRA_DIST+= IDE/VS-AZURE-SPHERE +EXTRA_DIST+= IDE/WICED-STUDIO +EXTRA_DIST+= IDE/WIN +EXTRA_DIST+= IDE/WIN-SGX +EXTRA_DIST+= IDE/WIN-SRTP-KDF-140-3 +EXTRA_DIST+= IDE/WIN10 +EXTRA_DIST+= IDE/WINCE +EXTRA_DIST+= IDE/WORKBENCH +EXTRA_DIST+= IDE/XCODE +EXTRA_DIST+= IDE/XCODE-FIPSv2 +EXTRA_DIST+= IDE/XCODE-FIPSv5 +EXTRA_DIST+= IDE/XCODE-FIPSv6 +EXTRA_DIST+= IDE/XilinxSDK +EXTRA_DIST+= IDE/zephyr + +# These IDE directories intentionally omit some tracked files (private +# IDE configs, .gitkeep placeholders, helper scripts), so they stay +# enumerated file-by-file rather than shipped wholesale. include IDE/apple-universal/include.am -include IDE/ARDUINO/include.am -include IDE/AURIX/include.am -include IDE/CRYPTOCELL/include.am -include IDE/CSBENCH/include.am -include IDE/ECLIPSE/DEOS/include.am -include IDE/ECLIPSE/MICRIUM/include.am -include IDE/ECLIPSE/RTTHREAD/include.am -include IDE/ECLIPSE/SIFIVE/include.am -include IDE/Espressif/include.am -include IDE/GCC-ARM/include.am -include IDE/Gaisler-BCC/include.am -include IDE/HEXAGON/include.am -include IDE/IAR-MSP430/include.am -include IDE/Infineon/include.am -include IDE/INTIME-RTOS/include.am -include IDE/iotsafe/include.am -include IDE/KDS/include.am -include IDE/LINUX-SGX/include.am -include IDE/M68K/include.am -include IDE/MCUEXPRESSO/include.am -include IDE/MDK5-ARM/include.am include IDE/MPLABX16/include.am include IDE/MPLABX16/wolfcrypt_test.X/nbproject/include.am include IDE/MPLABX16/wolfssl.X/nbproject/include.am -include IDE/MQX/include.am -include IDE/MSVS-2019-AZSPHERE/include.am -include IDE/mynewt/include.am -include IDE/NETOS/include.am -include IDE/PlatformIO/include.am -include IDE/QNX/include.am include IDE/Renesas/cs+/Projects/include.am include IDE/Renesas/e2studio/DK-S7G2/include.am include IDE/Renesas/e2studio/Projects/include.am @@ -44,34 +80,10 @@ include IDE/Renesas/e2studio/RX65N/RSK/include.am include IDE/Renesas/e2studio/RX72N/EnvisionKit/include.am include IDE/Renesas/e2studio/RZN2L/include.am include IDE/Renesas/e2studio/SK-S7G2/include.am -include IDE/RISCV/include.am -include IDE/ROWLEY-CROSSWORKS-ARM/include.am -include IDE/SimplicityStudio/include.am -include IDE/STARCORE/include.am -include IDE/STM32Cube/include.am -include IDE/TRUESTUDIO/include.am -include IDE/VisualDSP/include.am -include IDE/VS-ARM/include.am -include IDE/VS-AZURE-SPHERE/include.am -include IDE/WICED-STUDIO/include.am -include IDE/WIN-SGX/include.am -include IDE/WIN-SRTP-KDF-140-3/include.am -include IDE/WIN/include.am -include IDE/WIN10/include.am -include IDE/WINCE/include.am -include IDE/WORKBENCH/include.am -include IDE/XCODE-FIPSv2/include.am -include IDE/XCODE-FIPSv5/include.am -include IDE/XCODE-FIPSv6/include.am -include IDE/XCODE/include.am -include IDE/XilinxSDK/include.am -include IDE/zephyr/include.am -EXTRA_DIST+= IDE/Espressif -EXTRA_DIST+= IDE/HEXIWEAR -EXTRA_DIST+= IDE/IAR-EWARM -EXTRA_DIST+= IDE/LPCXPRESSO -EXTRA_DIST+= IDE/MDK-ARM -EXTRA_DIST+= IDE/MYSQL +# Single-file IDE entry (only the README is distributed). EXTRA_DIST+= IDE/OPENSTM32/README.md -EXTRA_DIST+= IDE/PlatformIO + +# Build-output directory produced by the iotsafe project, cleaned by +# distclean (was declared in the removed IDE/iotsafe/include.am). +DISTCLEANFILES+= IDE/iotsafe/build diff --git a/IDE/iotsafe/include.am b/IDE/iotsafe/include.am deleted file mode 100644 index aa0ff598f0..0000000000 --- a/IDE/iotsafe/include.am +++ /dev/null @@ -1,17 +0,0 @@ -# vim:ft=automake -# All paths should be given relative to the root - -EXTRA_DIST += IDE/iotsafe/README.md -EXTRA_DIST += IDE/iotsafe/Makefile -EXTRA_DIST += IDE/iotsafe/target.ld - -EXTRA_DIST += IDE/iotsafe/main.c -EXTRA_DIST += IDE/iotsafe/startup.c -EXTRA_DIST += IDE/iotsafe/startup.c -EXTRA_DIST += IDE/iotsafe/memory-tls.c -EXTRA_DIST += IDE/iotsafe/devices.c -EXTRA_DIST += IDE/iotsafe/ca-cert.c -EXTRA_DIST += IDE/iotsafe/devices.h -EXTRA_DIST += IDE/iotsafe/user_settings.h - -DISTCLEANFILES+= IDE/iotsafe/build diff --git a/IDE/mynewt/include.am b/IDE/mynewt/include.am deleted file mode 100644 index c19bf232bb..0000000000 --- a/IDE/mynewt/include.am +++ /dev/null @@ -1,10 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/mynewt/README.md -EXTRA_DIST+= IDE/mynewt/apps.wolfcrypttest.pkg.yml -EXTRA_DIST+= IDE/mynewt/crypto.wolfssl.pkg.yml -EXTRA_DIST+= IDE/mynewt/crypto.wolfssl.syscfg.yml -EXTRA_DIST+= IDE/mynewt/setup.sh - diff --git a/IDE/zephyr/include.am b/IDE/zephyr/include.am deleted file mode 100644 index e35ff53e72..0000000000 --- a/IDE/zephyr/include.am +++ /dev/null @@ -1,5 +0,0 @@ -# vim:ft=automake -# included from Top Level Makefile.am -# All paths should be given relative to the root - -EXTRA_DIST+= IDE/zephyr/README.md