63 lines
1.4 KiB
Makefile
63 lines
1.4 KiB
Makefile
UNAME := $(shell uname)
|
|
ARCH := $(shell uname -m)
|
|
|
|
ifeq ($(UNAME), Linux)
|
|
OS := linux
|
|
EXT := so
|
|
else ifeq ($(UNAME), Darwin)
|
|
OS := macOS
|
|
EXT := dylib
|
|
else
|
|
$(error Unsupported operating system: $(UNAME))
|
|
endif
|
|
|
|
LUA_VERSIONS := luajit lua51 lua52 lua53 lua54
|
|
|
|
BUILD_DIR := build
|
|
TARGET_LIBRARY ?= all
|
|
|
|
all: luajit
|
|
|
|
define make_definitions
|
|
ifeq ($(TARGET_LIBRARY), all)
|
|
$1: $(BUILD_DIR)/libAvanteTokenizers-$1.$(EXT) $(BUILD_DIR)/libAvanteTemplates-$1.$(EXT)
|
|
else ifeq ($(TARGET_LIBRARY), tokenizers)
|
|
$1: $(BUILD_DIR)/libAvanteTokenizers-$1.$(EXT)
|
|
else ifeq ($(TARGET_LIBRARY), templates)
|
|
$1: $(BUILD_DIR)/libAvanteTemplates-$1.$(EXT)
|
|
else
|
|
$$(error TARGET_LIBRARY must be one of all, tokenizers, templates)
|
|
endif
|
|
endef
|
|
|
|
$(foreach lua_version,$(LUA_VERSIONS),$(eval $(call make_definitions,$(lua_version))))
|
|
|
|
define build_from_source
|
|
cargo build --release --features=$1 -p avante-$2
|
|
cp target/release/libavante_$2.$(EXT) $(BUILD_DIR)/avante_$2.$(EXT)
|
|
endef
|
|
|
|
define build_targets
|
|
$(BUILD_DIR)/libAvanteTokenizers-$1.$(EXT): $(BUILD_DIR)
|
|
$$(call build_from_source,$1,tokenizers)
|
|
$(BUILD_DIR)/libAvanteTemplates-$1.$(EXT): $(BUILD_DIR)
|
|
$$(call build_from_source,$1,templates)
|
|
endef
|
|
|
|
$(foreach lua_version,$(LUA_VERSIONS),$(eval $(call build_targets,$(lua_version))))
|
|
|
|
$(BUILD_DIR):
|
|
mkdir -p $(BUILD_DIR)
|
|
|
|
clean:
|
|
rm -rf $(BUILD_DIR)
|
|
|
|
luacheck:
|
|
luacheck `find -name "*.lua"` --codes
|
|
|
|
stylecheck:
|
|
stylua --check lua/
|
|
|
|
stylefix:
|
|
stylua lua/
|