Add initialization and build instructions to AGENTS.md (#166)

Added instructions for initializing and building the repository for agents
This commit is contained in:
Thomas Arp
2026-04-19 02:03:34 +02:00
committed by GitHub
parent ce423e919f
commit 28622d9fe2

14
AGENTS.md Normal file
View File

@@ -0,0 +1,14 @@
# To initialize the repository:
Run these commands from the project directory.
```shell
./configure && touch src/.accepted # the src/.accepted file must exist to build.
```
# To build the code:
```shell
cd src # make must be run from the src dir
make # builds all changed source files.
```