Skip to content
Snippets Groups Projects
Commit d04937b3 authored by Marvin Berstecher's avatar Marvin Berstecher
Browse files

add make files

parent d4491247
No related branches found
No related tags found
No related merge requests found
makefile 0 → 100644
rust = didcomm-rust/
rust_release = $(rust)/target/release/
all: build test
build: build-rust build-go
build-rust:
cd $(rust) && cargo build --release
cp $(rust_release)libdidcomm.* lib
# this pulls out ELF symbols, 80% size reduction!
# TODO: strip lib/libgo_rust_demo.*
build-go:
go build .
test:
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment