diff options
| author | ewy <ewy0@protonmail.com> | 2026-06-14 17:50:45 +0200 |
|---|---|---|
| committer | ewy <ewy0@protonmail.com> | 2026-06-14 17:50:45 +0200 |
| commit | 40577525de2a01ca0b21a5d88757295ae7735580 (patch) | |
| tree | 5b7bd7d3884e1524517f36913ca18ac3a5a4ae0e /integration_tests/make/Makefile | |
| parent | fc9d57a500e522ce254f34681c67c6b2f3300cd8 (diff) | |
enable multiline for make regex so we can find multiple make targets (lol)
Diffstat (limited to 'integration_tests/make/Makefile')
| -rw-r--r-- | integration_tests/make/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/integration_tests/make/Makefile b/integration_tests/make/Makefile new file mode 100644 index 0000000..38ca1c2 --- /dev/null +++ b/integration_tests/make/Makefile @@ -0,0 +1,8 @@ +hello: + echo "Hello, World" + +other: + echo "Hello from Makefile!" + +dupe: + echo "maked" |
