From ec1a69f3dd6c04748c3cc681b104901c377d7144 Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Fri, 24 Apr 2026 14:52:36 +0200 Subject: [PATCH] Updated copilot instructions --- GEMINI.md | 1 + copilot-instructions.md | 9 --------- 2 files changed, 1 insertion(+), 9 deletions(-) create mode 120000 GEMINI.md delete mode 100644 copilot-instructions.md diff --git a/GEMINI.md b/GEMINI.md new file mode 120000 index 0000000..02dd134 --- /dev/null +++ b/GEMINI.md @@ -0,0 +1 @@ +.github/copilot-instructions.md \ No newline at end of file diff --git a/copilot-instructions.md b/copilot-instructions.md deleted file mode 100644 index 4b6b545..0000000 --- a/copilot-instructions.md +++ /dev/null @@ -1,9 +0,0 @@ -Copilot / contributor instructions for v0 - -- When adding new source or test files for v0, do NOT rely on wildcards. Add the file path explicitly to v0/include.mk in either V0_SRC (for library/source files) or V0_TEST (for test files beginning with `test_`). -- v0/include.mk is included by the top-level Makefile and is a dependency for object builds. Modifying v0/include.mk will force appropriate recompilation. - -Example: -V0_SRC := v0/buffer.c v0/main.c -V0_TEST := v0/test.c v0/test_buffer.c -