mirror of
https://github.com/extism/extism.git
synced 2026-04-23 03:00:11 -04:00
39 lines
798 B
Makefile
39 lines
798 B
Makefile
DEST?=/usr/local
|
|
SOEXT=so
|
|
FEATURES?=default
|
|
DEFAULT_FEATURES?=yes
|
|
|
|
UNAME := $(shell uname -s)
|
|
ifeq ($(UNAME),Darwin)
|
|
SOEXT=dylib
|
|
endif
|
|
|
|
ifeq ($(DEFAULT_FEATURES),no)
|
|
ifeq ($(FEATURES),default)
|
|
FEATURE_FLAGS=--no-default-features
|
|
else
|
|
FEATURE_FLAGS=--features $(FEATURES) --no-default-features
|
|
endif
|
|
else
|
|
FEATURE_FLAGS=--features $(FEATURES)
|
|
endif
|
|
|
|
build:
|
|
cargo build --release $(FEATURE_FLAGS) --manifest-path libextism/Cargo.toml
|
|
|
|
lint:
|
|
cargo clippy --release --no-deps --manifest-path runtime/Cargo.toml
|
|
|
|
debug:
|
|
RUSTFLAGS=-g $(MAKE) build
|
|
|
|
install:
|
|
mkdir -p $(DEST)/lib $(DEST)/include
|
|
install runtime/extism.h $(DEST)/include/extism.h
|
|
install target/release/libextism.$(SOEXT) $(DEST)/lib/libextism.$(SOEXT)
|
|
|
|
uninstall:
|
|
rm -f $(DEST)/include/extism.h $(DEST)/lib/libextism.$(SOEXT)
|
|
|
|
|