Update README.md.

This commit is contained in:
Jacob Signorovitch 2024-10-02 20:03:52 -04:00
parent 4f3d444ab7
commit 9e2f0dccc5

View File

@ -7,7 +7,9 @@ Makefile, a testing framework (forked from
## Instructions
Set the project's name by changing the `NAME` variable in first line of the
`Makefile`. Write source files in `src/`, and headers in `src/include`. Write
`Makefile`. Write source files in `src/`, and headers in `src/include/`. Write
unit tests in `test/` (with the same name as the source file they test). To
build, simply run `make`, or `make test` to build and run test binaries as
well. The final binary will be written to `./<project-name>.out`.
> *Instructions for writing tests coming soon.*