summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 756e26e..22be289 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,12 @@ all:
# Creates bin folder for artifacts
@mkdir -p build/{bin,lib}
+ @echo "Using cc, go, rust and ld versions"
+ cc -v
+ go version
+ rustc --version
+ ld -v
+
# Builds rust
@echo "Building rust project"
cargo build --release
@@ -13,6 +19,8 @@ all:
@cp target/release/rest build/bin
@cp target/release/webhook build/bin
+ tree build/
+
# Builds go
go build -a -ldflags '-s' -o build/bin/nova cmd/nova/nova.go