Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
as/Makefile: Allow conditional features
Supplying a FEATURES argument to the attestation service's Makefile can conditionally compile features into the build. The FEATURES argument will disable default features and instead supply the selected features. For example `FEATURES=restful-bin,rvps-grpc,snp-verifier make grpc-as` will expand to: cargo build --bin grpc-as --release \ --no-default-features \ --features grpc-bin,restful-bin,rvps-grpc,snp-verifier Signed-off-by: Tyler Fanelli <[email protected]>
- Loading branch information