Hi Chris,
In the example implementation, we are using the standard GNU autoconf
toolset. You can take a look at tests/Makefile.am and follow examples
of other tests in there to see how you could add your program to that
Makefile. Note that after updating Makefile.am when you type make,
Makefile will be rebuilt and then you can type 'make <new program' to
build only your program or make check to build and run all programs
(including yours) in the test directory.
If you just want an example command for building your program, then in
the tests directory you could build a single test, for example 'make
msg1' and then replace all occurrences of msg1 in the command with
<new program>.
Hope this helps,
Michele