From fafcd79a7a63ee079d0e7a5083d58e6c346ff276 Mon Sep 17 00:00:00 2001 From: Eric Bezault Date: Mon, 30 Dec 2024 09:27:38 +0100 Subject: [PATCH] cicd: added `*.melted` to `.gitignore` files. --- library/argument/example/.gitignore | 1 + library/argument/test/example/.gitignore | 1 + library/argument/test/unit/.gitignore | 1 + library/common/test/example/.gitignore | 1 + library/common/test/integration/.gitignore | 1 + library/free_elks/test/unit/kernel/.gitignore | 1 + library/free_elks/test/unit/sed/.gitignore | 1 + library/kernel/test/unit/.gitignore | 1 + library/lexical/example/ascii2ps/.gitignore | 1 + library/lexical/example/eiffel_scanner/.gitignore | 1 + library/lexical/example/gegrep/.gitignore | 1 + library/lexical/example/unicode/byte_mode/.gitignore | 1 + library/lexical/example/unicode/unicode_mode/.gitignore | 1 + library/lexical/example/unicode/utf8_mode/.gitignore | 1 + library/lexical/test/example/.gitignore | 1 + library/lexical/test/unit/.gitignore | 1 + library/math/example/decimal/telco/.gitignore | 1 + library/math/test/example/.gitignore | 1 + library/math/test/unit/decimal/acceptance/.gitignore | 1 + library/parse/example/calc/.gitignore | 1 + library/parse/example/eiffel_parser/.gitignore | 1 + library/parse/example/mcalc/.gitignore | 1 + library/parse/example/rpcalc/.gitignore | 1 + library/parse/example/scalc/.gitignore | 1 + library/parse/test/example/.gitignore | 1 + library/pattern/example/singleton/do_nothing/.gitignore | 1 + library/pattern/test/example/.gitignore | 1 + library/pattern/test/unit/.gitignore | 1 + library/regexp/example/pcre/.gitignore | 1 + library/regexp/test/example/.gitignore | 1 + library/regexp/test/unit/.gitignore | 1 + library/regexp/test/unit/pcretest/.gitignore | 1 + library/string/test/unit/.gitignore | 1 + library/string/tool/geuc/src/.gitignore | 1 + library/structure/test/unit/.gitignore | 1 + library/test/example/concat1/.gitignore | 1 + library/test/example/concat2/.gitignore | 1 + library/test/test/example/.gitignore | 1 + library/test/test/unit/.gitignore | 1 + library/thread/test/unit/.gitignore | 1 + library/time/example/clock/.gitignore | 1 + library/time/test/example/.gitignore | 1 + library/time/test/unit/.gitignore | 1 + library/tools/example/bang2create/.gitignore | 1 + library/tools/example/pretty_printer/.gitignore | 1 + library/tools/test/example/.gitignore | 1 + library/tools/test/unit/.gitignore | 1 + library/utility/test/unit/support/.gitignore | 1 + library/utility/test/unit/transcoder/.gitignore | 1 + library/utility/test/unit/uri/.gitignore | 1 + library/xml/example/event/print/.gitignore | 1 + library/xml/example/event/tagcount/.gitignore | 1 + library/xml/example/tree/formatter/.gitignore | 1 + library/xml/example/tree/namespaces/.gitignore | 1 + library/xml/test/example/.gitignore | 1 + library/xml/test/unit/eiffel/.gitignore | 1 + library/xml/test/unit/expat/.gitignore | 1 + library/xml/test/unit/general/.gitignore | 1 + library/xml/test/unit/oasis/.gitignore | 1 + library/xml/test/unit/xpointer/.gitignore | 1 + library/xpath/test/unit/.gitignore | 1 + library/xslt/example/schematron/.gitignore | 1 + library/xslt/example/serializer/.gitignore | 1 + library/xslt/test/example/.gitignore | 1 + library/xslt/test/unit/.gitignore | 1 + tool/geant/src/.gitignore | 1 + tool/geant/test/tool/.gitignore | 1 + tool/geant/test/unit/.gitignore | 1 + tool/gec/src/.gitignore | 1 + tool/gec/test/tool/.gitignore | 1 + tool/gecc/src/.gitignore | 1 + tool/gecc/test/tool/.gitignore | 1 + tool/gecop/src/.gitignore | 1 + tool/gecop/test/tool/.gitignore | 1 + tool/gedoc/src/.gitignore | 1 + tool/gedoc/test/tool/.gitignore | 1 + tool/geimage/src/.gitignore | 1 + tool/geimage/test/tool/.gitignore | 1 + tool/gelex/src/.gitignore | 1 + tool/gelex/test/tool/.gitignore | 1 + tool/gelint/src/.gitignore | 1 + tool/gelint/test/tool/.gitignore | 1 + tool/gepp/src/.gitignore | 1 + tool/gepp/test/tool/.gitignore | 1 + tool/getest/src/.gitignore | 1 + tool/getest/test/tool/.gitignore | 1 + tool/gexslt/src/.gitignore | 1 + tool/gexslt/test/tool/.gitignore | 1 + tool/geyacc/src/.gitignore | 1 + tool/geyacc/test/tool/.gitignore | 1 + 90 files changed, 90 insertions(+) diff --git a/library/argument/example/.gitignore b/library/argument/example/.gitignore index 146ff7af2..3b098bea9 100644 --- a/library/argument/example/.gitignore +++ b/library/argument/example/.gitignore @@ -1,6 +1,7 @@ ap_example compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/argument/test/example/.gitignore b/library/argument/test/example/.gitignore index 9c8724362..12b5b3296 100644 --- a/library/argument/test/example/.gitignore +++ b/library/argument/test/example/.gitignore @@ -2,6 +2,7 @@ xargument_example Tap_example compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/argument/test/unit/.gitignore b/library/argument/test/unit/.gitignore index 32aa71ca4..ee4e23094 100644 --- a/library/argument/test/unit/.gitignore +++ b/library/argument/test/unit/.gitignore @@ -1,6 +1,7 @@ xargument compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/common/test/example/.gitignore b/library/common/test/example/.gitignore index 5af86b5f1..1767e9f0d 100644 --- a/library/common/test/example/.gitignore +++ b/library/common/test/example/.gitignore @@ -2,6 +2,7 @@ xcommon_example Thello_world compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/common/test/integration/.gitignore b/library/common/test/integration/.gitignore index 06fa017f5..3f72c5589 100644 --- a/library/common/test/integration/.gitignore +++ b/library/common/test/integration/.gitignore @@ -2,6 +2,7 @@ xintegration Tintegration compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/free_elks/test/unit/kernel/.gitignore b/library/free_elks/test/unit/kernel/.gitignore index 3299a3326..7ae84c5fb 100644 --- a/library/free_elks/test/unit/kernel/.gitignore +++ b/library/free_elks/test/unit/kernel/.gitignore @@ -1,6 +1,7 @@ xfree_elks compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/free_elks/test/unit/sed/.gitignore b/library/free_elks/test/unit/sed/.gitignore index 117a6e1db..266d25cf4 100644 --- a/library/free_elks/test/unit/sed/.gitignore +++ b/library/free_elks/test/unit/sed/.gitignore @@ -2,6 +2,7 @@ xsed Tsed compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/kernel/test/unit/.gitignore b/library/kernel/test/unit/.gitignore index 875a5ada6..a8073e6aa 100644 --- a/library/kernel/test/unit/.gitignore +++ b/library/kernel/test/unit/.gitignore @@ -2,6 +2,7 @@ xkernel Tkernel compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/lexical/example/ascii2ps/.gitignore b/library/lexical/example/ascii2ps/.gitignore index ce310a862..4e5b78bb8 100644 --- a/library/lexical/example/ascii2ps/.gitignore +++ b/library/lexical/example/ascii2ps/.gitignore @@ -1,6 +1,7 @@ ascii2ps compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/lexical/example/eiffel_scanner/.gitignore b/library/lexical/example/eiffel_scanner/.gitignore index bc44635de..2ac918b1c 100644 --- a/library/lexical/example/eiffel_scanner/.gitignore +++ b/library/lexical/example/eiffel_scanner/.gitignore @@ -1,6 +1,7 @@ eiffel_scanner compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/lexical/example/gegrep/.gitignore b/library/lexical/example/gegrep/.gitignore index 5a002d3d4..96c1db952 100644 --- a/library/lexical/example/gegrep/.gitignore +++ b/library/lexical/example/gegrep/.gitignore @@ -1,6 +1,7 @@ gegrep compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/lexical/example/unicode/byte_mode/.gitignore b/library/lexical/example/unicode/byte_mode/.gitignore index bac2ba846..c08a644f9 100644 --- a/library/lexical/example/unicode/byte_mode/.gitignore +++ b/library/lexical/example/unicode/byte_mode/.gitignore @@ -1,6 +1,7 @@ byte_mode compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/lexical/example/unicode/unicode_mode/.gitignore b/library/lexical/example/unicode/unicode_mode/.gitignore index 6048a8c90..654f1e56b 100644 --- a/library/lexical/example/unicode/unicode_mode/.gitignore +++ b/library/lexical/example/unicode/unicode_mode/.gitignore @@ -1,6 +1,7 @@ unicode_mode compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/lexical/example/unicode/utf8_mode/.gitignore b/library/lexical/example/unicode/utf8_mode/.gitignore index b4147c4c0..ebc171185 100644 --- a/library/lexical/example/unicode/utf8_mode/.gitignore +++ b/library/lexical/example/unicode/utf8_mode/.gitignore @@ -1,6 +1,7 @@ utf8_mode compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/lexical/test/example/.gitignore b/library/lexical/test/example/.gitignore index 6ce96d811..afb2a0fde 100644 --- a/library/lexical/test/example/.gitignore +++ b/library/lexical/test/example/.gitignore @@ -8,6 +8,7 @@ Tunicode_mode Tutf8_mode compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/lexical/test/unit/.gitignore b/library/lexical/test/unit/.gitignore index d14f330d9..1ecf4b73b 100644 --- a/library/lexical/test/unit/.gitignore +++ b/library/lexical/test/unit/.gitignore @@ -1,6 +1,7 @@ xlexical compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/math/example/decimal/telco/.gitignore b/library/math/example/decimal/telco/.gitignore index 2b70fc531..a762506b3 100644 --- a/library/math/example/decimal/telco/.gitignore +++ b/library/math/example/decimal/telco/.gitignore @@ -1,6 +1,7 @@ telco compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/math/test/example/.gitignore b/library/math/test/example/.gitignore index 5ec9a5aed..07f543783 100644 --- a/library/math/test/example/.gitignore +++ b/library/math/test/example/.gitignore @@ -2,6 +2,7 @@ xmath_example Ttelco compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/math/test/unit/decimal/acceptance/.gitignore b/library/math/test/unit/decimal/acceptance/.gitignore index 779aa420e..52e05080b 100644 --- a/library/math/test/unit/decimal/acceptance/.gitignore +++ b/library/math/test/unit/decimal/acceptance/.gitignore @@ -1,6 +1,7 @@ xacceptance compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/parse/example/calc/.gitignore b/library/parse/example/calc/.gitignore index 98172346f..5d62185de 100644 --- a/library/parse/example/calc/.gitignore +++ b/library/parse/example/calc/.gitignore @@ -1,6 +1,7 @@ calc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/parse/example/eiffel_parser/.gitignore b/library/parse/example/eiffel_parser/.gitignore index ad46fbf40..b84827b52 100644 --- a/library/parse/example/eiffel_parser/.gitignore +++ b/library/parse/example/eiffel_parser/.gitignore @@ -1,6 +1,7 @@ eiffel_parser compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/parse/example/mcalc/.gitignore b/library/parse/example/mcalc/.gitignore index 80ec3d00a..6e82a6fb0 100644 --- a/library/parse/example/mcalc/.gitignore +++ b/library/parse/example/mcalc/.gitignore @@ -1,6 +1,7 @@ mcalc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/parse/example/rpcalc/.gitignore b/library/parse/example/rpcalc/.gitignore index 4ac6440c4..63b6d3324 100644 --- a/library/parse/example/rpcalc/.gitignore +++ b/library/parse/example/rpcalc/.gitignore @@ -1,6 +1,7 @@ rpcalc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/parse/example/scalc/.gitignore b/library/parse/example/scalc/.gitignore index 4ea1bea4c..11a139fb4 100644 --- a/library/parse/example/scalc/.gitignore +++ b/library/parse/example/scalc/.gitignore @@ -1,6 +1,7 @@ scalc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/parse/test/example/.gitignore b/library/parse/test/example/.gitignore index d48e5e97c..ab3d7cd13 100644 --- a/library/parse/test/example/.gitignore +++ b/library/parse/test/example/.gitignore @@ -6,6 +6,7 @@ Trpcalc Tscalc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/pattern/example/singleton/do_nothing/.gitignore b/library/pattern/example/singleton/do_nothing/.gitignore index 809e29010..2f489af40 100644 --- a/library/pattern/example/singleton/do_nothing/.gitignore +++ b/library/pattern/example/singleton/do_nothing/.gitignore @@ -1,6 +1,7 @@ do_nothing compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/pattern/test/example/.gitignore b/library/pattern/test/example/.gitignore index 6109a33a0..4c958ea8e 100644 --- a/library/pattern/test/example/.gitignore +++ b/library/pattern/test/example/.gitignore @@ -2,6 +2,7 @@ xpattern_example Tdo_nothing compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/pattern/test/unit/.gitignore b/library/pattern/test/unit/.gitignore index 0d70ccf29..b5e1e575b 100644 --- a/library/pattern/test/unit/.gitignore +++ b/library/pattern/test/unit/.gitignore @@ -1,6 +1,7 @@ xpattern compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/regexp/example/pcre/.gitignore b/library/regexp/example/pcre/.gitignore index a549bbd7d..6f7252adb 100644 --- a/library/regexp/example/pcre/.gitignore +++ b/library/regexp/example/pcre/.gitignore @@ -1,6 +1,7 @@ pcre compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/regexp/test/example/.gitignore b/library/regexp/test/example/.gitignore index 96bcf60b2..675423864 100644 --- a/library/regexp/test/example/.gitignore +++ b/library/regexp/test/example/.gitignore @@ -2,6 +2,7 @@ xregexp_example Tpcre compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/regexp/test/unit/.gitignore b/library/regexp/test/unit/.gitignore index 4f2397cc9..3c4e8d014 100644 --- a/library/regexp/test/unit/.gitignore +++ b/library/regexp/test/unit/.gitignore @@ -2,6 +2,7 @@ xregexp Tpcretest compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/regexp/test/unit/pcretest/.gitignore b/library/regexp/test/unit/pcretest/.gitignore index 486e1fb2d..d3d6b18d4 100644 --- a/library/regexp/test/unit/pcretest/.gitignore +++ b/library/regexp/test/unit/pcretest/.gitignore @@ -1,6 +1,7 @@ pcretest compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/string/test/unit/.gitignore b/library/string/test/unit/.gitignore index 49c769673..d2ec2a450 100644 --- a/library/string/test/unit/.gitignore +++ b/library/string/test/unit/.gitignore @@ -1,6 +1,7 @@ xstring compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/string/tool/geuc/src/.gitignore b/library/string/tool/geuc/src/.gitignore index 585a3382f..920b1facd 100644 --- a/library/string/tool/geuc/src/.gitignore +++ b/library/string/tool/geuc/src/.gitignore @@ -1,6 +1,7 @@ geuc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/structure/test/unit/.gitignore b/library/structure/test/unit/.gitignore index e81fb742a..e299711c1 100644 --- a/library/structure/test/unit/.gitignore +++ b/library/structure/test/unit/.gitignore @@ -1,6 +1,7 @@ xstructure compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/test/example/concat1/.gitignore b/library/test/example/concat1/.gitignore index 313f2577f..afd4fbafa 100644 --- a/library/test/example/concat1/.gitignore +++ b/library/test/example/concat1/.gitignore @@ -1,6 +1,7 @@ xconcat1 compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/test/example/concat2/.gitignore b/library/test/example/concat2/.gitignore index 69f04ee98..d7fa5d081 100644 --- a/library/test/example/concat2/.gitignore +++ b/library/test/example/concat2/.gitignore @@ -1,6 +1,7 @@ xconcat2 compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/test/test/example/.gitignore b/library/test/test/example/.gitignore index bde666172..1cf25f049 100644 --- a/library/test/test/example/.gitignore +++ b/library/test/test/example/.gitignore @@ -3,6 +3,7 @@ Tconcat1 Tconcat2 compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/test/test/unit/.gitignore b/library/test/test/unit/.gitignore index 11a740d47..275430b6a 100644 --- a/library/test/test/unit/.gitignore +++ b/library/test/test/unit/.gitignore @@ -1,6 +1,7 @@ xtest compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/thread/test/unit/.gitignore b/library/thread/test/unit/.gitignore index 4ce7e4e7e..93795cca4 100644 --- a/library/thread/test/unit/.gitignore +++ b/library/thread/test/unit/.gitignore @@ -1,6 +1,7 @@ xthread compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/time/example/clock/.gitignore b/library/time/example/clock/.gitignore index a69f01a53..cdb6ccb1d 100644 --- a/library/time/example/clock/.gitignore +++ b/library/time/example/clock/.gitignore @@ -1,6 +1,7 @@ clock compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/time/test/example/.gitignore b/library/time/test/example/.gitignore index a746ea80e..f7bcaa56c 100644 --- a/library/time/test/example/.gitignore +++ b/library/time/test/example/.gitignore @@ -2,6 +2,7 @@ xtime_example Tclock compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/time/test/unit/.gitignore b/library/time/test/unit/.gitignore index 9a9f7fad2..fce51f038 100644 --- a/library/time/test/unit/.gitignore +++ b/library/time/test/unit/.gitignore @@ -1,6 +1,7 @@ xtime compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/tools/example/bang2create/.gitignore b/library/tools/example/bang2create/.gitignore index d7798ce12..60279db82 100644 --- a/library/tools/example/bang2create/.gitignore +++ b/library/tools/example/bang2create/.gitignore @@ -1,6 +1,7 @@ bang2create compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/tools/example/pretty_printer/.gitignore b/library/tools/example/pretty_printer/.gitignore index 67a84dd54..cf4554940 100644 --- a/library/tools/example/pretty_printer/.gitignore +++ b/library/tools/example/pretty_printer/.gitignore @@ -1,6 +1,7 @@ pretty_printer compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/tools/test/example/.gitignore b/library/tools/test/example/.gitignore index de9177505..96b79599b 100644 --- a/library/tools/test/example/.gitignore +++ b/library/tools/test/example/.gitignore @@ -3,6 +3,7 @@ Tbang2create Tpretty_printer compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/tools/test/unit/.gitignore b/library/tools/test/unit/.gitignore index 45e974414..cc17f3061 100644 --- a/library/tools/test/unit/.gitignore +++ b/library/tools/test/unit/.gitignore @@ -2,6 +2,7 @@ xtools Ttools compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/utility/test/unit/support/.gitignore b/library/utility/test/unit/support/.gitignore index 0116b3489..1d3a8901e 100644 --- a/library/utility/test/unit/support/.gitignore +++ b/library/utility/test/unit/support/.gitignore @@ -1,6 +1,7 @@ xsupport compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/utility/test/unit/transcoder/.gitignore b/library/utility/test/unit/transcoder/.gitignore index b291b7c43..7f1a5cdb6 100644 --- a/library/utility/test/unit/transcoder/.gitignore +++ b/library/utility/test/unit/transcoder/.gitignore @@ -1,6 +1,7 @@ xtranscoder compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/utility/test/unit/uri/.gitignore b/library/utility/test/unit/uri/.gitignore index b75299a20..5f724c42e 100644 --- a/library/utility/test/unit/uri/.gitignore +++ b/library/utility/test/unit/uri/.gitignore @@ -1,6 +1,7 @@ xuri compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xml/example/event/print/.gitignore b/library/xml/example/event/print/.gitignore index 7209966e5..d95f6ca91 100644 --- a/library/xml/example/event/print/.gitignore +++ b/library/xml/example/event/print/.gitignore @@ -1,6 +1,7 @@ print compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xml/example/event/tagcount/.gitignore b/library/xml/example/event/tagcount/.gitignore index 45fb637a2..a1c2c7b77 100644 --- a/library/xml/example/event/tagcount/.gitignore +++ b/library/xml/example/event/tagcount/.gitignore @@ -1,6 +1,7 @@ tagcount compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xml/example/tree/formatter/.gitignore b/library/xml/example/tree/formatter/.gitignore index 322fa4210..aed0bed6f 100644 --- a/library/xml/example/tree/formatter/.gitignore +++ b/library/xml/example/tree/formatter/.gitignore @@ -1,6 +1,7 @@ formatter compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xml/example/tree/namespaces/.gitignore b/library/xml/example/tree/namespaces/.gitignore index 730c191e9..6e149dcea 100644 --- a/library/xml/example/tree/namespaces/.gitignore +++ b/library/xml/example/tree/namespaces/.gitignore @@ -1,6 +1,7 @@ namespaces compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xml/test/example/.gitignore b/library/xml/test/example/.gitignore index 94abc7a48..d4e327141 100644 --- a/library/xml/test/example/.gitignore +++ b/library/xml/test/example/.gitignore @@ -5,6 +5,7 @@ Tnamespaces Ttagcount compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xml/test/unit/eiffel/.gitignore b/library/xml/test/unit/eiffel/.gitignore index c24a52d2d..07b9e3cae 100644 --- a/library/xml/test/unit/eiffel/.gitignore +++ b/library/xml/test/unit/eiffel/.gitignore @@ -1,6 +1,7 @@ xeiffel compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xml/test/unit/expat/.gitignore b/library/xml/test/unit/expat/.gitignore index afec39e30..448564fb8 100644 --- a/library/xml/test/unit/expat/.gitignore +++ b/library/xml/test/unit/expat/.gitignore @@ -1,6 +1,7 @@ xexpat compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xml/test/unit/general/.gitignore b/library/xml/test/unit/general/.gitignore index 926bd9c54..7539b2a29 100644 --- a/library/xml/test/unit/general/.gitignore +++ b/library/xml/test/unit/general/.gitignore @@ -1,6 +1,7 @@ xgeneral compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xml/test/unit/oasis/.gitignore b/library/xml/test/unit/oasis/.gitignore index 71b0cda5b..ecd34163c 100644 --- a/library/xml/test/unit/oasis/.gitignore +++ b/library/xml/test/unit/oasis/.gitignore @@ -1,6 +1,7 @@ xmloasis compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xml/test/unit/xpointer/.gitignore b/library/xml/test/unit/xpointer/.gitignore index 72b5a578b..1da76a5fc 100644 --- a/library/xml/test/unit/xpointer/.gitignore +++ b/library/xml/test/unit/xpointer/.gitignore @@ -1,6 +1,7 @@ xpointer compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xpath/test/unit/.gitignore b/library/xpath/test/unit/.gitignore index 374bf9f9a..238ae90fa 100644 --- a/library/xpath/test/unit/.gitignore +++ b/library/xpath/test/unit/.gitignore @@ -1,6 +1,7 @@ xpath compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xslt/example/schematron/.gitignore b/library/xslt/example/schematron/.gitignore index 1bcc3ab91..6e866318b 100644 --- a/library/xslt/example/schematron/.gitignore +++ b/library/xslt/example/schematron/.gitignore @@ -1,6 +1,7 @@ schematron compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xslt/example/serializer/.gitignore b/library/xslt/example/serializer/.gitignore index 51bdfee5d..36e110ad2 100644 --- a/library/xslt/example/serializer/.gitignore +++ b/library/xslt/example/serializer/.gitignore @@ -1,6 +1,7 @@ serializer compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xslt/test/example/.gitignore b/library/xslt/test/example/.gitignore index 8d19650e8..3520084c0 100644 --- a/library/xslt/test/example/.gitignore +++ b/library/xslt/test/example/.gitignore @@ -3,6 +3,7 @@ Tschematron Tserializer compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/library/xslt/test/unit/.gitignore b/library/xslt/test/unit/.gitignore index 85e8c942c..bfc0263ba 100644 --- a/library/xslt/test/unit/.gitignore +++ b/library/xslt/test/unit/.gitignore @@ -1,6 +1,7 @@ xslt compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/geant/src/.gitignore b/tool/geant/src/.gitignore index 6d95928f9..ebdee4062 100644 --- a/tool/geant/src/.gitignore +++ b/tool/geant/src/.gitignore @@ -1,6 +1,7 @@ geant compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/geant/test/tool/.gitignore b/tool/geant/test/tool/.gitignore index a8b79507f..585fb9407 100644 --- a/tool/geant/test/tool/.gitignore +++ b/tool/geant/test/tool/.gitignore @@ -2,6 +2,7 @@ xgeant Tgeant compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/geant/test/unit/.gitignore b/tool/geant/test/unit/.gitignore index c168105d2..b0eecec9d 100644 --- a/tool/geant/test/unit/.gitignore +++ b/tool/geant/test/unit/.gitignore @@ -2,6 +2,7 @@ xgeant Tgeant_unit compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gec/src/.gitignore b/tool/gec/src/.gitignore index eeb04d2a1..d02d17176 100644 --- a/tool/gec/src/.gitignore +++ b/tool/gec/src/.gitignore @@ -1,6 +1,7 @@ gec compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gec/test/tool/.gitignore b/tool/gec/test/tool/.gitignore index b1a4cb1fc..eabed3076 100644 --- a/tool/gec/test/tool/.gitignore +++ b/tool/gec/test/tool/.gitignore @@ -2,6 +2,7 @@ xgec Tgec compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gecc/src/.gitignore b/tool/gecc/src/.gitignore index 6836e53f8..2cd98389c 100644 --- a/tool/gecc/src/.gitignore +++ b/tool/gecc/src/.gitignore @@ -1,6 +1,7 @@ gecc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gecc/test/tool/.gitignore b/tool/gecc/test/tool/.gitignore index b79e8fcba..2ed82f772 100644 --- a/tool/gecc/test/tool/.gitignore +++ b/tool/gecc/test/tool/.gitignore @@ -2,6 +2,7 @@ xgecc Tgecc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gecop/src/.gitignore b/tool/gecop/src/.gitignore index 2a3020ffa..7136f6cc6 100644 --- a/tool/gecop/src/.gitignore +++ b/tool/gecop/src/.gitignore @@ -1,6 +1,7 @@ gecop compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gecop/test/tool/.gitignore b/tool/gecop/test/tool/.gitignore index 0cd5c11bb..e007a6e59 100644 --- a/tool/gecop/test/tool/.gitignore +++ b/tool/gecop/test/tool/.gitignore @@ -2,6 +2,7 @@ xgecop Tgecop compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gedoc/src/.gitignore b/tool/gedoc/src/.gitignore index e491b7b92..22ea271d0 100644 --- a/tool/gedoc/src/.gitignore +++ b/tool/gedoc/src/.gitignore @@ -1,6 +1,7 @@ gedoc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gedoc/test/tool/.gitignore b/tool/gedoc/test/tool/.gitignore index 42a424225..715c74286 100644 --- a/tool/gedoc/test/tool/.gitignore +++ b/tool/gedoc/test/tool/.gitignore @@ -2,6 +2,7 @@ xgedoc Tgedoc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/geimage/src/.gitignore b/tool/geimage/src/.gitignore index b5bf3907b..ad11142fb 100644 --- a/tool/geimage/src/.gitignore +++ b/tool/geimage/src/.gitignore @@ -1,6 +1,7 @@ geimage compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/geimage/test/tool/.gitignore b/tool/geimage/test/tool/.gitignore index 286081047..5fa3c8fbe 100644 --- a/tool/geimage/test/tool/.gitignore +++ b/tool/geimage/test/tool/.gitignore @@ -2,6 +2,7 @@ xgeimage Tgeimage compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gelex/src/.gitignore b/tool/gelex/src/.gitignore index e03ef862c..dce683e8a 100644 --- a/tool/gelex/src/.gitignore +++ b/tool/gelex/src/.gitignore @@ -1,6 +1,7 @@ gelex compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gelex/test/tool/.gitignore b/tool/gelex/test/tool/.gitignore index b17e9f104..be7e75e67 100644 --- a/tool/gelex/test/tool/.gitignore +++ b/tool/gelex/test/tool/.gitignore @@ -2,6 +2,7 @@ xgelex Tgelex compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gelint/src/.gitignore b/tool/gelint/src/.gitignore index c045ab85d..da44d77c9 100644 --- a/tool/gelint/src/.gitignore +++ b/tool/gelint/src/.gitignore @@ -1,6 +1,7 @@ gelint compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gelint/test/tool/.gitignore b/tool/gelint/test/tool/.gitignore index 2c206721c..ca016f16e 100644 --- a/tool/gelint/test/tool/.gitignore +++ b/tool/gelint/test/tool/.gitignore @@ -2,6 +2,7 @@ xgelint Tgelint compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gepp/src/.gitignore b/tool/gepp/src/.gitignore index bf8a61f58..67befbf76 100644 --- a/tool/gepp/src/.gitignore +++ b/tool/gepp/src/.gitignore @@ -1,6 +1,7 @@ gepp compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gepp/test/tool/.gitignore b/tool/gepp/test/tool/.gitignore index e7914293f..3a358e238 100644 --- a/tool/gepp/test/tool/.gitignore +++ b/tool/gepp/test/tool/.gitignore @@ -2,6 +2,7 @@ xgepp Tgepp compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/getest/src/.gitignore b/tool/getest/src/.gitignore index 51281e339..43ac06b60 100644 --- a/tool/getest/src/.gitignore +++ b/tool/getest/src/.gitignore @@ -1,6 +1,7 @@ getest compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/getest/test/tool/.gitignore b/tool/getest/test/tool/.gitignore index 0b46c8641..7767639d4 100644 --- a/tool/getest/test/tool/.gitignore +++ b/tool/getest/test/tool/.gitignore @@ -2,6 +2,7 @@ xgetest Tgetest compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gexslt/src/.gitignore b/tool/gexslt/src/.gitignore index bdcd3ed51..3880cbbd6 100644 --- a/tool/gexslt/src/.gitignore +++ b/tool/gexslt/src/.gitignore @@ -1,6 +1,7 @@ gexslt compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/gexslt/test/tool/.gitignore b/tool/gexslt/test/tool/.gitignore index d3cc554d3..b83186d85 100644 --- a/tool/gexslt/test/tool/.gitignore +++ b/tool/gexslt/test/tool/.gitignore @@ -2,6 +2,7 @@ xgexslt Tgexslt compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/geyacc/src/.gitignore b/tool/geyacc/src/.gitignore index 370c04c8b..d5155ddaa 100644 --- a/tool/geyacc/src/.gitignore +++ b/tool/geyacc/src/.gitignore @@ -1,6 +1,7 @@ geyacc compile_*.* *.exe +*.melted *.dll *.bat *.sh diff --git a/tool/geyacc/test/tool/.gitignore b/tool/geyacc/test/tool/.gitignore index d699fddc9..d5951981f 100644 --- a/tool/geyacc/test/tool/.gitignore +++ b/tool/geyacc/test/tool/.gitignore @@ -2,6 +2,7 @@ xgeyacc Tgeyacc compile_*.* *.exe +*.melted *.dll *.bat *.sh