wip: large changes

This commit is contained in:
2025-11-04 13:58:37 -05:00
parent 684cf7fb53
commit b4665675ad
24 changed files with 646 additions and 487 deletions

View File

@@ -10,8 +10,8 @@ Notice
------
This documentation is standard across all GCK package and is not specified per
package; however, this is the defacto standard for most package. The only place
where this commonly differs is in non-binary or library packages.
package; however, this is the defacto standard for most packages. The only
place where this commonly differs is in non-binary or library packages.
Build system
@@ -39,7 +39,7 @@ the config.mak. This file is used by the Makefile to figure out C compiler to
use, what CFLAGS and LDFLAGS to use, and where to install the binary if
requested. By default these values are gcc, the release flag set, and
/usr/local/. The configuration script supports the following flags that control
CFLAGS: --debug and CFLAGS="". By default, the script uses flags for a release
CFLAGS: --enable-debug and CFLAGS="". By default, the script uses flags for a release
build. Debug is for in-development programming and is the strictest when it
comes to warnings and other compiler output. CFLAGS="" is for custom flag
definition. For the development environment is it recommended to use the
@@ -51,7 +51,7 @@ For default behavior:
For debug use:
./configure --debug
./configure --enable-debug
For help text:
@@ -83,8 +83,8 @@ structure it is a good starting point.
git pull
./tools/Cleanup
./configure --debug
bear -- make
./bin/yait --version
./build-aux/generate-artifacts
make test
This is to ensure that you have the most up-to-date source code, and that there
are no major problems with the source control version.