dim/dim_plugins/example_rust/Makefile

14 lines
410 B
Makefile
Raw Normal View History

2024-06-14 15:22:20 +00:00
# Must match package name in Cargo.toml
PLUGIN_NAME=example_rust
2024-06-17 09:16:09 +00:00
# `target` or `debug`
TYPE=target
2024-06-14 15:22:20 +00:00
build: $(PLUGIN_DIR)/$(PLUGIN_NAME).dim
2024-06-17 09:16:09 +00:00
$(PLUGIN_DIR)/$(PLUGIN_NAME).dim: $(OBJECT_DIR)/$(PLUGIN_NAME)/$(TYPE)/lib$(PLUGIN_NAME).so
@mkdir -p $(dir $@)
cp $^ $@
2024-06-14 15:22:20 +00:00
2024-06-17 09:16:09 +00:00
$(OBJECT_DIR)/$(PLUGIN_NAME)/$(TYPE)/lib$(PLUGIN_NAME).so:
@mkdir -p $(dir $@)
cargo build --release --target-dir $(OBJECT_DIR)/$(PLUGIN_NAME)