From d4f88551df455197d7ed2b11c171c90fd72529e7 Mon Sep 17 00:00:00 2001 From: Louay DARDOURI <louay.dardouri@etu.u-pec.fr> Date: Sat, 22 Feb 2025 21:33:35 +0100 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20tests=20pour=20v=C3=A9rifier=20le?= =?UTF-8?q?=20comportement=20des=20r=C3=A8gles=20sans=20commande=20avec=20?= =?UTF-8?q?Bake=20et=20Make=20-=20TEST=2017?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/C/test-17-rule-without-command/README.md | 0 tests/C/test-17-rule-without-command/bake/Bakefile | 8 ++++++++ tests/C/test-17-rule-without-command/make/Makefile | 8 ++++++++ tests/C/test-17-rule-without-command/make/dep3 | 0 4 files changed, 16 insertions(+) create mode 100644 tests/C/test-17-rule-without-command/README.md create mode 100644 tests/C/test-17-rule-without-command/bake/Bakefile create mode 100644 tests/C/test-17-rule-without-command/make/Makefile create mode 100644 tests/C/test-17-rule-without-command/make/dep3 diff --git a/tests/C/test-17-rule-without-command/README.md b/tests/C/test-17-rule-without-command/README.md new file mode 100644 index 0000000..e69de29 diff --git a/tests/C/test-17-rule-without-command/bake/Bakefile b/tests/C/test-17-rule-without-command/bake/Bakefile new file mode 100644 index 0000000..b6aa3af --- /dev/null +++ b/tests/C/test-17-rule-without-command/bake/Bakefile @@ -0,0 +1,8 @@ +all: dep1 dep2 + +dep1: + +dep2: dep3 + +dep3: + touch dep3 \ No newline at end of file diff --git a/tests/C/test-17-rule-without-command/make/Makefile b/tests/C/test-17-rule-without-command/make/Makefile new file mode 100644 index 0000000..b6aa3af --- /dev/null +++ b/tests/C/test-17-rule-without-command/make/Makefile @@ -0,0 +1,8 @@ +all: dep1 dep2 + +dep1: + +dep2: dep3 + +dep3: + touch dep3 \ No newline at end of file diff --git a/tests/C/test-17-rule-without-command/make/dep3 b/tests/C/test-17-rule-without-command/make/dep3 new file mode 100644 index 0000000..e69de29