mirror of
https://github.com/status-im/status-keycard-go.git
synced 2025-01-18 10:22:51 +00:00
11 lines
242 B
Makefile
11 lines
242 B
Makefile
.PHONY: build-lib
|
|
|
|
BUILD=./build
|
|
|
|
build-lib:
|
|
mkdir -p $(BUILD)/libkeycard
|
|
@echo "Building static library..."
|
|
go build -buildmode=c-shared -o $(BUILD)/libkeycard/libkeycard.so .
|
|
@echo "Static library built:"
|
|
@ls -la $(BUILD)/libkeycard/*
|