Updated copilot instructions

This commit is contained in:
2026-04-24 14:52:36 +02:00
parent a173e37adc
commit ec1a69f3dd
2 changed files with 1 additions and 9 deletions
Symlink
+1
View File
@@ -0,0 +1 @@
.github/copilot-instructions.md
-9
View File
@@ -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