diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 | 
1 files changed, 8 insertions, 0 deletions
@@ -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  | 
