summaryrefslogtreecommitdiffstats
path: root/Makefile
AgeCommit message (Collapse)Author
2019-01-17openpgp-ffi: New crate.Justus Winter
- This creates a new crate, 'sequoia-openpgp-ffi', and moves a handful of functions from 'sequoia-ffi' to it. - The 'sequoia-ffi' crate is a superset of the 'sequoia-openpgp-ffi' crate. This is accomplished by some include! magic. - My first attempt involved having 'sequoia-ffi' depend on 'sequoia-openpgp-ffi', so that the former just re-exports the symbols. However, that turned out to be unreliable, and might be not what we want, because it could also duplicate parts of Rust's standard library. - Fixes #144.
2018-11-26sqv: Move sqv into a new crate.Justus Winter
- This allows us to use sequoia-openpgp without compression support reducing binary size and trusted computing base.
2018-11-25Drop nettle-rs documentation.Justus Winter
- nettle-rs now hosts its own documentation.
2018-09-08Make it possible to pass arguments to cargo test when using make.Neal H. Walfield
2018-09-08Change Makefiles to support CARGO_TARGET_DIR.Neal H. Walfield
- Also use 'cargo clean' instead of 'rm -rf $(CARGO_TARGET_DIR)' in case $(CARGO_TARGET_DIR) is incorrectly set.
2018-07-25ffi: Use highlight.js to syntax-highlight the c examples.Justus Winter
2018-06-20store: Rename the key store binary and rendezvous point.Justus Winter
2018-05-14tool: Install 'sqv'.Justus Winter
2018-04-04Document the nettle crate.Justus Winter
- Until the nettle crate is published, we can build the documentation here.
2018-04-04Make version parsing more robust.Justus Winter
2018-04-04When dist-checking, deny any network access.Justus Winter
2018-04-04Honor CARGO_FLAGS.Justus Winter
2018-03-23ffi: Move install rules to ffi/Makefile.Justus Winter
2018-03-15Make 'make dist-check' more robust.Justus Winter
2018-03-15Build examples as part of 'make test'.Justus Winter
2018-03-13Add a Makefile.Justus Winter
- This adds some convenience for building Sequoia. - It also integrates other build systems and test frameworks for the bindings. - Furthermore, it helps with creating releases.