SIPNET uses make
to build the model and documentation. There are also miscellaneous targets for running analysis workflows:
# build SIPNET executable
make sipnet
# build documentation
make document
# clean up build artifacts
make clean
# list all make commands
make help
SIPNET also uses make
to build and run its unit tests. This can be done with the following commands:
# Compile tests
make test
# Run tests
make testrun
# Clean after tests are run
make testclean