Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 537 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (23 loc) · 537 Bytes

Style Guide

Compiling

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

Testing

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