dim/dim_plugins/clock/Makefile

15 lines
404 B
Makefile
Raw Normal View History

2024-06-16 15:53:43 +00:00
# Must match package name in Cargo.toml
PLUGIN_NAME=clock
2024-06-17 09:16:09 +00:00
# `target` or `debug`
TYPE=target
2024-06-16 15:53:43 +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-16 15:53:43 +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)